/* Quote styling */

#maQuote {
  font-size: 18px;
  color: #fff;
  text-shadow: 1px 1px rgba(0,0,0,0.7);
}

@media (min-width: 576px) {
  #maQuote {
    font-size: 20px;
  }
}

#maQuote .quote-text-b {
  font-family: 'Roboto Condensed';
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

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

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

@media (min-width: 992px) {
  #maQuote .quote-text-b {
    font-size: calc(13px + 2vw);
  }
}

@media (min-width: 1400px) {
  #maQuote .quote-text-b {
    font-size: 50px;
  }
}

#maQuote .testimonial {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

#maQuote .testimonial::before {
  position: absolute;
  top: 5px;
  left: 5px;
  content: url("../../assets/img/quote.svg");
  z-index: 1;
  transform: scale(.8);
  opacity: .2;
}

@media (min-width: 1200px) {
  #maQuote .testimonial::before {
    top: 15px;
    left: 18px;
    transform: scale(.95);
  }
}

@media (min-width: 1400px) {
  #maQuote .testimonial::before {
    top: 31px;
    left: 39px;
    transform: scale(1.2);
  }
}

#maQuote .bubble {
  position: relative;
  padding: 20px;
  width: auto;
  border-radius: 12px;
  border: 4px solid #000;
  background-color: #870000;
}

#maQuote .bubble p {
  position: relative;
  z-index: 2;
}

#maQuote .bubble p:last-child {
  margin-bottom: 0;
}

#maQuote .bubble:before, .bubble:after {
  display: block;
  position: absolute;
  right: 74px;
  bottom: -18px;
  width: 0;
  height: 0;
  content: "\0020";
  border: solid 20px transparent;
  border-bottom: 0;
  border-top-color: #870000;
  overflow: hidden;
  z-index: 2;
}

@media (min-width: 1200px) {
  #maQuote .bubble:before, .bubble:after {
    right: 96px;
  }
}

#maQuote .bubble:before {
  bottom: -24px;
  border-top-color: #000;
  z-index: 1;
}

#maQuote .read-more-but {
  font-size: 16px;
  position: absolute;
  width: 120px;
  margin-top: 15px;
  margin-left: 6%;
  z-index: 999;
  text-shadow: none;
}

@media (min-width: 576px) {
  #maQuote .read-more-but {
    width: 260px;
  }
}

#maQuote .bubble-sig {
  position: relative;
  margin-top: 14px;
  margin-right: 7px;
  font-size: 23px;
  font-family: 'Nothing You Could Do';
  text-align: right;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  #maQuote .bubble-sig {
    margin-right: 28px;
  }
}

#maQuote .bubble-sig span {
  display: block;
  font-weight: normal;
  font-size: 0.9em;
}

/* Special Button */

.special-but-cont {
  position: relative;
}

.special-but {
  right: 0px;
  bottom: 0px;
  position: absolute;
  width: calc(66px + 20vw);
}

@media (min-width: 576px) {
  .special-but {
    width: 275px;
  }
}

@media (min-width: 1200px) {
  .special-but {
    width: 290px;
  }
}

@media (min-width: 768px) {
  .special-but {
    right: 72px;
  }
}

@media (min-width: 992px) {
  .special-but {
    right: 0;
  }
}

/* Private Schedule Button */

.schedule-button a {
  color: #fff;
}

.schedule-button a:hover {
  color: #fff;
}

.schedule-button {
  font-size: calc(12px + 1.5vw);
  text-align: center;
  font-weight: 700;
  font-style: italic;
  border-radius: 7px;
  padding: 5px 10px;
  background-color: #0000ff;
  color: #fff;
  transition: all .3s;
  padding: 4px 12px;
}

@media (min-width: 576px) {
  .schedule-button {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  .schedule-button {
    font-size: 24px;
  }
}

.schedule-button:hover {
  background-color: #000096;
  transition: all .3s;
}

/* Program Button Styling */

#buttons .box {
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background-color: #000;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.15);
}

#buttons .box p {
  text-align: center;
  line-height: 1.4;
}

@media (min-width: 992px) {
  #buttons .box p {
    font-size: 22px;
  }
}

@media (min-width: 1200px) {
  #buttons .box p {
    font-size: 19px;
  }
}

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

#buttons .box img {
  width: 100%;
  height: auto;
}

#buttons .box .box-content {
  display: none;
}

@media (min-width: 992px) {
  #buttons .box .box-content {
    display: block;
    width: 92%;
    height: 94%;
    position: absolute;
    top: 3%;
    left: 4%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 10px 10px;
    transform: scale(0);
    transition: all 0.5s ease 0s;
    border: solid 1px #ff0000;
    border-radius: 5px;
  }
}

@media (min-width: 992px) {
  #buttons .box .box-content {
    padding: 10px 15px;
  }
}

#buttons .box:hover .box-content {
  transform: scale(1);
}

#buttons .box .heading {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.55);
  text-align: center;
  padding: 7px 0px 7px 0px;
  transition: all 0.5s;
}

#buttons .box:hover .heading {
  bottom: -35%;
}

@media (max-width: 991px) {
  #buttons .box:hover .heading {
    bottom: 0;
  }
}

@media (min-width: 992px) {
  #buttons .box:hover img {
    opacity: .7;
    transition: all 0.3s;
  }
}

#buttons .box .heading h3 {
  margin: 0;
  font-size: calc(8px + 2.3vw);
  font-weight: 800;
  color: #fff;
  text-shadow: 0px 0px 5px #000;
}

@media (min-width: 576px) {
  #buttons .box .heading h3 {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  #buttons .box .heading h3 {
    font-size: 22px;
  }
}

#buttons .box .heading h4 {
  color: #fff;
  font-size: 16px;
  text-shadow: 0px 0px 5px #000;
  margin-bottom: 0;
}

@media (min-width: 576px) {
  #buttons .box .heading h4 {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  #buttons .box .heading h4 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  #buttons .box {
    margin-bottom: 10px;
  }
}

.text-stage1 {
  color: #094eff;
}

.text-stage2 {
  color: #ff0000;
}

.text-stage3 {
  color: #960000;
}

/* Attention Text */

.att-text {
  font-family: 'Roboto Condensed';
  font-size: 28px;
  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: 576px) {
  .att-text-icons {
    font-size: 23px;
  }
}

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

@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: 992px) {
  .att-text-sub {
    font-size: 28px;
  }
}

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

.scroll-text-container {
  color: rgba(255,255,255,0.4);
  display: block;
  position: absolute;
  height: 70px;
}

.scroll-container {
  position: absolute;
  transform: scale(.8);
  width: 28px;
  height: 65px;
  opacity: .2;
}

.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before, .chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

