.service-background {
  background-color: #001f36;
  margin: 0 10px;
  border-radius: 10px;
}

.choose-content {
  text-align: left;
}

.choose-content-second {
  text-align: right;
}

.number-choose span {
  color: #cfaf6e;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.1em;
  letter-spacing: -0.02em;
  font-family: var(--font-osw);
}

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

.choose-content p {
  font-family: var(--font-pop);
  color: #fff;
  font-size: 16px;
}

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

/* image */
.logo-container {
  position: absolute;
  width: 110px;
  height: 110px;
  background: #001f36;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
}

.text-path-svg {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 11px;
  left: 11px;
}

.circular-path {
  fill: none;
}

.circular-text {
  font-family: var(--font-pop);
  font-size: 39px;
  font-weight: bold;
  fill: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.center-star {
  position: absolute;
  font-size: 48px;
  color: white;
  z-index: 10;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.star-icon {
  width: 48px;
  height: 48px;
  fill: white;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

@media (max-width: 992px) {

    .content-choose {
        margin-top: 60px;
    }

    .choose-content-second {
        text-align: left;
    }

    .choose-img {
        height: 300px;
        object-fit: cover;
        margin-top: 40px;
    }

    .logo-container {
        top : 80%;
    }

}