* {
  margin: 0;
  padding: 0;
}

:root {
  --colour-foreground: #fff;
  --colour-background: #444444;
  --colour-accent: rgb(213, 2, 18, 1);
  --colour-accent-hover: rgb(213, 2, 18, 0.8);
  --colour-accent-light: rgb(213, 2, 18, 0.2);
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--colour-background);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

a {
  color: var(--colour-background);
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s;
}
a:hover {
  color: var(--colour-accent);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

section {
  margin: 60px 0px;
}
section .section-title {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.8rem;
  margin-top: 20px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  position: relative;
}
section .section-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--colour-accent);
  bottom: 0;
  left: calc(50% - 25px);
}

#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--colour-accent);
  color: var(--colour-foreground);
  z-index: 9999;
  transition: 0.3s;
  opacity: 1;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255); /* overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99999;
}
#preloader div {
  color: #fff; /* Loading message color */
  z-index: 999999;
}

.statistic {
  margin: 0;
  padding: 50px 0;
  align-items: center;
  justify-content: center;
  background-color: var(--colour-accent);
  color: #fff;
  transition: 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.statistic:hover {
  background-color: var(--colour-accent-hover);
}

form input[type=text], form input[type=tel], form input[type=email], form input[type=date], form input[type=time], form textarea {
  border-radius: 0 !important;
}
form input[type=submit] {
  background-color: var(--colour-accent) !important;
  color: var(--colour-foreground) !important;
  border-radius: 0% !important;
}
form input[type=submit]:hover {
  background-color: var(--colour-accent-hover) !important;
}

.btn-contact {
  text-align: center;
}
.btn-contact i {
  font-size: 1.2rem;
  padding: 5px;
  margin: 5px;
}

#social i {
  font-size: 1.5rem;
}

textarea:focus, textarea:active:focus, textarea.active:focus,
input:focus, input:active:focus, input.active:focus,
.btn:focus, .btn:active:focus, .btn.active:focus {
  outline-color: transparent !important;
  box-shadow: none !important;
  border: 1px var(--colour-accent) solid !important;
}

.accordion-header .accordion-button {
  color: var(--colour-accent) !important;
  background-color: var(--colour-foreground) !important;
  font-weight: bold;
  outline: none !important;
  outline-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

#banner {
  margin: 0;
  position: relative;
}
#banner .banner-splash {
  width: 100%;
  z-index: 1;
}
#banner .banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.7;
  top: 0;
  z-index: 2;
}
#banner .banner-content {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  align-content: center;
  text-align: center;
  z-index: 3;
}
#banner .banner-content .banner-logo {
  width: 50%;
  padding: 20px;
}
#banner .banner-content .banner-text {
  font-size: 1.4rem;
  color: var(--colour-background);
}

@media only screen and (max-width: 768px) {
  #contact-form {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .navbar-brand {
    display: none;
  }
  section {
    margin: 40px 0px;
  }
  #banner .banner-content {
    align-content: center;
    text-align: center;
  }
  #banner .banner-content .banner-logo {
    width: 65%;
    padding: 20px;
  }
  #banner .banner-content .banner-text {
    width: 100%;
    font-size: 1rem;
  }
}
.ohnohoney {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}/*# sourceMappingURL=style.css.map */