.tab-navigation {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.tab-navigation h4{
  font-size: 16px;
  margin-top: 10px;
}
.tab-btn {
  background: #f8f9fa;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  min-width: 245px;
  border-radius: 10px;
  border: 1px solid #999a9c;
}
.tab-btn img {
  margin-top: 20px;
  width: 60px;
}
.tab-btn.active img {
  margin-top: 20px;
}
.tab-btn:hover {
  background: #e9ecef;
}
.tab-btn.active {
  background: #022f59;
  color: white;
  border: none;
}
.tab-btn.active:after {
  content: "";
  position: relative;
  bottom: -60px;
  left: 0%;
  border: 15px solid transparent;
  border-top-color: #022f59;
  top: 39px;
}
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}
.tab-content.active {
  display: block;
}
.tab-content h3{
  margin-top: 120px;
  color: #022f59;
  font-size: 20px;
}
.tab-content h2{
  margin-top: 20px;
  color: #000;
  font-size: 40px;
  font-weight: 400;
}
.tab-content h2 span{
  color: #022f59;
  font-style: italic;
}
.tab-content h4 {
  color: #a5a6a6 !important;
  margin-top: 20px;
}
.tab-content p {
  margin-top: 30px;
}
.tab-content a {
  background: #022f59;
  border-radius: 5px;
  color: #fff;
  padding: 10px 30px;
  margin-top: 50px;
}
.batch {
  border: 1px solid #e9e9e9;
  box-shadow: 0 1.75px 10.51px 0 #68686833;
  min-height: 374px;
  width: 345px;
  border-radius: 20px;
  padding: 20px;
}
.batch_1 {
  background: url(https://cdn.motion.ac.in/ssp/img/home-page-img/batch_jee_1.webp) 0 0 / cover no-repeat;
}
.tabbox{
  padding: 90px 0;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media only screen and (max-width: 768px) {
  .tabboximg {
    margin: auto;
    width: 96%;
  }
  .tabboximg img {
    width: 100% !important;
  }
  .tabboxtext{
    margin: auto;
    width: 92%;
  }
  .tab-content h3 {
    margin-top: 0px;
    color: #022f59;
    font-size: 20px;
  }
  .tab-content h2 {
    font-size: 40px;
  }
  .tab-content a {
    margin-top: 10px;
  }
  .tabbox{
    padding: 30px 0px;
  }
}

@media (max-width: 768px) {
  .tab-btn h4 {
    font-size: 14px;
  }
  .tab-btn img {
    width: 30px;
  }
}
