* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Archivo", sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

body {
  padding: 0;
  margin: 0;
  overflow-x: hidden !important;
  font-family: "Archivo", sans-serif !important;
}


a {
  text-decoration: none !important;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}



.main-section::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none;
}

.top-header {
  width: 100%;
  background-color: #FFF101;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-header .info-mail span a {
  text-decoration: none;
  color: #000;
}

.top-header .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.top-header .social-icon .icon a i {
  color: #000;
  font-size: 20px;
}

.main-header {
  background-color: transparent;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header .logo {
  width: 200px;
}

.main-header .logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-header .right-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.main-header .right-nav .nav-text {
  font-size: 25px;
  font-weight: 700;
  line-height: 26.03px;
  color: #000;
}

.main-header .right-nav .button a {
  text-decoration: none;
  background-color: #FFF101;
  border-radius: 25px;
  padding: 10px 25px;
  font-size: 20px;
  font-weight: 600;
  line-height: 20.83px;
  color: #000;

}

.main-banner {
  background-image: url(../images/banner-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 130px 0 200px;
}

.banner-content {
  display: flex;
  align-items: center;
  /* justify-content: space-around; */
  padding-left: 100px;
}

.banner-content .red-text {
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 700;
  color: #F21717;
  line-height: 52px;
  display: block;
}

.banner-content .red-text.black-text {
  color: #000;
}

.sponser-img {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sponser-img p {
  font-size: 20px;
  font-weight: 600;
}

.sponser-img>div {
  background: #fff;
  border-radius: 20px;
  padding: 5px;
}

.products-main {
  padding-top: 100px;
}

.products-main .product-row {
  background-color: transparent;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.products-main .product-row .product-inner-card {
  position: relative;
  background: #B1D3DE40;
  border-radius: 20px;
  text-align: center;
  padding: 80px 20px 40px 20px;
  width: 100%;
}

.products-main .product-row .product-inner-card .products-img {
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 300px;
  height: 200px;
}

.products-main .product-row .product-inner-card .products-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.products-main .product-row .product-inner-card .products-title {
  padding-top: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 20.83px;
  text-align: center;

}

.info-footer {
  width: 100%;
  height: 200px;
  text-align: center;
}


.info-footer .contact-us-inner-card {
  background-color: #00A54F;
  border-radius: 20px;
  padding: 20px;
  display: inline-block;
  text-align: center;
  position: relative;
  bottom: -75px;
  left: 0;
  right: 0;
}

.info-footer .contact-us-inner-card .contact-text {
  font-size: 32px;
  font-weight: 700;
  line-height: 41.65px;
  color: #fff;
}

.info-footer .contact-us-inner-card .contact-number span,
.info-footer .contact-us-inner-card .contact-number a {
  font-size: 26px;
  font-weight: 600;
  line-height: 34.36px;
  color: #fff;
}






/* responsive start=============================== */

@media only screen and (max-width: 1024px) {
  .main-header .logo {
    width: 150px;
  }

  .main-header .right-nav .nav-text,
  .main-header .right-nav .button a {
    font-size: 18px;
    font-weight: 700;
    line-height: 20.03px;
    color: #000;
  }

  .products-main .product-row .product-inner-card .products-img {
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 240px;
    height: 200px;
  }

  .products-main .product-row .product-inner-card .products-title {
    padding-top: 10px;
    font-size: 16px;
  }

  .info-footer .contact-us-inner-card .contact-text {
    font-size: 28px;
  }
}

@media only screen and (max-width: 992px) {
  .products-main .product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    flex-wrap: wrap;
  }

  .main-banner {
    padding: 100px 0;
  }

  .banner-content {
    justify-content: center;
    padding: 0 20px;
  }

  .sponser-img {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .banner-content .red-text {
    font-size: 40PX;
    line-height: 45PX;
  }
}

@media only screen and (max-width: 769px) {

  .top-header,
  .main-header,
  .products-main .product-row {
    padding: 15px 16px;

  }

  .main-header .logo {
    width: 100px;
  }

  .products-main {
    padding-top: 50px;
  }

  .main-header .right-nav .nav-text,
  .main-header .right-nav .button a {
    font-size: 14px;
    font-weight: 700;

  }

  .products-main .product-row .product-inner-card .products-img {
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 240px;
    height: 200px;
  }

  .products-main .product-row .product-inner-card .products-title {
    padding-top: 10px;
    font-size: 16px;
  }

  .info-footer .contact-us-inner-card .contact-text {
    font-size: 24px;
  }

  .info-footer .contact-us-inner-card .contact-number span,
  .info-footer .contact-us-inner-card .contact-number a {
    font-size: 22px;

  }

  .info-footer .contact-us-inner-card {
    position: relative;
    bottom: -45px;
    left: 0;
    right: 0;
  }
}

@media only screen and (max-width: 576px) {
  .main-header {
    background-color: transparent;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
  }

  .main-header .right-nav {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }


  .info-footer .contact-us-inner-card .contact-text {
    font-size: 20px;
    line-height: 22px;
  }

  .info-footer .contact-us-inner-card .contact-number span,
  .info-footer .contact-us-inner-card .contact-number a {
    font-size: 16px;
    line-height: 22px;


  }
  .sponser-img{
    grid-template-columns: 1fr 1fr;
  }

  .banner-content .red-text {
    font-size: 30PX;
    line-height: 40PX;
}
}

@media only screen and (max-width: 380px) {

  .main-header .right-nav .nav-text,
  .main-header .right-nav .button a,
  .top-header .info-mail span {
    font-size: 12px;
  }
}