/*
.site-footer {

  color: #FFF;
  padding: .5rem 0;
  text-align: center;

   Flexbox centering all inside the footer 
   display: flex;
   justify-content: center; 
   align-items: center;  
   text-align: center;     

  &__text {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-size: 10px;

    @mixin atSmall {
      display: inline;
      margin-bottom: 0;
      margin-right: 1rem;
      font-size: 12px;
    }

    @mixin atMedium {
      display: inline;
      margin-bottom: 0;
      margin-right: 1.4rem;
      font-size: 16px;
    }

    &--link {
      &:hover {
        color: blue;
      }
    }
  }


  &__white {
    color: white;
  }
  &__blue {
    color: #2f5572;
  }
  &__orange {
    color: #d59541;
    text-align: center;
  }
  
}
*/

/* Small Screens 530px and up) 
@define-mixin atSmall {
  @media (min-width: 530px) {
    @mixin-content;
  }
}
 Medium and Large Screens 800px and up) 
@define-mixin atMedium {
  @media (min-width: 800px) {
    @mixin-content;
  }
}
 Large Screens 1010px and up) 
@define-mixin atLarge {
  @media (min-width: 1010px) {
    @mixin-content;
  }
}

@define-mixin clearfix {
  &::after {
    content: "";
    clear: both;
    display: table;
  }
}
*/

.carousel_text {
    width: 100%;
    float: left;
    color: #000;
    text-align: left;
    font-size: 16px;
    font-weight: 200;
    margin-left: 0px;
    padding: 10px 0px;
}

.carousel_text a{
     font-weight: 400;
}
.carousel_text a:hover{
    color: #679af5;
}

/* Small Screens 768px and down) */
@media (max-width: 768px) {
    .carousel_text {
        font-size: 12px;
    }
  }
