.partners-title {
  display: inline-block;
  border-bottom: var(--green-color, #aed696) 4px solid;
  padding: 10px 0px;
}

.partners-buttons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 100px;
  padding-bottom: 300px;
  align-items: center;
}

@media (max-width: 768px) {
  .partners-buttons {
    padding-top: 50px;
    padding-bottom: 300px;
  }
}

.partners-buttons a {
  padding: 20px;
  background-color: var(--links-color, #7bb9ce);
  color: #fff;
  font-size: 22px;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  width: calc(33.33% - 20px);
  margin: 10px 0px;
}

@media (max-width: 768px) {
  .partners-buttons a {
    width: 100%;
  }
}

.authors {
  display: flex;
  flex-wrap: wrap;
}

.authors a {
  display: inline-block;
  width: calc(100% / 3);
  padding: 10px;
  text-align: center;
  margin: 18px 0px;
}

.authors a img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 18vw;
  height: 18vw;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .authors a img {
    height: 35vw;
    width: 35vw;
  }
}

.authors a span {
  display: block;
}

.authors a .title {
  font-size: 26px;
  line-height: 32px;
  margin: 10px 0px;
}

@media (max-width: 768px) {
  .authors a {
    width: 50%;
    margin: 25px 0px;
  }
}

.author-details {
  padding: 10px;
  text-align: center;
  margin-bottom: 18px;
  font-size: 16px;
}

.author-details img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 18vw;
  height: 18vw;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .author-details img {
    height: 35vw;
    width: 35vw;
  }
}

.author-details span {
  display: block;
}

.author-details .title {
  font-size: 26px;
  line-height: 32px;
  margin: 10px 0px;
}

@media (max-width: 768px) {
  .author-details {
    width: 100%;
    margin: 25px 0px;
  }

    .write-author {
        color: var(--links-color, #7bb9ce);
        font-size: 20px;
    }
}

.author-details .social-media {
  margin-top: 20px;
}

.author-details .social-media a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--links-color, #7bb9ce);
  color: var(--links-color, #7bb9ce);
  font-size: 26px;
  margin: 0px 4px;
}

.author-articles .article {
  display: flex;
  padding: 30px 0px;
  border-bottom: 1px solid #999;
}

.author-articles .article .img a {
  display: inline-block;
  width: 25vw;
  position: relative;
  padding-top: 65%;
}

.author-articles .article .img img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.author-articles .article .details {
  padding: 0px 15px;
}

.author-articles .article .title {
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
}

.author-articles .article .body {
  font-size: 16px;
}

.write-author {
  color: var(--links-color, #7bb9ce);
}

