@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600&display=swap");

* {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    text-transform: capitalize;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}



html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    overflow-x: hidden;
}

/* Hide scrollbar completely */
html {
    scrollbar-width: none;       /* Firefox */
  }
  
  html::-webkit-scrollbar {
    display: none;               /* Chrome, Safari, Edge */
  }
  

body {
    background:#323335;
}


.heading {
  position: relative;
  display: flex;
  justify-content: center; 
  align-items: center; 
  text-align: center;
  width: 100%;
  padding: 1rem 0;
  margin-top: 10rem;
}

.heading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 1.2rem; 
  width: 200%; 
  background: repeating-linear-gradient(
    45deg, 
    rgb(255, 206, 27), 
    rgb(255, 206, 27) 10px, 
    black 10px, 
    black 20px 
  );
  z-index: -1;
  border-radius: 5px;
  margin-top: 20px; 
}

.heading span {
    font-size: 3rem;
    color: rgb(255, 206, 27);
    background: #000;
    padding: 0.5rem 1.5rem;
    border: 0.1rem solid #aaa;
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-top: 44px;
}

.btn {
    margin-top: 1rem;
    display: inline-block;
    padding: 1rem 2.8rem;
    padding-right: 3rem;
    background: linear-gradient(130deg, rgb(255, 206, 27) 93%, transparent 90%);
    color: #fff;
    cursor: pointer;
    font-size: 1.7rem;
}

.btn:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 2rem 9%;
    z-index: 10000;
    background: #DFA706; 
    /* box-shadow: 0 0 15px rgb(180, 77, 201);  */
  }

/* .header .logo {
    font-weight: bolder;
    color: #fff;
    font-size: 3rem;
}

.header .logo span {
    color: rgb(255, 206, 27);
}

.header a {
    display: inline-block;
    padding: 1.5rem 50rem;
    font-size: 1.7rem;
    color: #fff;
} */
.header .logo {
    font-weight: bolder;
    color: #fff;
    font-size: 3rem;
  }
  
  .header .logo span {
    color: rgb(1250, 224, 51);
  }
  
  .header .navbar a {
    display: inline-block;
    padding: 1.5rem 2rem;
    font-size: 1.7rem;
    color: #fff;
  }
.trainers {
    margin-top: 10rem;
    padding: 0 2rem;
}

.trainers .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(29rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(29rem, 1fr));
    gap: 1.5rem;
}

.trainers .box-container .box {
    height: 50rem;
    position: relative;
    margin-bottom: 7rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 300px;
    border: 2px solid #f1c40f; 
    position: relative;
}

.trainers .box-container .box img {
    height: 100%;
    width: 100%;
    object-fit: cover; 
    /* border-bottom: 1px solid #ddd; */
}

.trainers .box-container .box .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8); 
    padding: 2rem;
    -webkit-transform: translateY(0); 
    transform: translateY(0);
    width: 100%;
    height: auto;
    text-align: center;
}

.trainers .box-container .box .content span {
    font-size: 1.5rem;
    color: #f1c40f; 
    display: block;
    margin-bottom: 5px;
}

.trainers .box-container .box .content h3 {
    font-size: 2rem;
    color: #fff; 
    margin: 0;
}

.trainers .box-container .box .content .share {
    padding-top: 2rem;
    margin-top: 1.5rem;
    border-top: 0.1rem solid #aaa;
}

.trainers .box-container .box .content .share a {
    font-size: 2rem;
    color: #fff;
    margin-right: 1.5rem;
}

.trainers .box-container .box .content .share a:hover {
    color: #9CD02F;
}

.trainers .box-container .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
}

.trainers .box-container .box.rare {
    border: 2px solid #e74c3c; 
    background: linear-gradient(to bottom, #f1c40f, #e74c3c); 
}

.trainers .box-container .box.rare .content {
    background: rgba(231, 76, 60, 0.8); 
}

.trainers .box-container .box.rare .content span,
.trainers .box-container .box.rare .content h3 {
    color: #fff; 
}

.trainers .box-container .box.holo-rare {
    border: 2px solid #e74c3c; 
    background: linear-gradient(to bottom, #f1c40f, #e74c3c); 
    position: relative;
    overflow: hidden;
}

.trainers .box-container .box.holo-rare .content {
    background: rgba(231, 76, 60, 0.8); 
    position: relative;
    z-index: 2;
}

.trainers .box-container .box.holo-rare .content span,
.trainers .box-container .box.holo-rare .content h3 {
    color: #fff; 
}

.footer {
    margin-top: 10rem;
    padding: 5rem;
}

.footer .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

.footer .box-container .box h3 {
    font-size: 2.2rem;
    color: #fff;
    padding: 1rem 0;
}

.footer .box-container .box .links {
    font-size: 1.5rem;
    display: block;
    color: #aaa;
    padding: 1rem 0;
}

.footer .box-container .box .links:hover {
    color: rgb(255, 206, 27);
}

.footer .box-container .box p {
    font-size: 1.5rem;
    color: #aaa;
    padding: 1rem 0;
}

.footer .box-container .box p i {
    padding-right: .5rem;
    color: rgb(255, 206, 27);
}

.footer .box-container .box .share {
    padding: 1rem 0;
}

.footer .box-container .box .share a {
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    font-size: 1.7rem;
    color: #fff;
    background: #111;
    border-radius: 50%;
    margin-right: .5rem;
    text-align: center;
}

.footer .box-container .box .share a:hover {
    background: rgb(255, 206, 27);
}

.footer .box-container .box form .email {
    margin-bottom: 1rem;
    width: 100%;
    background: #111;
    padding: 1.2rem;
    font-size: 1.5rem;
    color: #fff;
    text-transform: none;
}

.credit {
    font-size: 2rem;
    text-align: center;
    padding: 2rem;
    color: #fff;
    background: #111;
    line-height: 1.5;
}

.credit span {
    color: rgb(255, 206, 27);
}