/*feture card css*/
.service {
    display: flex;
}

.service-text {
    padding-top: .5rem;
    font-weight: 600;
}

.service-text:hover {
  color: var(--primary-color);
  font-weight: 600;
}


.service-card {
    background-color: #ffffff;
    box-shadow: 0 6px 10px 0 #d9171a1e;
    transition: 0.3s;
    width: 160px;
    height: 160px;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: .8rem;
  }
  
  .service-card:hover {
    color: var(--primary-color);
    box-shadow: 0 10px 18px 0 #d9171a1e;
    transition: .5s;
  }

  @media only screen and (max-width:576px) {
    .service-card {
        width: 140px;
        height: 140px;
    }
}

@media only screen and (max-width:350px) {
  .service-card {
      width: 120px;
      height: 120px;
  }
}

@media only screen and (max-width:300px) {
  .service-card {
      width: 115px;
      height: 115px;
  }
}




/*hero section text button*/

.hero-highlight {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 500;
}

.hero-heading {
    font-size: 56px;
    font-weight: 900;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.hero-text {
    color: var(--secondary-black);
}

.btn-alignment {
    display: flex;
    justify-content: start;
    margin-top: 2rem;
}

@media only screen and (max-width:992px) {
  .hero-heading {
    font-size: 40px;
}
}

@media only screen and (max-width:768px) {
    .hero-heading {
      font-size: 36px;
  }
}

@media only screen and (max-width:576px) {
    .hero-highlight {
        text-align: center;
    }
    .hero-heading {
        font-size: 32px;
        text-align: center;
    }
    .hero-text {
        text-align: center;
    }
    .btn-alignment {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }
}






/*button design css*/
.btn {
    color: var(--white-color);
    background-color: var(--primary-color);
    box-shadow: 0 4px 10px 0 #d9171a50;
    border: none;
    padding: .8rem 2rem;
    border-radius: 2rem;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .05rem;
    cursor: pointer;
    transition: .5s;
  }

  .btn:hover {
    color: var(--white-color);
    padding: .8rem 2.3rem;
    box-shadow: 0 10px 18px 0 var(--primary-color);
    transition: .5s;
  }





/*all heading css*/
.heading {
    font-size: 41px;
    font-weight: 800;
}

.heading-bot {
  font-size: 34px;
}

@media only screen and (max-width:768px) {
  .heading {
    font-size: 36px;
  }
  .heading-bot {
    font-size: 28px;
  }
}

@media only screen and (max-width:576px) {
  .heading {
    font-size: 32px;
    text-align: center;
  }
  .heading-bot {
    font-size: 24px;
  }
}




/*section image css*/
.section-img {
  width: 90%;
}

@media only screen and (max-width:576px) {
  .section-img {
    width: 100%;
  }
}



/*App download section css*/

.app-section-bg {
  background-color: var(--hover-color);
  width: 100%;
  border-radius: 1rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 8px;
  position: relative;
}

.app-section-text {
  color: var(--white-color);
  padding-left: 3rem;

}

.app-img {
  height: 500px;
  position: absolute;
  top: -20%;
  bottom: 0;
  right: 15%;
}

.app-download-btn {
  margin-left: 1rem;
}

@media only screen and (max-width:992px) {
  .app-section-bg {
    margin-top: 0;
    margin-bottom: 0;
  }
  .app-img {
    top: -0%;
    right: 5%;
  }
  .app-download-btn {
    margin-left: 0;
  }
}

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

  .app-section-text {
    padding-left: 1rem;
  
  }

  .app-img {
    height: 500px;
    position: relative;
    left: auto;
    right: auto;
  }

  .app-download-btn {
    margin-left: 0;
  }

}

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

  .app-section-text {
    padding-left: 0;
    text-align: center;
  
  }

  .app-download-btn {
    margin-left: .6rem;
  }

}



/*Calculator section css*/


.nav-tab-btn {
  font-family: 'Mulish', sans-serif;
  background-color: var(--white-color);
  border: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin: .5rem;
  border-radius: .5rem;
  font-size: 16px;
  letter-spacing: .05rem;
  font-weight: 600;
}

.item-active, .nav-tab-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.result-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: 0;
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: .5rem;
  font-size: 16px;
  font-weight: 600;
  transition: .5s;
}

.result-btn:hover {
  box-shadow: 0 10px 18px 0 var(--primary-color);
  transition: .5s;
}

input {
  width: 100%;
  border: 0;
  padding: 1rem;
  border-radius: .5rem;
}

:focus-visible {
  outline: -webkit-focus-ring-color auto 0px;
}



output {
  display: flex;
  width: 100% !important;
  padding: .8rem;
  background-color: var(--white-color);
  border-radius: .5rem;
  
}



/*slick css*/
.slick-prev:before, .slick-next:before {
  color: var(--primary-color) !important;
}


.slick-dots {
  /* background-color: var(--white-color) !important; */
  background: transparent !important;
}

.slick-dots li.slick-active button:before {
  color: var(--primary-color) !important;
}



/*testimonial css*/
.testimonial-heading {
  font-size: 41px;
  font-weight: 700;
  text-align: center;
}

.testimonial-text {
  text-align: justify;
  color: var(--secondary-black);
  line-height: 1.8rem;
}

@media only screen and (max-width:768px) {
  .testimonial-heading {
    font-size: 36px;
    text-align: center;
}
}

@media only screen and (max-width:576px) {
  .testimonial-heading {
    font-size: 32px;
    text-align: center;
  }
}

.client-img {
  width: 70px;
  height: 70px;
  border-radius: 100%;
}

.fa-star, .fa-star-half-stroke {
  font-size: 12px;
  color: var(--star-color);
}

.testimonial-card {
  width: auto;
  background-image: url(../assets/testimonial-bg.png);
  background-repeat: no-repeat;
  background-position-x: 96%;
  background-position-y: 8%;
  background-color: var(--white-color);
  box-shadow: 0 6px 10px 0 #d9171a0e;
  border-radius: 1rem;
  padding: 1.5rem;

}

.t-padding {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.t-margin {
  margin-top: 3.5rem;
}

@media only screen and (max-width:576px) {
  .t-margin {
    margin-top: 2rem;
  }
  .t-padding {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

/*news card css*/
.blog-card {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background-color: var(--white-color);
  position: relative;
}

.blog-img {
  width: 100%;
  height: 250px;
  border-radius: 1rem;
  object-fit: cover;
}

.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding-top: .7rem;
  padding-bottom: .8rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-radius: 2rem;
  background-color: var(--primary-color);
}

.tag-text {
  color: var(--white-color);
  font-weight: 500;
}

.card-title h2 {
  margin-top: 0;
}

.card-des {
  margin-top: 1rem;
}

.card-icon {
  font-size: 18px;
  color: var(--primary-color);
}

.card-btn-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}


/*award css*/
.award-heading {
  font-size: 41px;
  font-weight: 700;
  text-align: center;
}


@media only screen and (max-width:768px) {
  .award-heading {
    font-size: 36px;
    text-align: center;
  }
}

@media only screen and (max-width:576px) {
  .award-heading {
    font-size: 32px;
    text-align: center;
  }
}

.award-card {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1rem;
  
}

.award-img {
  width: 70px;
  height: 70px;
  padding: .6rem;
  border-radius: 100%;
  background-color: var(--white-color);
}

.award-text {
  color: var(--white-color);
  margin-top: 1rem;
  font-weight: 500;
}




.chat-box {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: 0 6px 16px 0 var(--primary-color);
}

.chat-box-link {
  width: 100%;
}

.chat-box-img {
  width: 100%;
}

.news-partner-box {
  display: flex;
}

.news-partner-img {
  width: 100%;
  height: 40px;
}

.marquee-box {
    height: 70px;
  border-radius: .8rem;
  padding: 1rem 0;
  background: transparent;
  box-shadow: 0px 0px 20px -9px #d9171a20;
}