html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Roboto Condensed';
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  text-align: left;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.bg-body {
  background-image: url(../../assets/img/background-tile.jpg);
  background-attachment: fixed;
}

/* Text Styling */

a:hover {
  text-decoration: none;
}

p {
  font-family: 'Roboto Condensed';
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 17px;
  text-align: left;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.no-hyphens {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

@media (min-width: 576px) {
  p {
    text-align: justify;
    font-size: 18px;
  }
}

ul {
  font-size: 17px;
}

.hours-notice-txt {
  font-size: 15px;
  line-height: 18px;
}

.responsive-lead-text {
  font-size: 20px;
}

@media (min-width: 992px) {
  .responsive-lead-text {
    font-size: 23px;
  }
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed';
  margin-bottom: .5rem;
  font-weight: 700;
  line-height: 1.3;
}

.h1, h1 {
  font-size: calc(20px + 2vw);
}

@media (min-width:1200px) {
  .h1, h1 {
    font-size: 44px;
  }
}

.h2, h2 {
  font-size: calc(20px + 1.3vw);
}

@media (min-width: 992px) {
  .h2, h2 {
    font-size: 33px;
  }
}

.h3, h3 {
  font-size: calc(16px + 1vw);
}

@media (min-width: 1200px) {
  .h3, h3 {
    font-size: 30px;
  }
}

.h5, h5 {
  font-weight: 400;
}

.h5, h5 {
  font-size: 18px;
}

@media (min-width: 992px) {
  .h5, h5 {
    font-size: 20px;
  }
}

.text-theme {
  color: #91298c;
}

/* General Styling */

.bg-black {
  background: #000;
}

.content {
  background: white;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
  border-left: solid 1px #808080;
  border-right: solid 1px #808080;
}

.bg-tint {
  background: rgba(104,0,153,0.1);
}

.logo-drop-shadow {
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 1));
}

.form-spam-message {
  font-family: 'Roboto Condensed';
  font-size: 15px;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.no-spam-wrapper {
  margin-top: -30px;
}

/* Button Styling */

.signup-but {
  padding: 10px 20px;
  font-size: 22px;
  border-radius: 4px !important;
}

.theme-btn:not(:disabled):not(.disabled) {
  background-color: #6f006f;
  color: white;
  transition: all .3s;
  box-shadow: none;
  border-width: 0px;
  border-radius: 4px;
  font-weight: 700;
  text-shadow: 1px 1px 3px #000;
}

.theme-btn:not(:disabled):not(.disabled):hover {
  background-color: #91298c;
  color: white;
  transition: all .3s;
}

.signup-but:hover {
  transform: scale(1.1, 1.1);
  transition: all .5s !important;
}

@media (min-width: 576px) {
  .signup-but {
    padding: 10px 40px;
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  .signup-but {
    padding: 10px 40px;
    font-size: 36px;
  }
}

@media (min-width: 992px) {
  .figure-caption {
    max-width: 460px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .figure-caption {
    max-width: 300px;
  }
}

.figure-caption {
  font-size: 18px;
  line-height: 1.4;
}

/* Contact Page */

#myContact .social-networks a {
  font-size: 28px;
  color: #ffffff;
  transition: 0.2s;
  background: #1e1e1e;
  border-radius: 4px;
  padding: 2px 8px 0px 8px;
  min-width: 42px;
  margin: 0 2px;
}

#myContact .social-networks a:hover {
  text-decoration: none;
}

#myContact .facebook:hover {
  color: #0077e2;
}

#myContact .youtube:hover {
  color: #ff0000;
}

#myContact .instagram:hover {
  color: #ff00e6;
}

#myContact .table-hours {
  font-size: 16px;
  font-family: 'Roboto Condensed';
}

/* Back to top button */

#btop-but:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 37px;
  height: 38px;
  top: 2px;
  left: 1px;
  border-radius: 4px;
  z-index: -1;
}

#btop-but {
  position: fixed;
  bottom: -4px;
  right: 7px;
  font-size: 40px;
  line-height: 38px;
  height: 54px;
  z-index: 9999;
  transition: all .3s;
  text-shadow: none;
  opacity: .8;
}

@media (hover: hover) and (pointer: fine) {
  #btop-but:hover {
    opacity: 1;
    transition: all .3s;
  }
}

#btop-but a {
  color: #91298c !important;
}

