.accordion collapse {
  border: 0;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: none;
  color: var(--bs-link-color);
  box-shadow: none;
  border-bottom: none;
}

.accordion-button::after {
  width: auto;
  height: auto;
  content: "+";
  font-size: 40px;
  background-image: none;
  font-weight: 100;
  color: #1b6ce5;
  transform: translateY(-4px);
}

.accordion-button:not(.collapsed)::after {
  width: auto;
  height: auto;
  background-image: none;
  content: "-";
  font-size: 48px;
  transform: translate(-5px, -4px);
  transform: rotate(0deg);
}

.section-title>div:first-of-type {
  border-left: 6px solid var(--bs-success);
  padding-left: 3rem;
}

.section-title {
  padding-top: 48px;
}

.service-block {
  position: relative;
  min-height: 350px;
  margin-bottom: 2rem;

  .btn {
    transition: all 0.5s ease;

    &:hover {
      background-color: hsl(0, 0%, 86%) !important;
    }
  }
}

.service-block .inner-box::after {
  content: '';
  position: absolute;
  background-color: #2f54cf;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  transition: all 0.5s ease;
  transform: scale(0);
}

.service-block:hover {
  .btn {
    background-color: #f5f6f8;
    color: #000;
  }
}

.service-block:hover .inner-box::after {
  transform: scale(2);
}

.service-block.block-1 .inner-box::after {
  border-top-left-radius: 100%;
  transform-origin: right bottom;
}

.service-block.block-2 .inner-box::after {
  border-top-right-radius: 100%;
  transform-origin: left bottom;
}

.service-block.block-3 .inner-box::after {
  border-bottom-left-radius: 100%;
  transform-origin: right top;
}

.service-block.block-4 .inner-box::after {
  border-bottom-right-radius: 100%;
  transform-origin: left top;
}

.service-block .image-block {
  position: absolute;
  bottom: 0;
  width: 271px;
  height: 271px;
}

.service-block .image-block .image {
  overflow: hidden;
  height: 100%;
}

.service-block .image-block img {
  object-fit: cover;
  transition: all .3s ease;
  height: auto;
  min-width: 100%;
  transform: scale(1.1);
}

.service-block .inner-box {
  position: absolute;
  overflow: hidden;
  height: 100%;
  transition: all .3s ease;
  z-index: 2;
  background-color: #302f3b;
  border: 1px solid hsl(0deg 0% 75.29% / 8%);
}

.service-block .image-block svg {
  position: absolute;
  right: auto;
  top: -10px;
  width: 88px;
  height: 88px;
  background-color: #282828;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--bs-success);
  font-size: 50px;
  box-shadow: 0 0 60px rgba(71, 68, 95, 0.44);
  border-radius: 50%;
  z-index: 2;
  transition: all .3s ease;
  padding: 1rem;
}

.service-block:hover .image-block img {
  transform: scale(1.2);
}

.service-block:hover .image-block svg {
  transform: rotateZ(360deg);
}

.service-block .inner-box .service-block-content {
  a {
    position: relative;
  }
}

@media screen and (max-width: 992px) {
  .service-block {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 992px) {
  .service-block .inner-box {
    display: flex;
    flex-direction: column-reverse;
    padding: 0 !important;
    position: relative;
  }
}

@media screen and (max-width: 992px) {
  .service-block .inner-box .image-block {
    position: relative;
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .service-block .inner-box .image-block .image {
    border-radius: 0 !important;
  }
}

@media screen and (max-width: 992px) {
  .service-block .inner-box .service-block-content {
    padding: 50px 20px 20px 20px;
  }
}

@media screen and (max-width: 992px) {
  .service-block .inner-box .image-block svg {
    bottom: -40px;
    left: 50% !important;
    transform: translate(-50%, 0) !important;
    top: auto !important;
  }
}