/* -------------------------------------------------------------
  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";
}

.main_color {
  color: #f88d2b;
}

.SD_banner_image {
  display: none;
}

.block-heading {
  padding-top: 40px;
  letter-spacing: 0.2em;
}
.block-heading .text-info {
  color: #f88d2b;
  font-size: 1.7rem;
  text-align: left;
}
.block-heading .text-info .top-title {
  font-family: "Tai Nam Medium";
}
.block-heading .section-text-info {
  color: #f88d2b;
  font-size: 1.4rem;
  text-align: left;
}
.block-heading .sub-section-text-info {
  color: #f88d2b;
  font-size: 1.8rem;
  text-align: left;
}
.block-heading .text-info-no-underline {
  color: #f88d2b;
  font-size: 1.5rem;
  padding-bottom: 10px;
  text-align: center;
  margin-bottom: 30px;
}

.main-content {
  letter-spacing: 2px;
}
.main-content .subtitle {
  color: #f88d2b;
  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: #f88d2b;
  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;
}

.social_meida {
  position: fixed;
  top: 30%;
  left: 0%;
  width: 50px;
}

.chatbot {
  position: fixed;
  top: 40%;
  right: 1%;
  width: 50px;
}

.chatbot img {
  padding: 3px 0px;
}

@media only screen and (max-width: 768px) {
  .SD_banner_image {
    display: block;
  }

  .banner_image {
    display: none;
  }
}

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