@import url(../fonts/noto-sans/stylesheet.css);
@import url(../fonts/montserrat/stylesheet.css);
@import url(vendor/bootstrap.css);
html, body {
  font-family: Montserrat, "Noto Sans", sans-serif;
  font-size: 16px; }

.layout-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh; }
.layout-header {
  background-color: #ffffff;
  transition: padding 0.5s; }
.layout-content {
  flex: 1 1 auto; }
.layout-footer {
  background-color: #0f1e31;
  padding: 3rem 0 1rem;
  color: #ecf4ff;
  font-size: 14px; }
  .layout-footer a {
    color: #ecf4ff;
    text-decoration: none;
    transition: color 0.5s; }
    .layout-footer a:focus, .layout-footer a:hover {
      color: #ffffff; }

.text-info {
  color: #3e95fb !important; }

.card-step .card-text {
  font-size: 1.25rem !important; }

.navbar {
  padding: 0.75rem 0; }
  .navbar-brand img {
    max-height: 64px; }
  .navbar-main {
    text-transform: uppercase; }
    .navbar-main > li.nav-item:last-child a.nav-link {
      padding-right: 0; }
    .navbar-main > li.nav-item.active > .nav-link {
      color: #3e95fb; }
    .navbar-main > li.nav-item a.nav-link {
      padding: 0.5rem 1rem;
      transition: color .5s; }
      .navbar-main > li.nav-item a.nav-link:hover {
        color: #3e95fb; }

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10; }

.layout-header.sticky {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 0; }
  .layout-header.sticky > .navbar {
    padding: 0; }

/* ==== SECTION BEGIN ==== */
.login-container {
  background-color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  padding: 2rem 1rem;
  border-radius: 1rem;
  text-align: center;
  margin: 0 auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15); }
.login-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.01px; }

.section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  z-index: 1; }
  .section-title {
    border: none;
    color: #3b3d42;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    padding: 0; }
  .section-subtitle {
    color: #949292;
    font-size: 16px;
    font-weight: 300;
    line-height: 29px;
    letter-spacing: 0.1px;
    margin: 7px 0 30px; }
  .section-slide {
    background-image: url("../img/main-slide-wide.jpg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    padding: 12% 0;
    display: flex;
    flex-direction: column;
    align-items: center; }
  .section-primary {
    background-color: #3e95fb;
    color: #ffffff; }
    .section-primary .section-title, .section-primary .section-subtitle {
      color: #ffffff; }
  .section-secondary {
    background-color: #f8fbff; }
  .section-default {
    background-color: #ffffff; }

/* ==== SECTION END ==== */
/* ==== IMAGE BEGIN ==== */
.img-wrapper {
  position: relative; }
.img-play {
  font-size: 64px;
  position: absolute;
  left: 50%;
  opacity: .75;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .5s;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
  cursor: pointer; }
  .img-play:hover {
    opacity: 1; }

/* ==== IMAGE END ==== */
/* ==== BUTTON BEGIN ==== */
.btn-primary {
  background-image: linear-gradient(to left, #3e95fb, #3e95fb 50%, #22333b 50%, #22333b);
  background-position: 100% 0;
  background-size: 200% 100%;
  transition: all .25s ease-in;
  color: #ffffff;
  border: none;
  text-transform: uppercase;
  padding: 14px 35px;
  font-family: "Noto Sans", "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6; }
  .btn-primary:active, .btn-primary:focus {
    box-shadow: none !important;
    outline: none !important; }
  .btn-primary:hover {
    background-position: 0 0; }

/* ==== BUTTON END ==== */
/* ==== ACCORDION BEGIN ==== */
.accordion-item {
  border-bottom: 1px solid #e8e8f6; }
  .accordion-item:first-of-type {
    border-top: 1px solid #e8e8f6; }
.accordion-label-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-transform: uppercase; }
.accordion-label-icon {
  color: #949292;
  animation-duration: .5s;
  animation-fill-mode: forwards; }
.accordion-header {
  color: #22333b;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .5s; }
  .accordion-header i, .accordion-header em {
    font-size: 24px;
    vertical-align: top;
    margin-top: -2px; }
  .accordion-header[aria-expanded=true] {
    color: #3e95fb; }
    .accordion-header[aria-expanded=true] .accordion-label-icon {
      animation-name: inRotate; }
  .accordion-header[aria-expanded=false] .accordion-label-icon {
    animation-name: outRotate; }
.accordion-content {
  color: #3b3d42;
  font-size: 0.87rem; }
  .accordion-content ul {
    list-style: none;
    margin-left: .75rem;
    color: #3b3d42; }
    .accordion-content ul > li {
      position: relative;
      padding-left: 0.5rem;
      margin: 0.5rem 0; }
      .accordion-content ul > li::marker {
        font-family: icofont, sans-serif;
        content: "\ef9a";
        display: inline-block; }
  .accordion-content p {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    text-align: justify; }
.accordion-control {
  background: none;
  cursor: pointer; }

/* ==== ACCORDION END ==== */
/* ==== FOOTER BEGIN ==== */
.footer {
  text-align: center; }
  .footer-title {
    border-bottom: 3px solid #3e95fb;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: none;
    text-align: center; }
    .footer-title:after {
      content: "\0020";
      display: block;
      clear: both; }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem; }
    .footer-menu > li {
      position: relative;
      margin: 0.75rem 0;
      /*
            &::marker {
              font-family : icofont, sans-serif;
              content     : "\eab8";
              display     : inline-block;
            }

       */ }
  .footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1.25rem 0 0;
    padding-top: 1rem;
    text-align: center; }

/* ==== FOOTER END ==== */

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