.certificate-section{
  background-color: #111;
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  padding-bottom: 2rem;
  padding-top: 3rem;
  box-sizing: border-box;
}

.certificate-container{
  margin-top: 3rem;
}

.certificates{
  display: grid;
  gap: 20px;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr;
}

.certificate-item{
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  padding: 10px;
  background-color: #0a0a0a;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.certificate-icon{
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/wheat_batch.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  margin-right: 20px;
  text-align: center;
  font-size: 12px;
}

.icon-content h2{
  margin-bottom: 2px;
  font-weight: 500;
  color: #aaa;
  font-size: 16px;
}

.icon-content p{
  margin-bottom: 2px;
  font-weight: 500;
  color: #ddd;
  font-size: 9px;
}

.icon-content h6{
  margin-bottom: 2px;
  font-weight: 500;
  font-size: 10px;
  color: var(--color-pastel-orange);
}

.hr-line{
  margin: 10px auto;
  border: .2px solid #666;
}

.certificate-details h2{
  color: var(--color-chocolate-orange);
  font-size: 19px;
  font-weight: 500;
  margin: 0;
}

.certificate-details p{
  color: #888;
  font-size: 14px;
  font-weight: 300;
  margin: 0;
}

.certificate-details h3{
  color: #fff;
  font-size: 17px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1080px) {
  .certificates{
    grid-template-columns: 1fr;
  }
  .certificate-icon{
    display: none;
  }
  .certificate-item{
    display: flex;
    align-items: center;
  }
}