﻿/* === iziToast === */
.iziToast > .iziToast-body .iziToast-buttons > button {
  background-color: #3d4042;
  color: #fff; }

.iziToast > .iziToast-body .iziToast-buttons > button:hover {
  background-color: #5b686f; }

.iziToast.toast-success > .iziToast-body .iziToast-buttons > button {
  background-color: #4cae50; }

.iziToast.toast-success > .iziToast-body .iziToast-buttons > button:hover {
  background-color: #60d865; }

/* Variables */
/* Init */
* {
  box-sizing: border-box; }

html,
body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  background-color: #fff;
  color: #666;
  overflow-x: hidden; }

/* Main */
.main-container {
  padding: 0 5%; }

.wrapper-presentation {
  position: relative; }

/* Login */
.main-login-overlay {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity .2s ease-in;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.4); }
  .main-login-overlay.show {
    pointer-events: inherit;
    opacity: 1; }

.main-login {
  pointer-events: inherit;
  position: absolute;
  z-index: 20;
  right: 40px;
  top: 80px; }
  .main-login .card {
    pointer-events: inherit; }

/* Header */
.app-logo {
  height: 35px;
  margin-right: 10px; }

.main .header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  background-color: transparent;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: background-color .2s ease-in, padding .2s ease-in;
  color: #fff; }
  .main .header a {
    color: #ccc; }
    .main .header a:hover {
      color: #fff;
      text-decoration: none; }
  .main .header .title {
    font-size: 1.7rem;
    color: #fff;
    display: inline-flex;
    justify-content: space-between;
    align-items: center; }
  .main .header .btn-menu {
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease-in;
    cursor: pointer; }
  .main .header[data-scroll="in"] {
    background-color: #fff;
    color: #007bff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.07); }
    .main .header[data-scroll="in"] .title {
      color: #007bff; }
    .main .header[data-scroll="in"] a {
      color: #444; }
      .main .header[data-scroll="in"] a:hover {
        color: #007bff; }
  .main .header.n2 {
    padding-top: 13px;
    padding-bottom: 13px; }

.header-menu {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0; }

.header-menu-item {
  flex: 1; }
  .header-menu-item a {
    padding: 10px 20px;
    color: #444;
    transition: color .2s ease-in; }

/* Video background */
.home-back-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  min-height: 600px;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
  overflow: hidden; }
  .home-back-video video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 110vh;
    min-width: 100%; }

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  min-height: 600px;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1; }

/* Home section */
.main .home {
  position: relative;
  /*height: calc(100vh - $headerHeight);*/
  height: calc(100vh - 80px);
  min-height: 520px;
  display: flex;
  align-items: center;
  padding-top: 80px; }

.main .home .text {
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff; }

.home .form-register .btn {
  padding: 10px 30px !important;
  text-decoration: none; }

.home .form-register .btn-2 {
  padding: 10px 50px !important;
  text-decoration: none;
  font-size: 1.5rem; }

.home .form-register .btn:hover,
.home .form-register .btn-2:hover {
  text-decoration: none; }

.btn-sub {
  color: #fff !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease-in; }

.btn-sub.show {
  opacity: 1;
  pointer-events: inherit; }

/* Features section */
.main .features {
  height: 100vh;
  min-height: 600px;
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center; }
  .main .features .services {
    padding: 30px;
    transition: background-color .2s ease-in, color .2s ease-in; }
    .main .features .services .icon {
      font-size: 4rem;
      color: #007bff;
      transition: color .2s ease-in; }
    .main .features .services h3 {
      margin: 20px 0;
      color: #007bff;
      transition: color .2s ease-in; }
  .main .features .services:hover {
    background-color: #007bff;
    color: #fff; }
    .main .features .services:hover .icon {
      color: #fff; }
    .main .features .services:hover h3 {
      color: #fff; }

/* Footer */
.footer {
  display: flex;
  align-items: center;
  min-height: 300px;
  background-color: #333;
  color: #777;
  font-size: .9rem;
  padding: 40px;
  /*a {
        color: currentColor !important;

        &:hover {
            text-decoration: none;
        }
    }*/ }
  .footer .border-top {
    border-color: #444 !important; }
  .footer .fa-whatsapp {
    font-size: 1.2em;
    color: #248424; }

.footer-heading {
  color: #fff;
  font-size: 1.3em; }

@media (max-width: 760px) {
  /* Login */
  .main-login {
    right: 0;
    left: 0;
    top: 60px; }
  /* Header */
  .main .header {
    flex-direction: column; }
    .main .header .btn-menu {
      pointer-events: inherit;
      opacity: 1; }
    .main .header a {
      color: #444; }
      .main .header a:hover {
        color: #007bff; }
    .main .header .title {
      font-size: 1em; }
  .header-menu {
    background-color: #fff;
    color: #444;
    margin-left: -40px;
    margin-right: -40px;
    padding: 20px 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease-in;
    text-align: center;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.07); }
    .header-menu.show {
      opacity: 1;
      pointer-events: inherit; }
  /* Home */
  .main .home {
    height: auto; }
  .card-register {
    margin-bottom: 40px; }
  .form-register input:not([type="submit"]) {
    margin-bottom: 10px; }
  /* Features */
  .main .features {
    height: auto;
    padding: 20px 0; }
    .main .features .services {
      margin: 10px 0; } }
