@charset "UTF-8";

.c-section > * {
  position: relative;
  z-index: 20;
}

.c-btn-border {
  font-size: 14px;
  width: auto;
  max-width: 100%;
  background-color: #fff;
  border: 1px solid #008334b3;
  border-radius: 6px;
  color: #008334b3;
  display: flex;
  justify-content: center;
  font-weight: bold;
  padding: 6px 10px;
  position: relative;
  transition: background-color 0.3s ease;
}

.c-btn-border:hover {
  background-color: #008334b3;
  color: #fff;
  text-decoration: none !important;
}

.c-btn-border i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.c-btn-border i.--left {
  left: 20px;
  right: unset;
}

.c-btn-border.is-active {
  background-color: #008334b3;
  color: #fff;
}

@media screen and (min-width: 992px) {
  .c-btn-border {
    padding: 16px 20px;
  }

  .c-btn-border i {
    right: 20px;
  }
}

.c-after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.c-after__dots {
  --zindex: 1;

  background-color: #fcfcfc;
  background-image: radial-gradient(#ccc 10%, transparent 20%),
    radial-gradient(#ccc 10%, transparent 20%);
  background-position: 0 0, 3px 3px;
  background-size: 6px 6px;
  z-index: var(--zindex);
}

.c-list,
.c-list li {
  list-style: none !important;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

.c-list {
  margin: 1em 0;
}
