/* breakpoints */
.link-list .component-content a {
  color: #a23b94 !important;
}

.link-list .component-content a:hover, .link-list .component-content a:focus, .link-list .component-content a:active {
  color: #2b3c8c !important;
}

.link-list.text-white .component-content a {
  color: #fff !important;
}

.link-list.text-white .component-content a:hover, .link-list.text-white .component-content a:focus {
  color: #78c6b0 !important;
}

.link-list.text-white .component-content a:active {
  color: #cddb26 !important;
}

.link-list.text-yellow > .component-content a {
  color: #cddb26 !important;
}

.link-list.text-yellow > .component-content a:hover, .link-list.text-yellow > .component-content a:focus, .link-list.text-yellow > .component-content a:active {
  color: #78c6b0 !important;
}

.link-list.text-darkgray > .component-content a {
  color: #231f20 !important;
}

.link-list.text-darkgray > .component-content a:hover, .link-list.text-darkgray > .component-content a:focus, .link-list.text-darkgray > .component-content a:active {
  color: #2b3c8c !important;
}

.link-list.text-black > .component-content a {
  color: #000 !important;
}

.link-list.text-black > .component-content a:hover, .link-list.text-black > .component-content a:focus, .link-list.text-black > .component-content a:active {
  color: #2b3c8c !important;
}

.button-group.link-list {
  width: 100%;
}

.button-group.link-list > .component-content {
  padding: 0;
  border-radius: 0;
  border: 0;
  background-color: transparent;
}

.button-group.link-list > .component-content > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 767.9px) {
  .button-group.link-list > .component-content > ul {
    display: block;
  }
}

.button-group.link-list > .component-content > ul > li {
  width: 100%;
}

.button-group.link-list > .component-content > ul > li:hover + li a::after, .button-group.link-list > .component-content > ul > li:active + li a::after, .button-group.link-list > .component-content > ul > li:focus + li a::after, .button-group.link-list > .component-content > ul > li:active:focus + li a::after {
  display: none;
}

.button-group.link-list > .component-content > ul > li a {
  display: block;
  text-decoration: none;
  padding: 40px 0;
  text-align: center;
  border-radius: 40px;
  background-color: #a23b94;
  color: #fff !important;
  text-transform: uppercase;
  font-family: 'Gotham Rounded', 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 0;
  letter-spacing: 2px;
  position: relative;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (max-width: 767.9px) {
  .button-group.link-list > .component-content > ul > li a {
    border-radius: 25px !important;
    padding: 18px 0;
    margin-bottom: 25px;
    font-size: 1rem;
  }
}

.button-group.link-list > .component-content > ul > li a:hover, .button-group.link-list > .component-content > ul > li a:active, .button-group.link-list > .component-content > ul > li a:focus {
  background-color: #78c6b0;
  color: #231f20 !important;
}

.button-group.link-list > .component-content > ul > li a:focus {
  outline: 0;
  box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 1);
  border: 1px solid #000000;
}

.button-group.link-list > .component-content > ul > li a::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: #78c6b0;
  left: 1px;
  top: 20px;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media screen and (max-width: 767.9px) {
  .button-group.link-list > .component-content > ul > li a::after {
    display: none;
  }
}

.button-group.link-list > .component-content > ul > li:first-child a::after {
  display: none;
}

@media screen and (max-width: 767.9px) {
  .button-group.link-list > .component-content > ul > li:last-child a {
    margin-bottom: 0;
  }
}

.button-group.link-list > .component-content > ul > li:not(:first-child) a {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.button-group.link-list > .component-content > ul > li:not(:last-child) a {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* breakpoints */
.link-list.list-vertical {
  border-radius: 0;
  margin-bottom: 2rem;
}

.link-list.list-vertical > .component-content {
  background-color: transparent;
  color: inherit;
  border-radius: 0;
  padding: 0;
  border: 0 !important;
}

.link-list.list-vertical > .component-content h3 {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  padding-bottom: 0.25rem;
  letter-spacing: 0;
}

.link-list.list-vertical > .component-content ul {
  padding-left: 0;
}

.link-list.list-vertical > .component-content ul > li {
  padding-bottom: 0.5rem;
  margin-top: 0;
  display: block;
}

.link-list.list-vertical > .component-content ul > li a {
  font-weight: 500 !important;
  padding-left: 0;
  color: #a23b94;
  line-height: 1rem;
  font-size: 1rem;
  padding-top: 0;
  padding-bottom: 0;
}

.link-list.list-vertical > .component-content ul > li a:hover, .link-list.list-vertical > .component-content ul > li a:focus, .link-list.list-vertical > .component-content ul > li a:active {
  background-color: transparent;
  color: #2b3c8c;
}

.link-list.list-utility {
  border-radius: 0;
}

.link-list.list-utility > .component-content {
  background-color: transparent;
  color: inherit;
  border-radius: 0;
  padding: 0;
  border: 0 !important;
}

.link-list.list-utility > .component-content ul {
  padding-left: 0;
}

.link-list.list-utility > .component-content ul > li {
  padding-bottom: 10px;
  margin-top: 0;
  display: inline;
}

.link-list.list-utility > .component-content ul > li > div[class*="sc"] {
  display: inline;
}

.link-list.list-utility > .component-content ul > li .field-link {
  display: inline;
}

.link-list.list-utility > .component-content ul > li:first-child .field-link a {
  border-left: 0;
  padding-left: 0;
}

.link-list.list-utility > .component-content ul > li .field-link a {
  display: inline;
  color: #231f20;
  text-decoration: none;
  padding: 0 8px;
  border-left: 1px solid #fff;
  font-size: 0.875rem;
}

.link-list.list-utility > .component-content ul > li .field-link a:hover, .link-list.list-utility > .component-content ul > li .field-link a:active, .link-list.list-utility > .component-content ul > li .field-link a:focus {
  color: #2b3c8c;
  text-decoration: none;
  background-color: transparent;
}

.link-list.list-utility > .component-content ul > li .field-link a:focus {
  outline: 0;
  box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 1);
  border: 1px solid #000000;
}

.link-list.list-utility.text-white > .component-content ul > li a {
  color: #fff !important;
}

.link-list.list-utility.text-white > .component-content ul > li a:hover, .link-list.list-utility.text-white > .component-content ul > li a:focus, .link-list.list-utility.text-white > .component-content ul > li a:active {
  color: #78c6b0 !important;
}

.link-list.list-utility.text-yellow > .component-content ul > li a {
  color: #cddb26 !important;
}

.link-list.list-utility.text-yellow > .component-content ul > li a:hover, .link-list.list-utility.text-yellow > .component-content ul > li a:focus, .link-list.list-utility.text-yellow > .component-content ul > li a:active {
  color: #78c6b0 !important;
}

.link-list.list-utility.text-black > .component-content ul > li a {
  color: #000 !important;
}

.link-list.list-utility.text-black > .component-content ul > li a:hover, .link-list.list-utility.text-black > .component-content ul > li a:focus, .link-list.list-utility.text-black > .component-content ul > li a:active {
  color: #2b3c8c !important;
}

.link-list.list-utility.text-darkgray > .component-content ul > li a {
  color: #231f20 !important;
}

.link-list.list-utility.text-darkgray > .component-content ul > li a:hover, .link-list.list-utility.text-darkgray > .component-content ul > li a:focus, .link-list.list-utility.text-darkgray > .component-content ul > li a:active {
  color: #2b3c8c !important;
}
