#body-bg {
  background-image: url("../../assets/img/body-bg.jpg");
  background-repeat: repeat-x;
}

.att-text {
  font-family: 'Roboto Condensed';
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
}

@media (min-width: 576px) {
  .att-text {
    font-size: calc(18px + 1.75vw);
  }
}

@media (min-width: 768px) {
  .att-text {
    font-size: calc(20px + 2.3vw);
  }
}

@media (min-width: 992px) {
  .att-text {
    font-size: calc(21px + 3vw);
  }
}

@media (min-width: 1400px) {
  .att-text {
    font-size: 64px;
  }
}

.att-text-icons {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
}

@media (min-width: 1200px) {
  .att-text-icons {
    font-size: 34px;
  }
}

.att-text-sub {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .att-text-sub {
    font-size: 26px;
  }
}

@media (min-width: 1200px) {
  .att-text-sub {
    font-size: 31px;
  }
}

@media (min-width: 1400px) {
  .att-text-sub {
    font-size: 36px;
  }
}

/* MA Buttons */

#maButtons .box {
  position: relative;
  overflow: hidden;
  width: 100%;
  color: #000;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
  cursor: pointer;
}

#maButtons .box * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

#maButtons .box img {
  width: 100%;
}

#maButtons .box:hover img {
  opacity: .5;
}

#maButtons .box:before {
  display: none;
}

@media (min-width: 768px) {
  #maButtons .box:before {
    display: block;
    position: absolute;
    content: '';
    height: 74%;
    width: 100%;
    z-index: 1;
    top: -44%;
    left: -57%;
    border-radius: 50%;
    background: #d5ddee;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.5);
  }
}

#maButtons .box:hover:before, .box.hover:before {
  -webkit-transform: scale(2.0,2.0);
  transform: scale(2.0,2.0);
}

#maButtons .box .caption {
  display: none;
}

@media (min-width: 768px) {
  #maButtons .box .caption {
    display: block;
    padding-left: 10px;
    position: absolute;
    left: 1%;
    top: 11%;
    width: 60%;
    z-index: 1;
    opacity: 0;
  }
}

#maButtons .box .caption p {
  font-family: 'Roboto Condensed';
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  text-align: left;
}

@media (min-width: 992px) {
  #maButtons .box .caption p {
    font-size: 19px;
  }
}

@media (min-width: 1200px) {
  #maButtons .box .caption p {
    font-size: 17px;
  }
}

@media (min-width: 1400px) {
  #maButtons .box .caption p {
    font-size: 19px;
  }
}

#maButtons .box:hover .caption {
  opacity: 1;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

#maButtons .top-caption {
  position: relative;
  z-index: 2;
  padding: 7px;
  color: #fff;
  background: #ff0000;
  text-shadow: 1px 1px rgba(0,0,0,0.5);
}

#maButtons .top-caption p {
  text-align: center;
  line-height: 1.4;
  margin-bottom: 0;
  font-size: calc(12.5px + 1vw);
  font-weight: 700;
}

@media (min-width: 576px) {
  #maButtons .top-caption p {
    font-size: 18px;
    font-weight: 700;
  }
}

@media (min-width: 768px) {
  #maButtons .box .top-caption p {
    font-size: 19px;
  }
}

@media (min-width: 1400px) {
  #maButtons .box .top-caption p {
    font-size: 22px;
  }
}

#maButtons .box .bottom-caption {
  width: 100%;
  padding: 7px;
  color: #fff;
  background: #ff0000;
  text-shadow: 1px 1px rgba(0,0,0,0.5);
}

#maButtons .box .bottom-caption p {
  text-align: center;
  margin-bottom: 0;
  font-size: calc(12.5px + 1vw);
  line-height: 1.4;
  font-weight: 700;
}

@media (min-width: 576px) {
  #maButtons .box .bottom-caption p {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  #maButtons .box .bottom-caption p {
    font-size: 19px;
  }
}

@media (min-width: 1400px) {
  #maButtons .box .bottom-caption p {
    font-size: 22px;
  }
}

#maButtons .box .icon {
  display: none;
}

@media (min-width: 768px) {
  #maButtons .box .icon {
    position: absolute;
    display: block;
    top: 53px;
    left: 10px;
    z-index: 5;
    opacity: .3;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
}

#maButtons .box:hover .icon {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

