#sertificate-banner .title-sertificate {
  font-family: "Blender Pro", "Arial", sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 90%;
}
@media screen and (min-width: 1000px) {
  #sertificate-banner .title-sertificate {
    font-size: 60px;
  }
}
@media screen and (min-width: 1200px) {
  #sertificate-banner .title-sertificate {
    font-size: 88px;
  }
}
#sertificate-banner .text-sertificate {
  font-size: 12px;
  line-height: 116%;
}
@media screen and (min-width: 1000px) {
  #sertificate-banner .text-sertificate {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  #sertificate-banner .text-sertificate {
    font-size: 22px;
  }
}

.sertificate-banner {
  margin: 10px 0;
  background: var(--cl-shadow);
  color: var(--cl-light);
  z-index: 0;
}
.sertificate-banner .container {
  padding: 0;
  min-height: inherit;
}

.sertificate-banner__wrapper {
  display: block;
  padding: 16px 10px;
  width: 100%;
  min-height: 160px;
  border-radius: 16px;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  z-index: 0;
}
.sertificate-banner__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: no-repeat,
    linear-gradient(320deg, var(--cl-accent) -70%, transparent 60%);
  filter: blur(27px), var(--cl-abyss);
}
@media screen and (min-width: 1000px) {
  .sertificate-banner__wrapper {
    padding: 60px 20px;
    min-height: auto;
  }
  .sertificate-banner__wrapper::after {
    background: no-repeat,
      linear-gradient(
        270deg,
        transparent 10%,
        var(--cl-accent) 30%,
        transparent 50%
      );
    filter: blur(113px);
  }
}
@media screen and (min-width: 1400px) {
  .sertificate-banner__wrapper {
    padding: 60px 70px;
  }
}

.sertificate-banner__info-wrapper {
  min-width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1000px) {
  .sertificate-banner__info-wrapper {
    align-items: center;
    max-width: clamp(522px, 70%, 600px);
  }
}

.sertificate-banner__title-block {
  margin-bottom: 6px;
}

.sertificate-banner__text-block {
  max-width: clamp(220px, 70%, 1000px);
}

.sertificate-banner__link {
  flex: 0 0 30px;
  width: 30px;
}
.sertificate-banner__link:hover svg {
  opacity: 0.5;
}
.sertificate-banner__link svg {
  width: 100%;
  height: auto;
  fill: var(--cl-light);
  transition: var(--transition-main);
}
@media screen and (min-width: 1000px) {
  .sertificate-banner__link {
    flex: 0 0 106px;
    width: 106px;
  }
}

.sertificate-banner__image-block {
  width: 143px;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  right: -20px;
  bottom: -20px;
}
.sertificate-banner__image-block img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1000px) {
  .sertificate-banner__image-block {
    width: 449px;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
  }
}
