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

.att-text {
  font-family: 'Roboto Condensed';
  font-size: 24px;
  font-size: calc(6px + 5vw);
  line-height: 1.2;
  font-weight: 700;
}

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

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

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

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

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

.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: 23px;
  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;
  }
}

/* Button Styling */

#buttons .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;
}

#buttons .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;
}

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

@media (min-width: 992px) {
  #buttons .box:hover img {
    opacity: .5;
  }
}

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

@media (min-width: 992px) {
  #buttons .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);
  }
}

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

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

@media (min-width: 992px) {
  #buttons .box .caption {
    display: block;
    position: absolute;
    left: 0;
    top: 40px;
    width: 85%;
    z-index: 1;
    opacity: 0;
  }
}

@media (min-width: 1400px) {
  #buttons .box .caption {
    top: 44px;
  }
}

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

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

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

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

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

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

#buttons .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) {
  #buttons .top-caption p {
    font-size: 18px;
    font-weight: 700;
  }
}

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

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

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

#buttons .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) {
  #buttons .box .bottom-caption p {
    font-size: 18px;
  }
}

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

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

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

@media (min-width: 992px) {
  #buttons .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;
  }
}

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

#buttons .touch-icon {
  position: absolute;
  z-index: 1;
  margin: 5px;
  width: 24px;
  height: 24px;
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
}

@media (min-width: 576px) {
  #buttons .touch-icon .touch {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 576px) {
  #buttons .touch-icon {
    margin: 8px;
    width: 30px;
    height: 30px;
  }
}

/* shape for text in circle */

.quarter-circle {
  width: 260px;
  height: 260px;
  box-sizing: border-box;
  border-radius: 0 0 100% 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1200px) {
  .quarter-circle {
    width: 230px;
    height: 250px;
  }
}

@media (min-width: 1400px) {
  .quarter-circle {
    width: 260px;
    height: 260px;
  }
}

.spacer-right {
  float: right;
  width: 260px;
  height: 260px;
  shape-margin: 15px;
  shape-outside: polygon(100% 0, 100% 100%, 0 100%, 20% 98%, 38% 92%, 55% 83%, 71% 70%, 83% 55%, 92% 38%, 98% 20%);
}

@media (min-width: 1200px) {
  .spacer-right {
    width: 230px;
    height: 250px;
  }
}

@media (min-width: 1400px) {
  .spacer-right {
    width: 260px;
    height: 260px;
  }
}

/* Mobile Description Styling */

.mobile-description {
  font-size: 16px;
  font-family: 'Roboto Condensed';
  line-height: 1.3;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  margin: 10px auto 0px;
  padding: 0 2px;
  max-width: 320px;
}

@media (min-width: 768px) {
  .mobile-description {
    font-size: 17px;
  }
}

.toggle-link {
  font-size: 16px;
  display: block;
  text-align: left;
  text-decoration: underline;
  cursor: pointer;
  padding: 0 4px;
  max-width: 320px;
  margin: 0 auto;
}

.toggle-link:focus, .toggle-link:active, .toggle-link:hover {
  text-decoration: underline;
  box-shadow: none;
}

