
/* -------- */
/* Button 1 */
/* -------- */

.button-1 {
  width: 100%;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 1.9rem;
  color: #27AAE1;
  background-color: transparent;
  border: 0.1rem solid #27AAE1;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  padding: 1.4rem 4rem;
  -webkit-transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
  -o-transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
}

ul + .button-1 {
  margin-top: 4.4rem;
}

@media (min-width: 768px) {
  .button-1 {
    width: auto;
    min-width: 22rem;
  }

  ul + .button-1 {
    margin-top: 5rem;
  }
}

.button-1:hover {
  color: #FFFFFF;
  background-color: #27AAE1;
  border: 0.1rem solid #27AAE1;
}

.col-3 + .button-1 {
    margin-top: 2.8rem;
}

p + .button-1,
.button-1 + .button-1,
br + .button-1,
.small_sidebar + .button-1 {
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .col-3 + .button-1 { 
    margin-top: 5.0rem;
  }

  p + .button-1,
  .button-1 + .button-1,
  .small_sidebar + .button-1 {
    margin-top: 3.75rem;
  }
}

.button-1--disabled {
  display: none;
}

/* -------- */
/* Button 2 */
/* -------- */

.button-2 {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  line-height: 1;
  color: #27aae1;
  text-decoration: none !important;
  cursor: pointer;
  position: relative;
  padding-left: 1.1rem;
  display: inline-block;
  padding-bottom: 0.9rem;
}

.featured-video .button-2 {
  color: #0d1a41;
}

.button-2:before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0;
}

.button-2:after {
  content: '';
  background-color: #27AAE1;
  width: calc(100% - 1.1rem);
  height: 0.1rem;
  position: absolute;
  left: 1.1rem;
  bottom: 0;
  -webkit-transition: width 0.15s ease-out;
  -o-transition: width 0.15s ease-out;
  transition: width 0.15s ease-out;
}

.featured-video .button-2:after {
  background-color: #0d1a41;
}

.button-2:hover:after {
  width: 20%;
}

/* small */
.button-2--small {
  padding-bottom: 0.6rem;
}

.section__header .button-2 {
  margin-left: auto;
}

.orange {
  background-image:linear-gradient(90deg, #feb800 0%, #f58f12 90%)
}