.services-new-main-page .services-header {
  text-align: center;
}
.services-new-main-page .services-header h2 {
  font-size: 50px;
  font-weight: 700;
  padding: 0.5rem;
}
.services-new-main-page .services-header .sub-title {
  font-size: 20px;
  font-weight: 600;
}
.services-new-main-page .services-header .info {
  padding: 0.75rem;
}
@media (max-width: 768px) {
  .services-new-main-page .services-header h2 {
    font-size: 30px;
  }
  .services-new-main-page .services-header .sub-title {
    font-size: 20px;
  }
}
.services-new-main-page .images {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}
.services-new-main-page .images .each-image {
  position: relative;
}
.services-new-main-page .images .each-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-new-main-page .images .each-image .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(130, 224, 140);
  padding: 1rem;
  text-align: center;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .services-new-main-page .images {
    flex-direction: column;
    gap: 1.5rem;
  }
  .services-new-main-page .images .each-image {
    width: 80%;
    margin: 0 auto;
  }
}.articles-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
}
.articles-section .articles-header {
  text-align: center;
  margin-bottom: 40px;
}
.articles-section .articles-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}
.articles-section .articles-header p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
.articles-section .articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.5rem;
}
.articles-section .articles-grid .article-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.articles-section .articles-grid .article-card:not(.featured) {
  column-gap: 0.5rem;
  font-size: 0.8rem;
}
@media (max-width: 820px) {
  .articles-section .articles-grid .article-card:not(.featured) .article-title {
    font-size: 0.7rem !important;
  }
}
.articles-section .articles-grid .article-description {
  max-height: 120px;
  overflow: hidden;
}
.articles-section .articles-grid .article-image {
  padding: 0.5rem;
}
.articles-section .articles-grid .article-image img {
  width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 1rem;
}
.articles-section .articles-grid .article-content {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}
.articles-section .articles-grid .article-content .article-tags {
  flex: 1;
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.5rem 0;
}
.articles-section .articles-grid .article-content .article-tags .tag {
  background-color: rgba(105, 65, 198, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgb(105, 65, 198);
  letter-spacing: 0.05em;
}
.articles-section .articles-grid .article-content .article-date {
  color: rgb(105, 65, 198);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.articles-section .articles-grid .article-content .article-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2rem;
}
.articles-section .articles-grid .featured .article-content {
  height: 43%;
  padding: 0.5rem;
}
.articles-section .articles-grid .featured .article-image {
  height: 50%;
}
@media (max-width: 890px) {
  .articles-section .articles-grid {
    grid-template-columns: 1fr;
  }
  .articles-section .articles-grid .featured .article-content {
    height: unset;
  }
  .articles-section .articles-grid .featured .article-image {
    height: unset;
  }
}.steps-container {
  max-width: calc(1200px + 2.5rem);
  margin: 3rem auto;
  box-shadow: 0px -33px 69.8px 0px rgba(0, 0, 0, 0.0588235294);
  border-radius: 2rem 2rem 0 0;
  background-image: url("/assets/montain-bg-BsdC9T7h.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 2rem 0;
  position: relative;
  background-size: 100% 80%;
  overflow: hidden;
}
.steps-container .title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.steps-container .start {
  position: absolute;
  bottom: 3rem;
  right: 25%;
  font-size: 2rem;
  font-weight: 800;
}
@media (max-width: 820px) {
  .steps-container .start {
    bottom: 2rem;
    right: 17%;
    font-size: 1.5rem;
  }
}
.steps-container .image-container {
  width: 90%;
  margin: auto;
  position: relative;
}
.steps-container .image-container img {
  width: 100%;
}
.steps-container .image-container .steps-list {
  position: absolute;
  width: 100%;
  height: 65%;
  top: 0;
  display: grid;
  grid-template-rows: 1.3fr 1fr 0.5fr repeat(3, 1fr);
}
.steps-container .image-container .steps-list .each-step {
  position: relative;
  direction: var(--direction);
}
.steps-container .image-container .steps-list .step-title {
  width: max-content;
  font-size: 1.5rem;
  margin-left: var(--marginLeft);
  margin-right: var(--marginRight);
  padding: var(--padding);
  font-weight: 600;
  white-space: pre-line;
}
@media (max-width: 820px) {
  .steps-container .image-container .steps-list .step-title {
    margin-left: var(--marginLeftResponsive);
    margin-right: var(--marginRightResponsive);
    padding: var(--paddingResponsive);
    font-size: 1rem;
  }
}
.steps-container .image-container .steps-list .step-title:hover .badge {
  opacity: 1;
  max-height: 40rem;
  display: grid;
}
@media (max-width: 820px) {
  .steps-container .image-container {
    width: 100%;
  }
  .steps-container .image-container img {
    width: 140%;
    transform: translateX(-15%);
  }
}
.steps-container .image-container .badge {
  position: absolute;
  top: -1rem;
  left: 0rem;
  width: 50%;
  background-color: white;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
  max-height: 0;
  height: 12rem !important;
  display: none;
  border-radius: 1rem;
  padding: 0.5rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  font-size: 1rem;
}
.steps-container .image-container .badge::before {
  content: "";
  position: absolute;
  top: 0rem;
  left: var(--arrow_left);
  width: 20px;
  height: 20px;
  transform: translateY(-50%) rotate(45deg);
  z-index: -1;
  background-color: white;
}
@media (max-width: 820px) {
  .steps-container .image-container .badge {
    width: 70%;
    height: 12rem !important;
  }
}
.steps-container .badge-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #4A7DF2;
  padding: 0 1rem;
}
.steps-container .badge-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  column-gap: 1rem;
  direction: ltr !important;
  padding: 1rem;
}
.steps-container .badge-content .left {
  font-weight: 500;
  font-size: 0.9rem;
}
.steps-container .badge-content .right {
  display: flex;
  align-items: center;
}
.steps-container .badge-content .right img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 820px) {
  .steps-container .badge-content {
    grid-template-columns: 1fr;
  }
  .steps-container .badge-content .right {
    order: -1;
  }
  .steps-container .badge-content .left {
    padding: 0.5rem 0;
  }
}