.service-img {
  border-radius: 10px;
  width: 100%;
}

.icon-service img {
  position: absolute;
  bottom: 10px;
  width: 9%;
  left: 70%;
}

.service-content {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
  padding: 30px 20px 30px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.service-content i {
  color: #0b3d91;
  background-color: #e5e5e5;
  border-radius: 7px 7px 7px 7px;
  font-size: 25px;
  height: 65px;
  width: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-content h3 {
  font-weight: 600;
  line-height: 1.1em;
  letter-spacing: -0.02em;
  font-size: 23px;
  font-family: var(--font-osw);
}

.service-content p {
  font-family: var(--font-pop);
  font-size: 16px;
}

.service-cnt-all .col-lg-4:nth-child(even) .service-content {
  background-color: transparent;
  background-image: linear-gradient(90deg, #e5e5e5 0%, #f7f3ec 100%);
  border: 1px solid #aa9874;
}

.service-content:hover i {
  background: var(--primary);
  color: #fff;
}

.service-content .custom-btn-second {
  color: #000;
}

.service-content:hover .custom-btn-second {
  background-color: var(--primary);
  color: #fff !important;
}

.service-content-four {
  background-color: transparent;
  text-align: left;
  background-image: linear-gradient(180deg, #e5e5e5 0%, #f7f3ec 100%);
  padding: 10px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #a7a7a7;
  border-radius: 10px 10px 10px 10px;
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.service-content-four span {
  color: #000000;
  font-family: var(--font-osw);
  font-size: 25px;
  font-weight: 600;
}

.service-content-four label {
  font-size: 23px;
  font-weight: 600;
  font-family: var(--font-osw);
  line-height: 1.1em;
  letter-spacing: -0.02em;
}

.service-content-four p {
  font-family: var(--font-pop);
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .service-img {
    width: 100%;
  }
}

.service-backgrond {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-color: transparent;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.service-backgrond::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, #f7f3ec 0%, #f2295b00 100%);
  z-index: -1;
  border-radius: 20px 20px 0 0;
  margin: 0 10px;
}