@import url("https://fonts.googleapis.com/css2?family=Gloock&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
.gloock-regular {
  font-family: "Gloock", serif;
  font-weight: 400;
  font-style: normal;
}

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.dark {
  background-color: #323E50;
}

html, body {
  padding: 0;
  margin: 0;
  background-color: #ffffff;
  font-size: 18px;
  height: 100%;
  width: 100%;
  color: #323E50;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
  scroll-behavior: smooth;
}

html:before {
  background: url(../img/border.jpg);
  background-size: 100%;
  content: ' ';
  height: 100vh;
  width: 30px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

@media only screen and (max-width: 768px) {
  html:before {
    width: 15px;
  }
}

.border {
  position: fixed;
  right: 0;
  z-index: 1000;
  top: 0;
}

sup, sub {
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
}

sub {
  top: 0.4em;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

strong {
  font-weight: bold;
  font-weight: 800;
}

em {
  color: #456088;
  font-style: normal;
}

h1, h2, h3, h4 {
  font-family: "Gloock", serif;
  font-weight: 400;
  font-style: normal;
}

h2 {
  font-size: 2.5em;
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

h2.center {
  text-align: center;
}

p.lede {
  font-size: 1.2rem;
  line-height: 1.3em;
}

.tomtom {
  width: 2em;
}

@media only screen and (max-width: 768px) {
  .tomtom {
    width: 1.5em;
  }
}

.tomtom path {
  transition: all .2s linear;
  fill: #ffffff;
}

.tomtom:hover path {
  fill: #FFBABB;
}

.hero {
  width: 100%;
  height: 95vh;
  background: #2D394B;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .hero {
    height: 85vh;
  }
}

.hero .SHAHT {
  width: 50vw;
  height: 27vw;
  margin: auto;
  z-index: 100;
  text-indent: -1000em;
  background-repeat: no-repeat;
  background: url(../img/Shela-and-the-hot-toms.png);
  background-size: 100%;
  animation: puff-in-center 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
  position: relative;
  z-index: 100;
}

@media only screen and (max-width: 768px) {
  .hero .SHAHT {
    width: 80vw;
    height: 43vw;
    position: relative;
    left: -2vw;
  }
}

.hero-inner {
  margin: auto;
  overflow: hidden;
}

.hero-vid, .hero-vid-mob {
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  position: absolute;
  top: 0;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .hero-vid, .hero-vid-mob {
    display: none;
  }
}

.hero-vid-mob {
  display: none;
}

@media only screen and (max-width: 768px) {
  .hero-vid-mob {
    display: block;
  }
}

/* ----------------------------------------------
 * Generated by Animista on 2024-6-8 12:45:25
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation puff-in-center
 * ----------------------------------------
 */
@keyframes puff-in-center {
  0% {
    transform: scale(1.2);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}

.about-inner {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: auto;
}

@media only screen and (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    grid-template-rows: min-content 1fr;
  }
}

.about .content {
  padding: 6rem 4rem 4rem 4rem;
}

@media only screen and (max-width: 768px) {
  .about .content {
    padding: 2rem 2rem 3rem 2rem;
  }
}

.band-photo {
  width: 100%;
}

.fixed-center {
  max-width: 960px;
  margin: auto;
  padding: 2rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
}

@media only screen and (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    grid-template-rows: min-content min-content;
  }
  .two-col .col1, .two-col .col2 {
    padding-right: .5rem;
  }
}

fieldset {
  border: none;
  outline: none;
  padding: 0;
}

label {
  font-size: .7rem;
  display: block;
  text-indent: .5em;
  font-family: "lato", sans-serif;
  font-weight: 700;
}

.input-group {
  position: relative;
  margin-bottom: 1rem;
}

textarea {
  height: 200px;
  border-radius: 1em;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 1rem;
  z-index: 1000;
}

.menu {
  font-family: "Gloock", serif;
}

.menu a {
  color: #ffffff;
  transition: all .2s linear;
}

.menu a:hover {
  color: #FFBABB;
}

.menu-inner {
  max-width: 1440px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-weight: 800;
}

.main-menu {
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: max-content max-content max-content max-content;
  grid-gap: 2rem;
  font-weight: 400;
  font-style: normal;
}

.main-menu ul, .main-menu li {
  padding: 0;
  display: flex;
  align-items: center;
  margin: 0;
}

.main-menu a {
  color: #ffffff;
  font-size: 1.1rem;
  letter-spacing: .1em;
  text-decoration: none;
}

.main-menu a span {
  color: #456088;
}

@media only screen and (max-width: 768px) {
  .main-menu {
    grid-gap: 1rem;
  }
  .main-menu a {
    font-size: .9rem;
  }
}

.icon-grid {
  display: grid;
  grid-template-columns: min-content min-content min-content;
  grid-gap: .5rem;
  justify-content: flex-end;
  width: auto;
}

@media only screen and (max-width: 768px) {
  .icon-grid {
    justify-content: center;
  }
}

.success-message {
  transition: all .2s linear;
  opacity: 1;
  visibility: visible;
}

.hide {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.social-icon {
  height: 2rem;
  max-height: 2rem;
}

.footer {
  background: url(../img/footerbg.jpg);
  background-position: top center;
  background-size: 130% auto;
  color: #ffffff;
  font-size: 1rem;
  height: 20vw;
  min-height: 250px;
  max-height: 350px;
  font-weight: 700;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 1em;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media only screen and (max-width: 768px) {
  .footer-inner {
    text-align: center;
    grid-template-columns: 1fr;
    grid-template-rows: min-content 1fr;
    align-items: center;
  }
}

.footer p {
  padding-top: 1em;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .footer p {
    text-align: center;
  }
}

.hear {
  padding: 8rem 1rem;
}

@media only screen and (max-width: 768px) {
  .hear {
    padding: 2rem;
  }
  .hear .fixed-center {
    padding: 0rem;
  }
}

.social {
  padding: 2rem 1rem;
}

.book {
  background: #F5F5F5;
  margin-top: -3em;
  padding: 4rem 1rem;
  height: 60vw;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.book .success-message {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all .2s linear;
}

.book .col2 {
  min-height: 400px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .book {
    margin-top: 0;
    padding: 0;
    height: auto;
    min-height: auto;
  }
}

.demovid {
  border: 20px solid #e6e6e6;
  width: 100%;
  margin: auto;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .demovid {
    border: none;
  }
}

.form-group {
  display: grid;
  grid-template-rows: min-content min-content min-content min-content;
  grid-gap: .5rem;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-family: 'Lato';
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: .7em;
  box-sizing: border-box;
  border: none;
  border-radius: 2rem;
  background-color: #fff;
  width: 100%;
  border: 1px solid #fff;
  padding: 1em 1em 1em 2em;
}

.form-group input::focus, .form-group textarea::focus {
  border: 1px solid #456088;
}

.form-group input:active, .form-group textarea:active {
  border: 1px solid #456088;
}

.form-group textarea {
  border-radius: .5em;
}

input.submit-button {
  outline: none;
  border: none;
  cursor: pointer;
  padding: 1rem 2rem;
  background-color: #456088;
  color: #ffffff;
  font-weight: bold;
  font-size: .7rem;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-weight: 800;
  letter-spacing: .2em;
  border-radius: 2rem;
  display: inline-block;
  max-width: 130px;
  transition: all .1s linear;
}

input.submit-button:hover {
  background-color: #6591d4;
}

.hidden {
  display: none;
}

.down-arrow {
  background-color: #FFBABB;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  margin-left: -55px;
  z-index: 100;
  transition: all .1s linear;
  -webkit-animation: bounce-top 0.9s both;
  animation: bounce-top 0.9s both;
  animation-delay: 4s;
}

@media only screen and (max-width: 768px) {
  .down-arrow {
    width: 40px;
    height: 40px;
    bottom: 1rem;
    margin-left: -10px;
  }
}

.down-arrow:hover {
  background-color: #fa8587;
}

.down-arrow img {
  margin: auto;
  height: 20px;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-6-8 12:37:21
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation bounce-top
 * ----------------------------------------
 */
@-webkit-keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-24px);
    transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
}

@keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-24px);
    transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
}

.contact-widget {
  display: grid;
  grid-template-columns: 80px 1fr;
  border: 1px solid #456088;
  border-radius: 5px;
  margin: 0rem 0 1rem 0;
  background-color: #ffffff;
}

.contact-widget-detail {
  display: flex;
  align-items: center;
  padding: .5rem;
}

.contact-widget-label {
  background-color: #456088;
  color: #ffffff;
  font-weight: bold;
  display: flex;
  align-items: center;
  font-size: .8em;
  text-transform: uppercase;
  padding: .5rem .4rem .5rem 1rem;
}

.contact-widget img {
  height: 24px;
  margin-right: .5rem;
}

.contact-widget a {
  text-decoration: none;
  color: #456088;
}

@media only screen and (max-width: 768px) {
  .contact-widget {
    grid-template-columns: 1fr;
    grid-template-rows: min-content min-content;
    border: 1px solid #456088;
    border-radius: 5px;
    margin: 0rem 0 1rem 0;
    background-color: #ffffff;
  }
  .contact-widget-detail {
    display: flex;
    align-items: center;
    padding: .5rem;
  }
  .contact-widget-label {
    background-color: #456088;
    color: #ffffff;
    font-weight: bold;
    display: flex;
    align-items: center;
    font-size: .8em;
    text-transform: uppercase;
    padding: .5rem .4rem .5rem 1rem;
  }
  .contact-widget img {
    height: 24px;
    margin-right: .5rem;
  }
  .contact-widget a {
    text-decoration: none;
    color: #456088;
  }
}
