/*=====================================
  07. Home1 Service Section CSS
========================================*/
.service-wrapper {
  padding: 60px 50px;
  border-radius: 20px;
  background-color: #F2F2FF;
}
@media (max-width: 1399px) {
  .service-wrapper {
    padding: 60px 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-wrapper {
    padding: 50px 15px;
  }
}
@media (max-width: 576px) {
  .service-wrapper {
    padding: 45px 15px;
    border-radius: 15px;
  }
}
.service-wrapper .section-title {
  text-align: center;
  margin-bottom: 30px;
}
.service-wrapper .section-title h2 {
  font-size: 32px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .service-wrapper .section-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .service-wrapper .section-title h2 {
    font-size: 28px;
  }
}
.service-wrapper .section-title svg {
  fill: rgba(82, 82, 82, 0.15);
  width: 100%;
}
.service-wrapper .service-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .service-wrapper .service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 25px;
  }
}
@media (max-width: 767px) {
  .service-wrapper .service-list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
  }
}
@media (max-width: 576px) {
  .service-wrapper .service-list {
    row-gap: 22px;
    margin-bottom: 35px;
  }
}
.service-wrapper .service-list .single-service {
  display: flex;
  gap: 20px;
  max-width: 370px;
  width: 100%;
}
@media (max-width: 1399px) {
  .service-wrapper .service-list .single-service {
    gap: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-wrapper .service-list .single-service {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .service-wrapper .service-list .single-service {
    max-width: unset;
  }
}
@media (max-width: 576px) {
  .service-wrapper .service-list .single-service {
    gap: 12px;
  }
}
.service-wrapper .service-list .single-service .icon {
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFB52A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}
.service-wrapper .service-list .single-service .icon svg {
  fill: var(--title-color);
}
.service-wrapper .service-list .single-service .content h4 {
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .service-wrapper .service-list .single-service .content h4 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .service-wrapper .service-list .single-service .content h4 {
    margin-bottom: 5px;
  }
}
@media (max-width: 576px) {
  .service-wrapper .service-list .single-service .content h4 {
    font-size: 19px;
  }
}
.service-wrapper .service-list .single-service .content p {
  color: var(--text-color);
  font-family: var(--font-roboto);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .service-wrapper .service-list .single-service .content p {
    font-size: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-wrapper .service-list .single-service .content p {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .service-wrapper .service-list .single-service .content p {
    font-size: 14px;
  }
}
.service-wrapper .service-list .single-service:nth-child(2) .icon {
  background-color: #0AB5FF;
}
.service-wrapper .batch {
  padding: 9px 30px;
  border-radius: 100px;
  background-color: var(--primary-color1);
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 576px) {
  .service-wrapper .batch {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
  }
}
.service-wrapper .batch span {
  color: var(--white-color);
  font-family: var(--font-roboto);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.service-wrapper .batch a {
  color: var(--white-color);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.5s;
}
.service-wrapper .batch a svg {
  fill: none;
  stroke: var(--white-color);
  transition: 0.5s;
}
.service-wrapper .batch a:hover svg {
  transform: rotate(45deg);
}
.service-wrapper .batch.two {
  padding: 9px 18px;
}
.service-wrapper.two {
  background-image: url(../img/home2/home2-service-bg.png), linear-gradient(180deg, #F1FEBF 0%, #F1FEBF 100%);
  background-size: cover;
  background-repeat: no-repeat;
}
.service-wrapper.two .section-title h2 {
  font-size: 25px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .service-wrapper.two .section-title h2 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .service-wrapper.two .section-title h2 {
    font-size: 22px;
    margin-bottom: 5px;
  }
}
.service-wrapper.two .section-title svg {
  fill: rgba(82, 82, 82, 0.15);
  width: 100%;
}
.service-wrapper.two .batch {
  background-color: var(--black-color);
}
@media (max-width: 767px) {
  .service-wrapper.two .batch {
    padding: 9px 20px;
  }
}
@media (max-width: 767px) {
  .service-wrapper.two .batch span {
    font-size: 15px;
  }
}
.service-wrapper.two .batch a {
  font-size: 15px;
}
.service-wrapper.two .batch a:hover {
  color: var(--primary-color1);
}
.service-wrapper.two .batch a:hover svg {
  stroke: var(--primary-color1);
}
.service-wrapper.two .batch.two {
  padding: 9px 18px;
}
@media (max-width: 576px) {
  .service-wrapper.two .bottom-area {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.service-wrapper.three {
  background-image: url(../img/home3/home3-service-bg.png), linear-gradient(180deg, #FFF2E2 0%, #FFF2E2 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 45px 50px;
}
@media (max-width: 1399px) {
  .service-wrapper.three {
    padding: 45px 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-wrapper.three {
    padding: 40px 15px;
  }
}
@media (max-width: 576px) {
  .service-wrapper.three {
    padding: 40px 15px;
    border-radius: 15px;
  }
}
.service-wrapper.three .section-title {
  text-align: start;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
@media (max-width: 576px) {
  .service-wrapper.three .section-title {
    margin-bottom: 30px;
    gap: 15px;
  }
}
.service-wrapper.three .section-title h2 {
  max-width: 400px;
  width: 100%;
  line-height: 40px;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-wrapper.three .section-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .service-wrapper.three .section-title h2 {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .service-wrapper.three .section-title h2 {
    font-size: 24px;
    line-height: 36px;
  }
}
.service-wrapper.three .section-title h2 span {
  position: relative;
  z-index: -1;
}
.service-wrapper.three .section-title h2 span::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/home3/vector/service-title-shape.svg);
  width: 130px;
  height: 53px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .service-wrapper.three .section-title h2 span::before {
    top: -6px;
  }
}
@media (max-width: 576px) {
  .service-wrapper.three .section-title h2 span::before {
    width: 100px;
    height: 46px;
    background-size: contain;
    top: -3px;
  }
}
.service-wrapper.three .section-title a {
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: 0.5s;
  margin-bottom: 10px;
}
.service-wrapper.three .section-title a svg {
  fill: none;
  stroke: var(--title-color);
  transition: 0.5s;
}
.service-wrapper.three .section-title a:hover {
  color: var(--primary-color1);
}
.service-wrapper.three .section-title a:hover svg {
  transform: rotate(45deg);
  stroke: var(--primary-color1);
}
.service-wrapper.three .service-list {
  margin-bottom: 0;
}
.service-wrapper.four {
  background-image: url(../img/home5/home5-service-bg.png), linear-gradient(180deg, #FFF2E2 0%, #FFF2E2 100%);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: unset;
  padding: 100px 0 190px;
}
@media (max-width: 1199px) {
  .service-wrapper.four {
    padding: 90px 0 190px;
  }
}
@media (max-width: 991px) {
  .service-wrapper.four {
    padding: 80px 0 170px;
  }
}
@media (max-width: 767px) {
  .service-wrapper.four {
    padding: 70px 0 170px;
  }
}
@media (max-width: 576px) {
  .service-wrapper.four {
    padding: 60px 0 170px;
  }
}
.service-wrapper.four .section-title {
  margin-bottom: 45px;
}
@media (max-width: 576px) {
  .service-wrapper.four .section-title {
    margin-bottom: 30px;
    gap: 15px;
  }
}
.service-wrapper.four .section-title h2 {
  max-width: 400px;
  width: 100%;
  line-height: 40px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .service-wrapper.four .section-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .service-wrapper.four .section-title h2 {
    font-size: 24px;
    line-height: 36px;
  }
}
.service-wrapper.four .section-title h2 span {
  position: relative;
  z-index: -1;
}
.service-wrapper.four .section-title h2 span::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/home3/vector/service-title-shape.svg);
  width: 130px;
  height: 53px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .service-wrapper.four .section-title h2 span::before {
    top: -6px;
  }
}
@media (max-width: 576px) {
  .service-wrapper.four .section-title h2 span::before {
    width: 100px;
    height: 46px;
    background-size: contain;
    top: -3px;
  }
}
.service-wrapper.four .service-list {
  margin-bottom: 0;
}
.service-wrapper.five {
  background-image: url(../img/home6/home6-service-bg.png), linear-gradient(180deg, #F2F2FF 0%, #F2F2FF 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}
.service-wrapper.five .section-title {
  max-width: 510px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 45px;
}
.service-wrapper.five .section-title h2 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .service-wrapper.five .section-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .service-wrapper.five .section-title h2 {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .service-wrapper.five .section-title h2 {
    font-size: 25px;
    line-height: 36px;
  }
}
.service-wrapper.five .section-title h2 span {
  font-family: var(--font-courgette);
  font-weight: 400;
}
.service-wrapper.five .service-list .single-service:nth-child(1) .icon {
  background-color: #FFE100;
}
.service-wrapper.five .bottom-area .batch {
  gap: 60px;
  background-color: var(--white-color);
}
@media (max-width: 991px) {
  .service-wrapper.five .bottom-area .batch {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .service-wrapper.five .bottom-area .batch {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 15px;
  }
}
.service-wrapper.five .bottom-area .batch span {
  color: var(--text-color);
}
.service-wrapper.five .bottom-area .batch a {
  color: var(--title-color);
}
.service-wrapper.five .bottom-area .batch a svg {
  fill: none;
  stroke: var(--title-color);
}
.service-wrapper.five .bottom-area .batch a:hover {
  color: var(--primary-color2);
}
.service-wrapper.five .bottom-area .batch a:hover svg {
  stroke: var(--primary-color2);
}
