/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */

html,
body {
    /* height: 100%;
  width: 100%;
  font-family: "Tai Nam Regular"; */
}

.block-heading {
    padding-top: 40px;
    letter-spacing: 0.2em;
}

.block-heading .text-info {
    color: #5C277D;
    font-size: 1.7rem;
    text-align: left;
}

.block-heading .text-info .top-title {
    font-family: "Tai Nam Medium";
}

.block-heading .section-text-info {
    color: #5C277D;
    font-size: 1.4rem;
    text-align: left;
}

.block-heading .sub-section-text-info {
    color: #5C277D;
    font-size: 1.8rem;
    text-align: left;
}

.block-heading .text-info-no-underline {
    color: #5C277D;
    font-size: 1.5rem;
    padding-bottom: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.main-content {
    letter-spacing: 2px;
}

.main-content .subtitle {
    color: #5C277D;
    font-size: 1.1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.main-content .point-list {
    list-style-type: dist;
    padding-left: 1em;
}

.highlight {
    color: #29abe2;
    display: inline;
}

.input-label {
    color: #5C277D;
    margin-bottom: 0;
}


/* .form-control {
    border: none;
    background-color: #f0f0f0;
} */

.hover-enabled:hover {
    cursor: pointer;
}

.btn-back-to-top {
    position: fixed;
    right: 20px;
    bottom: 50px;
    z-index: 500;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
}

.btn-back-to-top img {
    width: 40px;
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}


/*# sourceMappingURL=global.css.map */