/* home page - product swiper */

.prodSwipCard {
  display: flex;
  align-items: center;
  position: relative;
}

.prodSwipTxt {
  width: 80%;
  margin-left: auto;
  background-color: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(8px);
  position: relative;
  padding: 80px 150px 80px 190px;
  border-radius: 25px;
}

.prodSwipImg {
  width: 390px;
  height: 290px;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  /* opacity: 0; */
  transform: translateY(-50%);
  animation: bounceDown 1s linear;
}

.prodSwipImg img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
	object-fit: cover;
}

@keyframes bounceDown{
  0%{
    opacity:0;
    transform:translateY(-80%);
  }
  50%{
    opacity:1;
    transform:translateY(-100px);
  }
  100%{
    transform:translateY(-50%);
  }
}

.prodSwipTxt h5 {
  color: #084593;
  font-size: 40px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: 0.4px;
}

.prodBtn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #084593;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}

.prodBtn img {
  width: 20px;
  height: auto;
}

.prodSlider {
  padding: 0px 80px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  background-color: #cfcfcf;
  color: #828282;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 22px;
  font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover,
.swiper-button-next:focus,
.swiper-button-prev:focus {
  background-color: #db0008 !important;
  color: #fff !important;
}

.prodSlider .swiper-button-next,
.prodSlider .swiper-button-prev {
  background-color: #fff;
}

/* home page - why choose us section */

.whyChooseBtm {
  position: relative;
  padding: 20px 60px 0px;
}

.whychooseswiper {
  position: static;
  padding: 0px 30px;
}

.whyChooseCard {
  padding: 40px 22px;
  position: relative;
}

.whychooseswiper .swiper-slide .whyChooseCard::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.whychooseswiper .swiper-slide:nth-child(even) .whyChooseCard {
  margin-top: 130px;
}

.whyCardIcon{
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.whyCardIcon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.whyCardHead {
  color: #084593;
  font-size: 25px;
  font-weight: 600;
  line-height: 33px;
  letter-spacing: 0.25px;
  /* margin-bottom: 50px; */
  margin-bottom: 15px;
}

.whyCardImg{
  width: 100%;
  height: 220px;
  margin-bottom: 40px;
	display: none;
}

.whyCardImg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.more-content {
  display: none;
}

.toggle-btn {
  color: #084593;
  font-weight: 600;
}

/* home page- certification swiper */

.certificSecBtm{
  padding: 0px 35px;
  position: relative;
}

.certificSwiper{
  position: static;
  padding: 20px 20px;
}

.certificCard{
  text-align: center;
  border: 1px solid rgb(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 20px 0px;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.certificImg{
  width: auto;
  height: 100px;
  margin: 0px auto;
}

.certificImg img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.certificSwiper .swiper-button-next, .certificSwiper .swiper-button-prev{
  width: 35px;
  height: 40px;
}

.certificSwiper .swiper-button-next:after, .certificSwiper .swiper-button-prev:after{
  font-size: 16px;
}

.certificCard:hover{
  border: 1px solid transparent;
  box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.2);
}

.certificCard::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: #db0008;
  transition: all 0.5s;
}

.certificCard:hover::after{
  content: '';
  width: 100%;
  height: 7px;
}
