@import url(https://fonts.googleapis.com/css?family=Work+Sans:300,400,600);

body {
    font-family: 'Work Sans';
    letter-spacing: -0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.button {
    border-radius: 100px;
}

.button.button-secondary {
    color: #4C430E;
    background-color: #fff;
    border-color: #D8CF98;
}

.button.button-secondary:hover,
.button.button-secondary:focus {
    background-color: #D2B929;
    border-color: #AF9B2D;
    color: #000;
}

.popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
}

.button-large {
    height: 48px;
    font-size: 16px;
    line-height: 48px;
}

.card {
    padding-bottom: 1em;
}

.card-body {
    padding-top: 1em;
    padding-bottom: 1em;
}

.contact {
    background: #1A4C46;
    background: linear-gradient(45deg, #1A4C46 0%, #1B5A6D 100%);
    color: #fff;
}

.footer .logo {
    margin-bottom: 1em;
    max-width: 150px;
    opacity: 0.2;
}

.icon {
    max-width: 75px;
}

.logo {
    max-width: 300px;
}

.modal-container {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
}

.modal-body {
    background: white;
    min-width: 380px;
    max-width: 420px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    margin: auto;
    padding: 1em;
}

.modal-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    background: black;
    background: rgba(0, 0, 0, .6);
    top: 0;
    left: 0;
}

.section {
    padding: 8rem 0 7rem;
}

.section.hero {
    background: url('../img/hero.jpg') center left no-repeat;
    background-size: cover;
    padding-top: 20rem;
    padding-bottom: 20rem;
}

.u-hidden {
    display: none !important;
}

.u-text-center {
    text-align: center;
}

/* Animations */
@-webkit-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

/* > 550 */
@media (min-width: 550px) {
    .section.hero {
        /* Reduce top and bottom padding */
    }
}

/* > 750 */
@media (min-width: 750px) {

}

/* > 1000 */
@media (min-width: 1000px) {

}