

@media (min-width: 1400px) {
  .container {
    max-width: 80% !important;
  }
}

@media (min-width: 2000px) {
  .container {
    max-width: 1920px;
  }
}

/* Auto Typing */
.section-1-text-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.section-1-text-2 > p {
  color: #101012;
  font-size: 70px;
  font-weight: 800;
  line-height: 68px;
}

.section-1-text-2 > p > span {
  font-size: 60px;
  color: #24419b;
  font-weight: 800;
  line-height: 68px;
}

.l-hero-mainpage__text {
  color: #101012;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  max-width: 560px;
}

.l-hero-mainpage__text-item {
  color: #101012;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.hero_big_button_service_page {
  margin: 0;
  border-radius: 8px;
  background: #24419b;
  width: fit-content;
  padding: 18px 32px;
  text-transform: none;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.2px;
  color: #fff;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition-duration: 0.5s;
}

.hero_big_button_service_page:hover {
  background-color: #1a9d78;
  color: #fff;
}
.theme-heading {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.5px;
  text-decoration-color: #1a9d78;
}
.addtocartbtn {
  border-radius: 6px;
  background: var(--Blue, #24419b);
  padding: 10px 36px;
  border: none;
  width: auto;
  transition-duration: 0.5s;
}
.addtocartbtn:hover {
  background-color: #1a9d78;
}



.new-work-area {
  display: none;
}

/* Testimonial css */

.testimonial-section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  padding: 0rem 3rem;
  margin: 0 auto;
}

@media screen and (min-width: 61.25rem) {
  .testimonial-section {
    column-gap: 5rem;
  }
}

.testimonial-section h1 {
  grid-column: span 12;
  text-transform: capitalize;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

@media screen and (min-width: 61.25rem) {
  .testimonial-section h1 {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
}

.testimonial-section .cards {
  grid-column: span 12;
  display: grid;
  gap: 1rem;
}

@media screen and (min-width: 61.25rem) {
  .testimonial-section .cards {
    grid-column: span 5;
  }
}

.testimonial-section .cards .card {
  cursor: pointer;
  padding: 2em;
  border-radius: 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 2.188rem;
  align-items: center;
  transition: 0.3s;
  position: relative;
  border: 0.094rem solid transparent;
}

.testimonial-section .cards .card img {
  display: block;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  filter: grayscale(1);
  transition: 0.5s;
}

.testimonial-section .cards .card > div h3 {
  text-transform: capitalize;
  font-size: 1.025rem;
}

.testimonial-section .cards .card > div p {
  text-transform: capitalize;
  color: #767676;
  font-size: 0.9rem;
}

.testimonial-section .cards .card.active {
  background: #fff;
  border: 0.094rem solid #1a9d78;
}

.testimonial-section .cards .card.active .gradient {
  background-image: linear-gradient(
    to right,
    #4755690a,
    #9d0cb28a,
    #4343c899,
    #4755690a
  );
  width: 50%;
  height: 0.094rem;
  position: absolute;
  content: "";
  bottom: -0.063rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 0.125rem 0.75rem #4343c84d;
}

.testimonial-section .cards .card.active img {
  filter: grayscale(0);
}

.testimonial-section .content {
  grid-column: span 12;
  position: relative;
  width: 100%;
  overflow: inherit;
  margin-top: 2rem;
}

@media screen and (min-width: 61.25rem) {
  .testimonial-section .content {
    grid-column: span 7;
    margin-top: 0;
    height: auto;
  }
}

.testimonial-section .content .contentBox {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: top;
}
.testimonial-section .content .contentBox .text h2 {
  color: #24419b;
}



.testimonial-section .content .contentBox .text {
  padding-bottom: 2rem;
}

@media screen and (min-width: 61.25rem) {
  .testimonial-section .content .contentBox .text {
    padding-bottom: 0;
  }
}

.testimonial-section .content .contentBox h2 {
  transition: 0.5s;
  opacity: 0;
}

.testimonial-section .content .contentBox p {
  transition: 0.5s;
  opacity: 0;
  margin-top: 1.25rem;
  font-size: 1.4em;
}

.testimonial-section .content .contentBox span {
  display: inline-block;
  transition: 0.5s;
  opacity: 0;
  margin-top: 0.625rem;
}

.testimonial-section .content .contentBox span svg {
  width: 1.25rem;
  color: #eca633;
}

.testimonial-section .content .contentBox.active h2 {
  opacity: 1;
  transition-delay: 0.2s;
}

.testimonial-section .content .contentBox.active span {
  opacity: 1;
  transition-delay: 0.3s;
}

.testimonial-section .content .contentBox.active p {
  opacity: 1;
  transition-delay: 0.4s;
}

.rating-star {
  color: #f8b430;
}
.review-count {
  color: #fff;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.fl-rich-text {
  text-align: center;
}
.fl-rich-text h2 {
  font-size: 54px;
  font-weight: 600;
  color: #fff;
  margin: 0px;
  margin-bottom: 10px;
}
.fl-rich-text h3 {
  font-size: 54px;
  font-weight: 600;
  color: #f8b430;
  margin-bottom: 20px;
}
.fl-rich-text p {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.fl-rich-text div a {
  margin: 0;
  border-radius: 8px;
  background: #1a9d78;
  width: fit-content;
  padding: 12px 42px;
  text-transform: none;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.2px;
  color: #fff;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition-duration: 0.5s;
}

.fl-rich-text div a:hover {
  background-color: #f8b430;
  color: #fff;
}

.partnercards {
  width: 150px;
  display: flex;
  justify-content: center;
}
.partnercards > img {
  height: 100%;
  width: 100%;
}
.contact-form-area{
  display: flex;
  justify-content: center;
}
.contact-form-area>form{
  background-color: #24419b;
  width: 100%;
  padding: 0% 10% 5% 10%;
  border-radius: 5px;
}
.seo-form-label {
  font-size: 16px;
   font-weight: 600;
   color: #fff;
}
.seo-form-textarea {
}
.seo-form-input {
}
.seo-form-submit-btn{
  width: 100%;
  border: 1px solid #1a9d78;
  margin-top: 1rem;
  padding: 10px ;
  background-color: #1a9d78;
  border-radius: 5px;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  transition-duration: 0.5s;
}
.seo-form-submit-btn:hover{
  background-color: #eca633;
  color: #000;
  border: 1px solid #eca633;
}




/* F and Q */

.accordion-item {
  background-color: #1a9d7817;
  padding: 1rem 2rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  border-bottom: 2px solid  #1a9d78 !important;
}

.accordion-item.active {
  background-color: #1a9d78;
}


.accordion-button {
  background-color: transparent !important;
}



/* Partner Slider CSS */
.home-demo .slide img {
  padding: 10px 20px;
  width: 200px;
  background-color: #fff;
  border-radius: 5px;
}

.home-demo .slide {
  display: flex;
  justify-content: center;
}

.home-demo {
  padding: 10px;
}


/* Awards and Achievement */

.award-card{
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #24419b;
  text-align: center;
  padding: 40px 0px;
  border-radius: 5px;
}
.award-card .svg i{
  color: #fff;
  font-size: 60px;
}
.award-card span{
 color: #fff;
 font-size: 20px;
}
.award-card .count{
font-size: 40px;
}
.award-card .text{

}
.service-check-icon{
  color: #24419b;
  font-size: 20px;
}
.accordion-button.collapsed:after {
    top:5px !important;
}
.accordion-button:before {
    top: 12px !important;
}
.work-area-1{
    display:flex;
}
.marketing-card-image-area{
    padding:3rem;
}
.marketing-card-text-area{
     /*padding:3rem;*/
}

@media screen and (max-width: 1629px) {
  .section-1-text-2 > p {
    font-size: 55px;
  }

  .section-1-text-2 > p > span {
    font-size: 55px;
  }
}

@media screen and (max-width: 1480px) {
  .l-hero-mainpage__text-item {
    font-size: 16px;
  }
}

@media screen and (max-width: 1200px) {
  .work-area-1 {
    display: none !important;
  }

  .work-area-2 {
    display: none;
  }

  .section-1-text-2 > p {
    font-size: 45px;
  }

  .section-1-text-2 > p > span {
    font-size: 45px;
  }

  .new-work-area {
    display: block;
    margin-top: 1rem;
  }

  .section-1-text-2 {
    gap: 0rem;
  }

      .hero_big_button_service_page {
        padding: 4px 25px ;
    }
}
@media screen and (max-width: 992px){
   .testimonial-section .content .contentBox{
       position:unset ;
       display:none ;
   }
   .testimonial-section .content .contentBox.active{
       display:block ;
   }
   .testimonial-section .cards{
    display:flex;   
    justify-content:space-between;
   }
   .testimonial-section .cards .card{
       display:flex;
       text-align: center;
       min-width: 200px;
   }
   .marketing-review-image>div{
       width: 60px;
       /*height: 60px;*/
       display: flex;
       /*align-items: baseline;*/
   }
   .marketing-review-image>div>img{
       width:100%;
       /*height:100%;*/
   }
   .marketing-service-card-1{
       flex-direction: column-reverse;
   }
   .marketing-card-text-area{
     padding-top:0rem;
}
.fl-rich-text{
    padding:0px 1rem;
}
.fl-rich-text h2{
    font-size:40px;
}
.fl-rich-text p{
    font-size:14px;
}
.accordion-button.collapsed:after{
    right: -11px !important;
}
.accordion-button:before {
        right: -18px !important;
    }
}

@media screen and (max-width: 800px) {
  .section-1-text-2 > p {
    font-size: 25px;
    line-height: 38px;
  }

  .section-1-text-2 > p > span {
    font-size: 25px;
    line-height: 38px;
  }

  .l-hero-mainpage__text {
    font-size: 15px;
    line-height: 20px;
  }
  .l-hero-mainpage__text-item {
    font-size: 14px;
    font-weight: 600;
  }
  .l-hero-mainpage__text-item-img {
    height: 18px;
    width: 18px;
    margin-top: 3px;
  }
  .testimonial-section .cards .card > div p{
    display:none;   
  }
  .testimonial-section .cards .card{
      min-width: 110px;
      padding: 1em;
  }
}

@media screen and (max-width: 700px) {
  .about-box-2 > img {
    width: 100%;
    height: auto;
    object-fit: unset;
    display: block;
  }
  .testimonial-section{
   padding: 0rem 1rem;   
  }
  .theme-heading{
   font-size:36px;    
  }
  .award-card{
        padding:10px;
    }
    
    .contact-form-area>form{
        padding:0% 5% 5% 5%;
    }
}

@media screen and (max-width: 500px) {
  .section-1-text-2 > p {
    font-size: 20px;
    line-height: 30px;
  }

  .section-1-text-2 > p > span {
    font-size: 20px;
    line-height: 30px;
  }

  .l-hero-mainpage__text {
    font-size: 13px;
    line-height: 15px;
  }

  .section-1-text-2 > p {
    font-size: 15px;
    line-height: 20px;
  }

  .section-1-text-2 > p > span {
    font-size: 15px;
    line-height: 20px;
  }

  .l-hero-mainpage__text {
    font-size: 12px;
    line-height: 15px;
  }
  
   .testimonial-section .cards .card > div h3{
   font-size:13px;   
  }
      .testimonial-section .cards .card {
        min-width: 90px;
        padding: 10px;
        height: 90px;
        align-items: center;
    }
    .award-card span{
        font-size:12px;
    }
    .award-text{
         font-size:30px !important;
    }
    .award-card .count{
        font-size:30px !important;
    }
    .award-card>.svg>img{
        width:61px;
    }
    
    .fl-rich-text h2{
    font-size:30px;
}
.fl-rich-text p{
    font-size:12px;
}
  
}
@media screen and (max-width: 400px) {

}
