/*Home*/
.stack ul li img {
  width: 70px;
  height: 70px;
  display: block;
  margin: 0 auto;
  margin-bottom: 15px;
  background: #e7e7e7;
  padding: 10px;
  border-radius: 15px 0;
}

.stack ul {
  margin: 0 auto;
  justify-content: center;
  display: inline-flex;
  width: 100%;
  padding: 0;
}

.stack ul li {
  width: 18%;
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #281d76;
}


.ser-col {
  padding: 15px 30px;
}

.plans {
  background: #fff;
  text-align: center;
  padding: 30px;
  box-shadow: 0 3px 6px rgb(231 231 231 / 16%), 0 3px 6px rgb(213 213 213 / 23%);
  border-radius: 25px;
  width: 80%;
  margin: 0 auto;
}

.plans p {
  font-size: 18px;
  font-weight: 500;
  margin-top: 25px;
}

.trusted-review {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  background: #f9f9f9;
  padding: 15px;
  box-shadow: 0 3px 6px rgb(231 231 231 / 16%), 0 3px 6px rgb(213 213 213 / 23%);
}

.trusted-text .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.logo-slider {
  overflow: hidden;
  padding: 30px 0 0 0;
  white-space: nowrap;
  position: relative;
}

.logo-slider:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 45s slide infinite linear;
}

.logos-slide img {
  margin: 0 40px;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}





ul.services-list li {
  background: #ffffff;
  align-items: center;
  padding: 10px 15px;
  border-radius: 0;
  font-size: 20px;
  font-weight: 600;
  gap: 10px;
  margin: 15px;
  color: #000000;
  display: inline-flex;
  border-radius: 10px;
}

ul.services-list li img {
  width: 60px;
  height: 60px;
  padding: 5px;
  border-radius: 5px;
}

ul.services-list {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
}


/************************************/
/***       15. Our Blog Css       ***/
/************************************/

.our-blog {
  padding: 100px 0;
}

.our-blog-content {
  position: sticky;
  top: 100px;
}

.blog-box {
  margin-left: 100px;
}

.blog-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.blog-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.blog-item .blog-featured-image {
  width: 47%;
}

.blog-item .blog-featured-image a {
  cursor: none;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.blog-item .blog-featured-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
}

/* .blog-item:hover .blog-featured-image img{
	transform: scale(1.1);
} */

.blog-item-body {
  width: calc(100% - 47%);
  margin-left: 30px;
}

.blog-item-content {
  margin-bottom: 20px;
}

.blog-item-content h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.blog-item-content p {
  margin: 0;
}

.blog-item-content .title {
  font-size: 22px;
  margin-bottom: 15px;
}

.it-about-accordion .accordion-buttons {
  padding: 0;
  font-weight: 600;
  font-size: 22px;
  border-radius: 10px;
  padding: 36px 40px;
  width: 100%;
  text-align: start;
  position: relative;
  overflow: hidden;
  color: #000;
  background: #f9f9f9;
}

.it-about-accordion .accordion-body {
  border-radius: 0 0 10px 10px;
  padding: 0 40px 30px 40px;
  background-color: #f9f9f9;
}

.it-about-accordion .accordion-buttons:not(.collapsed) {
  padding-bottom: 18px;
  border-radius: 10px 10px 0 0;
  color: #281d76;
}

.it-about-accordion .accordion-buttons::after {
  position: absolute;
  top: 0;
  right: -15px;
  content: "";
  width: 15px;
  height: 0;
  transition: 0.3s;
  border-radius: 0 10px 0 0;
  background-color: #281d76;
}

.it-about-accordion .accordion-buttons:not(.collapsed)::after {
  right: 0;
  height: 15px;
}


.ban-mob {
  display: none;
}

@media (max-width: 991px) {




  .ban-mob {
    display: block;
  }

  .title {
    font-size: 22px;
  }

  .nav-slider {
    display: none !important;
  }

  .mySwiper .swiper-slide img {
    width: 100%;
  }

  .it-about-2-thumb img {
    width: 100%;
    margin-bottom: 50px;
  }

  .about-img img {
    width: 100%;
    margin-bottom: 50px;
    height: 100%;
  }

  .stack ul {
    display: inline-block;
  }

  .stack ul li {
    width: 49%;
    margin: 10px 0;
    font-size: 14px;
  }

  .ed-primary-btn {
    margin: 5px 0;
  }

  .divider {
    margin: 25px 0;
  }


  ul.services-list {
    grid-template-columns: repeat(2, 1fr);
  }

  ul.services-list li {
    display: block;
    font-size: 14px;
    margin: 5px;
  }

  ul.services-list li img {
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .trusted-review {
    margin: 10px 0;
  }

  .blog-box {
    margin-left: 0;
  }

  .blog-item .blog-featured-image {
    width: 100%;
  }

  .blog-item {
    display: block;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .blog-item-body {
    width: 100%;
    margin-left: 0;
  }

  .blog-item-content {
    margin-bottom: 0;
  }

  .our-blog-content {
    margin-bottom: 50px;
  }

  .logos-slide img {
    margin: 0 20px;
    width: inherit;
  }

  .trusted-review {
    display: block;
  }

  .trusted-img img {
    width: 30% !important;
  }

  .plans {
    width: 100%;
    margin-bottom: 10px;
  }

  .stack ul li img {
    border-radius: 10PX;
  }

  .banner-hero {
    position: absolute;
    top: 65px;
  }

  .banner-hero .ed-primary-btn {
    font-size: 12px;
    padding: 10px 15px;
  }

  .banner-hero .btn-sec {
    margin: 0 !important;
    text-align: center !important;
  }

}

ul.services-list li:nth-child(1) img {
  background: #52bed2;
}

ul.services-list li:nth-child(2) img {
  background: #a82121;
}

ul.services-list li:nth-child(3) img {
  background: #49a621;
}

ul.services-list li:nth-child(4) img {
  background: #684242;
}

ul.services-list li:nth-child(5) img {
  background: #447465;
}

ul.services-list li:nth-child(6) img {
  background: #a18800;
}

ul.services-list li:nth-child(7) img {
  background: #c52da2;
}

ul.services-list li:nth-child(8) img {
  background: #6b0000;
}

ul.services-list li:nth-child(9) img {
  background: #ff8700;
}

ul.services-list li:nth-child(10) img {
  background: #003eff;
}

ul.services-list li:nth-child(11) img {
  background: #29597f;
}

ul.services-list li:nth-child(12) img {
  background: #5c4bff;
}



@media (max-width: 900px) {}

@media (max-width: 850px) {}

/* This Phone Size */
@media (max-width: 767px) {}