.bannerbox {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bannerbox .bannerImg {
  width: 100%;
}
.bannerContents {
  width: 90%;
  position: absolute;
}
.ban-h1 {
  margin: 0;
  color: #ffffff;
  font-size: 96px;
  font-weight: 900;
  line-height: 100px;
}
.ban-para {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
}
.applyBtn {
  margin-top: 6rem;
  height: 50px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 30px;
  background-color: #e2001a;
  color: #ffffff;
  border: none;
  font-size: 18px;
  font-weight: 700;
}
.scrolBox {
  position: absolute;
  bottom: 2rem;
  animation: scroll 2s infinite;
}
@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.scrollImg {
  width: 90px;
}
.tabSection {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d1d1d1;
}
.tabContainer {
  width: 90%;
  margin: 6rem 0;
}
.tabContainer .nav-pills {
  gap: 2rem;
}
.tabContainer .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 30px;
  height: 60px;
  width: 280px;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: #000000;
}
.tabContainer .nav-link.active {
  background-color: #e2001a;
  font-weight: 700;
}
.tabSection .tab-content {
  margin-top: 2rem;
}
.tabSection h3 {
  margin: 0;
  font-size: 72px;
  font-weight: 700;
  text-align: center;
  color: #000000;
}
.tabSection h6 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  color: #000000;
}
.video-container {
  margin-top: 2rem;
  width: 100%;
  max-height: 600px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #000000;
}
/* ------ */

/* ---- */
.cardBox {
  margin-top: 2rem;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.25);
}
.cardsmallBox {
  width: calc(20% - 1rem);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cardsmallBox .card-title {
  margin: 0;
  margin-top: 1rem;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: #000000;
  min-height: 40px;
}
.cardsmallBox .downloadBtn {
  margin-top: 1rem;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 30px;
  padding: 0.7rem 1.5rem;
  color: #000000;
  border: 1px solid #c2c2c2;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.25);
}
.certificationsImg{
  width: 100%;
  height: 400px;
  border-radius: 10px;
}
/* -------- */
.policyBox {
  margin-top: 2rem;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.policyImg {
  width: 100%;
}
.mobView{
  display: none;
}
@media screen and (max-width: 1660px) {
  .ban-h1 {
    font-size: 84px;
    line-height: 90px;
  }
  .ban-para {
    font-size: 20px;
    line-height: 25px;
  }
  .applyBtn {
    margin-top: 5rem;
  }
  .tabContainer .nav-pills {
    gap: 1.5rem;
  }
  .tabContainer .nav-link {
    height: 55px;
    width: 250px;
  }
  .tabSection h3 {
    font-size: 54px;
  }
  .tabSection h6 {
    font-size: 38px;
  }
  .cardItem {
    gap: 2rem;
    padding: 2rem;
    padding-top: 3rem;
  }
  .cardItem h4 {
    width: 70%;
    height: 55px;
    font-size: 24px;
  }
  .cardItem .card {
    width: calc(50% - 1rem);
    padding: 1rem;
  }
  .downloadIcon {
    width: 55px;
  }

  .cardDownload {
    width: 70%;
    padding: 0.6rem 1.5rem;
  }
  .cardDownload h5 {
    font-size: 28px;
  }
  .dbutton {
    height: 35px;
  }

  .cardBox {
    gap: 1rem;
  }
  .cardsmallBox {
    width: calc(20% - 1rem);
    padding: 1rem;
  }
  .cardsmallBox .card-title {
    font-size: 18px;
  }
  .cardsmallBox .downloadBtn {
    margin-top: 1.5rem;
    padding: 0.4rem 0.7rem;
  }
  .certificationsImg{
    height: 350px;
  }
}
@media screen and (max-width: 1440px) {
  .ban-h1 {
    font-size: 74px;
    line-height: 80px;
  }
  .ban-para {
    font-size: 18px;
    line-height: 24px;
  }
  .applyBtn {
    margin-top: 4rem;
  }
  .tabContainer .nav-pills {
    gap: 1rem;
  }
  .tabContainer .nav-link {
    height: 50px;
    width: 200px;
    font-size: 18px;
  }
  .tabSection h3 {
    font-size: 44px;
  }
  .tabSection h6 {
    font-size: 30px;
  }
  .cardItem {
    gap: 1rem;
    padding: 1.5rem;
    padding-top: 2.5rem;
  }
  .cardItem h4 {
    top: -20px;
    height: 45px;
    font-size: 20px;
  }
  .cardItem .card {
    width: calc(50% - 0.5rem);
  }
  .downloadIcon {
    width: 50px;
  }
  .cardItem .card-title {
    font-size: 18px;
  }
  .cardDownload {
    width: 70%;
    padding: 0.5rem 1.5rem;
  }
  .cardDownload h5 {
    font-size: 22px;
  }
  .dbutton {
    height: 30px;
  }
  .cardsmallBox {
    width: calc(25% - 1rem);
  }
}
@media screen and (max-width: 1280px) {
  .ban-h1 {
    font-size: 64px;
    line-height: 70px;
  }
  .ban-para {
    font-size: 16px;
    line-height: auto;
  }
  .tabContainer {
    margin: 4rem 0;
  }
  .tabContainer .nav-link {
    height: 45px;
    width: 180px;
    font-size: 16px;
  }
  .tabSection h3 {
    font-size: 38px;
  }
  .tabSection h6 {
    font-size: 28px;
  }
  .productContentBox {
    margin-top: 3rem;
  }
  .cardItem {
    gap: 1rem;
    padding: 1rem;
    padding-top: 2.5rem;
  }
  .cardItem h4 {
    top: -20px;
    height: 40px;
    font-size: 18px;
  }
  .downloadIcon {
    width: 45px;
  }
  .cardItem .card-title {
    font-size: 16px;
  }
  .cardItem .downloadBtn {
    font-size: 14px;
    padding: 0.5rem;
  }

  .cardDownload {
    width: 80%;
    padding: 0.5rem 1.5rem;
  }
  .cardDownload h5 {
    font-size: 18px;
  }
  .dbutton {
    height: 28px;
  }
  .cardsmallBox {
    width: calc(33% - 1rem);
  }
}

@media screen and (max-width: 1080px) {
  .ban-h1 {
    font-size: 54px;
    line-height: 60px;
  }
  .cardsmallBox .card-title {
    font-size: 16px;
  }
  .cardsmallBox .downloadBtn {
    font-size: 14px;
  }

  .tabSection h3 {
    font-size: 34px;
  }
}

@media screen and (max-width: 990px) {
  .bannerImg {
    height: 450px;
    object-fit: cover;
    object-position: left;
  }
  .ban-h1 {
    font-size: 48px;
    line-height: 50px;
  }
  .tabSection h3 {
    font-size: 28px;
  }
  .tabContainer .nav-pills {
    gap: 0.5rem;
  }
  .tabContainer .nav-link {
    height: 40px;
    width: auto;
    padding: 0 1rem;
  }

  .productContentBox {
    flex-wrap: wrap;
    gap: 4rem;
  }
  .cardItem {
    width: 100%;
  }

  .cardDownload {
    width: 100%;
    padding: 0.5rem 1.5rem;
  }

  .cardsmallBox {
    width: calc(50% - 1rem);
  }
  .video-container {
    max-height: 500px;
  }
  .certificationsImg{
    height: 300px;
  }
}

@media screen and (max-width: 768px) {
  .ban-h1 {
    text-align: center;
  }
  .certificationsImg{
    height: auto;
  }
  .webView{
    display: none;
  }
  .mobView{
    display: block;
  }
  .bannerImg {
    height: 450px;
  }
  .productContentBox {
    flex-wrap: wrap;
    gap: 4rem;
  }
  .cardItem {
    width: 100%;
  }

  .cardBox {
    gap: 1rem;
    padding: 1rem;
  }
  .cardsmallBox .downloadBtn {
    font-size: 13px;
  }
  .video-container {
    max-height: 400px;
  }
}

@media screen and (max-width: 550px) {
  .bannerImg {
    height: 400px;
  }
  .ban-h1 {
    font-size: 38px;
    line-height: 50px;
  }
  .ban-para br {
    display: none;
  }
  .applyBtn {
    margin-top: 1.5rem;
    width: 200px;
    height: 45px;
    font-size: 16px;
  }
  .tabSection h3 {
    font-size: 24px;
  }
  .cardItem h4 {
    font-size: 16px;
  }
  .cardItem {
    flex-wrap: wrap;
  }
  .cardItem .card {
    width: 100%;
  }
  .cardItem .downloadBtn {
    width: 100%;
  }

  .cardsmallBox {
    width: 100%;
  }
  .cardsmallBox .downloadBtn {
    width: 100%;
    font-size: 14px;
  }
  .video-container {
    max-height: 300px;
  }
}
