/* 
Colours 
#FFFFFF - White
#5db41d - green
#212121 - dark
*/

.has-text-dark {
  color: #212121 !important;
}

.has-green-bg {
  background-color: #5db41d;
}

.has-dark-bg {
  background-color: #212121;
}

.has-white-green-gradient {
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, #5db41d 50%, #5db41d 100%);
  background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, #5db41d 50%, #5db41d 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, #5db41d 50%, #5db41d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#5db41d", GradientType=1);
}

@media(max-width: 1024px) {
  .has-white-green-gradient {
      background: rgb(255, 255, 255);
      background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, #5db41d 25%, #5db41d 100%);
      background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, #5db41d 25%, #5db41d 100%);
      background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, #5db41d 25%, #5db41d 100%);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#5db41d", GradientType=1);
  }
}

/*
Typography 
*/

@import url('https://fonts.bunny.net/css?family=Calistoga|Open+Sans&display=swap');

h1,
h2,
h3 {
  font-family: 'Calistoga';
  margin-bottom: 10px;
}
p,
a,
span {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

@media(max-width: 767px) {
  p {
      max-width: 90%;
  margin: 0 auto;
  }

  .media{
    flex-direction: column;
  }

  .is-size-3{
    font-size: 1.7rem !important;
  }
}



/*
Links
*/
.a-menu {
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: opacity 1s ease;
  opacity: 0.8;
}

.a-menu:hover {
  opacity: 1;
  color: #212121 !important;
  text-decoration: none;
}

/* 
Wrapper
*/
.section .container,
.hero .hero-body,
.hero .hero-head {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

/*
Some aesthetic improvements
*/
nav {
  padding-top: 20px;
  max-height: 50px;
}

.paragraph {
  width: 600px;
  line-height: 1.5em;
}
.image img{
  object-fit: contain;
  max-height: 128px;
}

/*
Hero
*/
@media(min-width: 1024px) {
  .hero-body {
      background-size: 30%;
      background-position: 80% 50%;
      background-repeat: no-repeat;
  }
  .hero-body p {
      width: 600px;
  }
}

.media{
  align-items: center;
}



/*
details
*/
#details{
  margin-top: -1px;
  padding-bottom: 5rem;
  color: white;
}
#details .container + .container{
  margin-top: 5rem;
}
.detail-img {
  max-width: 150px;
  margin: 0 auto;
}

.column {
  display: flex;
  justify-content: center;
  flex-flow: column;
  text-align: center;
}

.column h3,
.column p {
  align-self: center;
}

@media(max-width: 1024px) {
  .reverse-row-order {
      flex-direction: column-reverse;
      display: flex;
  }
}


/*
Footer
*/
#footer p {
  padding: 20px;
}

#footer a {
  color: #FFFFFF !important;
}