@font-face {
  src: url("/app/fonts/nasalization-rg.ttf");
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
  font-family: "Nasalization Rg", sans-serif;
  font-size: 17px;
  color: #3B3B3B;
}

.logged-panel {
  background: #333;
  position: relative;
  padding: 10px;
  z-index: 1000;
  text-align: center;
  color: #aaa;
}
.logged-panel a {
  padding: 5px 10px;
  color: #aaa;
  text-decoration: none;
}

.snackbar {
  visibility: hidden;
  min-width: 250px;
  position: fixed;
  padding: 16px;
  text-align: center;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background-color: #333;
  color: #fff;
  font-size: 15px;
}
.snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  -o-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
@-webkit-keyframes fadeout {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
.header-logo {
  z-index: 7;
  position: relative;
  background-color: #fff;
  width: 100%;
}

.navbar-top {
  background-color: #fff;
  display: block;
  position: absolute;
  top: 146px;
  width: 100%;
  z-index: 6;
  box-shadow: 0 0 30px #3B3B3B;
}
.navbar-top.logged {
  top: 191px;
}
.navbar-top.navbar-sticky {
  width: 100%;
  position: fixed;
  top: 0;
}
.navbar-top.navbar-sticky ul li a {
  display: inline-block;
  text-align: center;
}
.navbar-top .navbar-control {
  border: 0;
  background: transparent;
  color: #3B3B3B;
  cursor: pointer;
  font-size: 25.5px;
  padding: 0 22.5px;
  transition: 0.3s;
  display: block;
}
.navbar-top .navbar-control:hover {
  color: #DC522C;
}
.navbar-top .navbar-toggler {
  color: transparent;
  border: none;
  outline: none;
  display: block;
  height: 40px;
}
.navbar-top .navbar-toggler .navbar-toggler-icon {
  background-image: url("/storage/icons/menuBars.svg");
  transition: 0.3s;
}
.navbar-top .navbar-toggler .navbar-toggler-icon:hover {
  background-image: url("/storage/icons/menuBarsHover.svg");
}
.navbar-top #navbar-collapse ul li a {
  padding: 10px;
  color: #333;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: 0.3s;
}
.navbar-top #navbar-collapse ul li a:hover {
  color: #DC522C;
}
.navbar-top #navbar-collapse .nav-item-separator {
  color: #333;
  display: none;
}

.header {
  height: calc(100% - 146px) !important;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.header.logged {
  height: calc(100% - 191px) !important;
}

.main-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.main-image div {
  height: 100vh;
  min-height: 300px;
  background: no-repeat center center scroll;
  background-size: cover;
  position: relative;
  width: 100%;
}

.black-filter {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

#section {
  padding-top: 20px;
}

.content-title {
  letter-spacing: 10px;
  font-size: 170%;
}

.col-mobile .col {
  flex-basis: inherit;
}

.row-carousel {
  margin: 0;
}
.row-carousel [class*=col-] {
  padding: 0;
}

.carousel .carousel-control-next, .carousel .carousel-control-prev {
  width: 10%;
}
.carousel .carousel-item-next, .carousel .carousel-item-prev, .carousel .carousel-item.active {
  display: flex;
}
.carousel .carousel-indicators li {
  background-color: rgba(220, 82, 44, 0.5);
}
.carousel .carousel-indicators .active {
  background-color: #DC522C;
}

.contact svg {
  min-width: 30px;
}

.footer {
  background: #eee;
  margin-top: 60px;
}
.footer .footer-links {
  text-transform: uppercase;
  font-size: 15px;
}
.footer .footer-copy {
  background: #aaa;
  padding: 20px;
  color: #333;
}
.footer .footer-logo {
  width: 200px;
  margin: auto;
  display: block;
}
.footer .footer-created {
  font-family: Calibri, sans-serif;
}

@media (min-width: 992px) {
  .nav-item-separator {
    display: inline !important;
  }

  .navbar-top ul li a {
    display: inline;
  }

  .navbar-toggler, .navbar-control {
    display: none !important;
  }

  #navbar-collapse ul li a {
    display: inline-block !important;
  }
}
@media (min-width: 768px) {
  .col-mobile .col {
    flex-basis: 0;
  }

  .footer-contact {
    padding: 0 0 !important;
  }

  .content-title {
    font-size: 3.5rem;
  }
}

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