:root {
  --primary-color: #007bff;
  /* Màu của tiêu đề */
  --text-color: #045875;
  /* Màu của văn bản */
  --background-color: #fff;
  /* Màu của nền */
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
}

.feature-section {
  padding: 1rem;
  box-sizing: border-box;
  max-height: 100vh;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#main-title {
  font-size: 48px;
  color: var(--text-color);
  margin-bottom: 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  /* Cho phép các phần tử xuống dòng khi cần */
}

#schwind_atos-logo {
  max-height: 48px;
  height: 100%;
  width: auto;
}

.content-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 150px);
  width: 100%;
}

.image-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#main-image {
  width: 48%;
  height: auto;
  position: relative;
  z-index: 2;
}

.circle-container {
  position: absolute;
  top: 25%;
  left: 50%;
  width: 60%;
  /* Điều chỉnh kích thước đường tròn */
  height: 60%;
  /* Điều chỉnh kích thước đường tròn */
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: rotate 18s linear infinite;
}

.circle {
  fill: none;
  stroke-width: 0.5;
  stroke-dasharray: 35, 20;
  stroke: url(#circleGradient);
}

.points-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.point {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}

.point-circle {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #FFFFFF, #9FC4D4);
  border-radius: 50%;
}

.point-text {
  position: absolute;
  min-width: 510px;
  width: 100%;
  font-size: 17px;
  line-height: 1.2;
  font-weight: bold;
}

.point:nth-child(-n+4) .point-text {
  right: 100%;
  text-align: right;
  padding-right: 10px;
}

.point:nth-child(n+5) .point-text {
  left: 100%;
  text-align: left;
  padding-left: 10px;
}

.point.left {
  flex-direction: row-reverse;
}

.point.right {
  flex-direction: row;
}

.point.left .point-text {
  text-align: right;
}

.point.right .point-text {
  text-align: left;
}

.feature-points .point circle {
  fill: #FFFFFF;
  stroke: #9FC4D4;
  stroke-width: 2;
}

.feature-points .point text {
  fill: var(--text-color);
  font-size: 12px;
  vertical-align: middle;
}

.feature-points .right text {
  text-anchor: start;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@media (max-width: 1200px) {
  #main-title {
    font-size: 40px;
  }

  #schwind_atos-logo {
    max-height: 40px;
  }

  .point-text {
    font-size: 16px;
    min-width: 250px;
    line-clamp: 2;
    width: 100%;
    white-space: normal;
    word-wrap: break-word;
  }

  .content-container {
    max-width: 90%;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  #main-title {
    font-size: 30px;
  }

  #schwind_atos-logo {
    max-height: 30px;
    width: 100%;
  }

  .point-text {
    font-size: 15px;
    min-width: 250px;
    line-clamp: 2;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .content-container {
    max-width: 800px !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: start !important;
  }

  .image-and-points-container {
    max-width: 788px !important;
    width: 100% !important;
  }

  #main-title {
    font-size: 30px;
  }

  #schwind_atos-logo {
    max-height: 30px;
    width: 100%;
  }

  .point-text {
    font-size: 13px !important;
    min-width: 170px !important;
    max-width: 250px !important;
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .feature-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    min-height: 100vh;
    margin: 20px auto;
    justify-content: start;
    overflow-y: auto !important;
  }

  .content-container {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
  }

  #main-title {
    font-size: 24px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
  }

  #schwind_atos-logo {
    max-height: 35px;
    margin-left: 0;
    margin-top: 10px;
  }

  .image-and-points-container {
    max-width: 480px !important;
  }

  .image-container {
    width: 90% !important;
    height: 90% !important;
    top: 90% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  #main-image {
    width: 80%;
    object-fit: contain;
  }

  .circle-container {
    display: block !important;
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
  }

  .points-container {
    top: 90% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
  }

  .point {
    display: flex !important;
    align-items: center;
    margin-bottom: 20px;
    width: 100% !important;
    transform: none !important;
    flex-direction: row !important;
    padding-left: 15px;
  }

  .point-circle {
    margin-right: 15px;
    margin-left: 0;
    flex-shrink: 0;
  }

  .point-text {
    text-align: left !important;
    margin: 0;
    padding: 0;
    min-width: 0;
    width: calc(100% - 54px);
    /* 24px for circle width + 15px for left margin + 15px for right padding */
    left: auto !important;
    right: auto !important;
  }

  .point.left .point-text,
  .point.right .point-text {
    text-align: left !important;
    left: auto !important;
    right: auto !important;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  #main-title {
    font-size: 20px;
  }

  #schwind_atos-logo {
    max-height: 30px;
  }

  .point-text {
    font-size: 14px;
  }

  .image-container {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  #main-title {
    font-size: 18px;
  }

  #schwind_atos-logo {
    max-height: 25px;
  }

  .image-container {
    max-width: 250px;
  }
}

@media (max-width: 320px) {
  #main-title {
    font-size: 16px;
  }

  #schwind_atos-logo {
    max-height: 20px;
  }

  .point-text {
    font-size: 12px;
  }

  .image-container {
    max-width: 200px;
  }
}

.image-and-points-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.points-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.aos-animate {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.aos-init[data-aos][data-aos].aos-animate {
  transform: unset;
}