/* 
Colours 
#FFFFFF - White
#FDBB34 - Mustard
#1E4132 - Green
*/

.has-text-green {
    color: #2d2d2d !important;
}

.has-mustard-bg {
    background-color: #F7EFD8;
}

.has-green-bg {
    background-color: #1E4132;
}

.has-dark-bg {
    background-color: white;
}

.has-white-mustard-gradient {
    background: rgb(255, 255, 255);
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(253, 187, 52, 1) 50%, rgba(253, 187, 52, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(253, 187, 52, 1) 50%, rgba(253, 187, 52, 1) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(253, 187, 52, 1) 50%, rgba(253, 187, 52, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#fdbb34", GradientType=1);
}

@media(max-width: 1024px) {
    .has-white-mustard-gradient {
        background: rgb(255, 255, 255);
        background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(253, 187, 52, 1) 25%, rgba(253, 187, 52, 1) 100%);
        background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(253, 187, 52, 1) 25%, rgba(253, 187, 52, 1) 100%);
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(253, 187, 52, 1) 25%, rgba(253, 187, 52, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#fdbb34", GradientType=1);
    }
}

/*
Typography 
*/

@import url('https://fonts.googleapis.com/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;
    }
}



/*
Links
*/
.a-menu {
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: opacity 1s ease;
    opacity: 0.8;
}

.a-menu:hover {
    opacity: 1;
    color: #1E4132 !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;
}

/*
iframe 
*/

.container-iframe {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 30%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
  }
  
  /* Then style the iframe to fit in the container div with full height and width */
  .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }

iframe {
    padding-top: 0;
}

@media screen and (max-width: 1024px) {
    .container-iframe {
        padding-top: 50%;
    }
}

@media screen and (max-width: 768px) {
    .container-iframe {
        padding-top: 80%;
    }
}

/*
Hero
*/
.burger {
    position: absolute;
    top: 0;
    right: 0;
}
@media(min-width: 1024px) {
    .hero-body {
        background-image: url(../img/hero.png);
        background-size: 30%;
        background-position: 100% 50%;
        background-repeat: no-repeat;
    }
    .hero-body p {
        width: 600px;
    }
}

/*
Button
*/
.btn {
    margin-top: 20px;
    border-radius: 50px;
    border: 1px solid;
    padding: 10px 30px;
    /* -webkit-box-shadow: 0px 0px 15px 0px rgba(253, 186, 52, 1);
    -moz-box-shadow: 0px 0px 15px 0px rgba(253, 186, 52, 1);
    box-shadow: 0px 0px 15px 0px rgba(253, 186, 52, 1); */
    transition: opacity 1s ease;
    opacity: 1;
    cursor: pointer;
}

.btn:hover {
    opacity: 0.8;
}

/*
Twitter Feed
*/
#twitter-feed .columns {
    margin: 0px;
}
@media(max-width: 1024px) {
    margin: 0px 10px;
}

.box {
    padding-top: 30px;
    padding-bottom: 30px;
}

.box .icon {
    margin-top: -10px;
    color: #FDBB34 !important;
    transition: color 0.5s ease;
}

.box .icon:hover {
    color: #1E4132 !important;
}
#twitter-feed .container .is-size-7 {
    padding: 20px;
}

/*
Features
*/
.feature-img {
    max-width: 60%;
    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;
    }
}

/*
Newsletter
*/
#newsletter {
    text-align: center;
}

#newsletter p {
    width: 600px;
    margin: 0 auto;
}

.social-link {
    padding: 15px;
    color: #FFFFFF !important;
}

.newsletter-input {
    border: none;
    border-bottom: 2px solid #1E4132;
    border-radius: 0% !important;
    box-shadow: none;
    text-align: center;
}

#newsletter .field {
    width: 400px;
    max-width: 80%;
    padding: 20px;
    margin: 0 auto;
}

/*
Footer
*/

#footer.section {
    padding: 1.5rem;
}

#footer p {
    padding: 20px;
}

#footer a {
    color: black !important;
}

/*
SPINNER
*/

.spinner {
    width: 40px;
    height: 40px;
    display: none;
    position: relative;
    margin: 0 auto;
  }
  
  .double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
  }
  
  .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
  }
  
  @-webkit-keyframes sk-bounce {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
  }
  
  @keyframes sk-bounce {
    0%, 100% { 
      transform: scale(0.0);
      -webkit-transform: scale(0.0);
    } 50% { 
      transform: scale(1.0);
      -webkit-transform: scale(1.0);
    }
  }