.cimg {
  position: inherit;
  max-height: 40em;
  object-fit: cover;
  width: 100%;
  min-width: 100%;
  max-width: 90vw;
}
.fc .fc-button,
.fc .fc-button-primary {
  font-size: 0.7em !important;
}
/* Sponsors */

/* Main Section Styles */
#wrapper {
  display: flex;
  flex-direction: column;
}

.sponsor {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.sponsor-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.sponsor-logo {
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.sponsor-description {
  max-height: 400px;
  min-height: 400px;
}

.actions {
  margin-top: auto;
}

.actions .button.style1 {
  /* padding: 10px 20px; */
  border-radius: 5px;
  text-decoration: none;
}
.onshape {
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.wsgc {
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Footer */

/* Container styles */
#social {
  display: flex;
  flex-direction: column;
}

/* List styles */
.social-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* Apply transition to the social link */
.social-link {
  text-decoration: none;
  padding: 5px;
  margin: 3px;
  border-radius: 5px;
  border: solid 1px rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease; /* Transition for hover and active states */
}

/* Hover state */
.social-link:hover {
  background-color: rgba(255, 255, 255, 0.1); /* Change background color on hover */
  transform: scale(1.05); /* Slightly enlarge the link on hover */
}

/* Active state (when clicked) */
.social-link:active {
  transform: scale(0.98); /* Slightly shrink the link when clicked */
  background-color: rgba(255, 255, 255, 0.2); /* Darker background when active */
}

/* Icon styles */
.social-icon {
  width: 35px;
}

.social-link:first-child .social-icon {
  width: 25px;
}

.card-like {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: 1rem;
  overflow: hidden;
}

.image.small {
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Certification Grid Layout */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem;
}

.cert-item {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  overflow: hidden;
  height: 100%;
}

.cert-section {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 1rem;
}

.cert-image {
  width: 100%;
  margin-bottom: 1rem;
}


.cert-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 0.25rem;
}

.cert-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cert-title {
  margin-bottom: 1rem;
}

.cert-desc {
  flex: 1;
  margin-bottom: 1rem;
}

.cert-actions {
  margin-top: auto;
  padding: 0;
  display: flex;
  justify-content: center;
}

/* Responsive Grid */
@media screen and (max-width: 980px) {
  .certifications-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .cert-image img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    border-radius: 0.25rem;
  }
}

@media screen and (max-width: 736px) {
  .certifications-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  
  .cert-image img {
    height: 400px;
  }
}

