/*--------------------------------------------------------------
# title Section
--------------------------------------------------------------*/
.title {
  background-color: #ebffff;
  padding: 10vh;
}
.card-content-title {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 3rem !important;
  margin-top: 20px;
  margin-bottom: 20px;
}
.card-content-subtitle, .section-subtitle {
  font-size:1rem;
  line-height: 2rem;
  color: #00AAFF;
}
.card-content-desc, .section-desc {
  font-size:1.2rem;
  line-height: 2rem;
  color: #000000BF;
}
#card-description-img-1 {
  background-image:  
    url('../img/partners/partners-background-1.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ebffff;
  height: 420px;
}
.circle-wrapper {
  width: calc(100vw - var(--scrollbar-width, 0px));
  height: 10vh; 
  overflow: hidden;
  background-color: #ebffff;
}
.circle {
  width: calc(100vw - var(--scrollbar-width, 0px));
  height: 20vh;
  background-color: #fff;
  border-radius: 70%;
}
.partner-card {
  width: 95%;
  padding: 30px 20px;
  background-color: white;
  border-radius: 1rem;
  text-align: center;
  color: #5F475ABF;
}
.partner-card a {
  color: #5F475ABF;
}
.partner-card a:hover {
  color: #000000BF;
}
.cert-card {
  width: 90%;
  padding: 30px 10px;
  margin-top: 50px;
  background-color: #ebffff;
  border-radius: 1rem;
  text-align: center;
  color: #5F475ABF;
}
.cert-card a {
  color: #5F475A6E !important;
  cursor: pointer;
  text-decoration: underline !important;
}
.partner-card p {
  padding-top: 30px;
}
.cert-card p {
  padding-top: 30px;
  font-size: 1rem;
}
.partner-img {
  width: 160px;
}
.cert-img {
  width: 80px;
}
.dvPartnerImg, .dvCertImg{
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.dvCertImg{
  margin-top: 20px;
}
.section-title{
  font-size: 3rem;
}

@media (max-width: 767.98px) {
  .title {
    padding: 0;
  }  
  .card-content-title, .section-title {
    font-size: 1.5rem;
    line-height: 2rem !important;
  }
  #card-description-img-1 {
    height: 50vh;
    background-size: contain;
  }
  .card-content-desc, .section-desc {
    font-size:1rem;
    line-height: 1.8rem;
    color: #000000BF;
  }
  .partner-card {
    width: 90%;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.contact .contact-item {
  background-color: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border-radius: 25px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.contact .contact-item:hover {
  box-shadow:
    0 8px 15px rgba(0, 0, 0, 0.1), 
    0 -4px 10px rgba(0, 0, 0, 0.05);
  transform: translateY(2px);
}