@font-face {
    font-family: 'body-regular';
    src: url('fonts/louis_george_cafe-webfont.woff2') format('woff2'),
         url('fonts/louis_george_cafe-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'body-bold';
    src: url('fonts/louis_george_cafe_bold-webfont.woff2') format('woff2'),
         url('fonts/louis_george_cafe_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'navigation';
    src: url('fonts/tahu-webfont.woff2') format('woff2'),
         url('fonts/tahu-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "body-regular", Arial, sans-serif;
    font-size: 2.0rem;
    line-height: 150%;
    background-color: rgb(128, 128, 128);
    display: flex;
    justify-content: center;
    height: 100%;
}

#preloader img, #project-preloader img {
    width: 90%;
    height: auto;
}

#preloader, #project-preloader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 50%;
    background-color: #93cdce;
    width: 60px;
    height: 60px;
    animation: icon-bg-colour 4s steps(1, end) infinite;
}

#project-preloader {
    opacity: 0;
}

#preloader::after, #project-preloader::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border: solid 5px #93cdce;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-animation: icon-border 1s ease-out infinite,
               icon-border-colour 4s steps(1, end) infinite;
    animation: icon-border 1s ease-out infinite,
               icon-border-colour 4s steps(1, end) infinite;
}

@-webkit-keyframes icon-border {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes icon-border {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes icon-bg-colour {
    0%, 100% {
        background-color: #93cdce;
    }
    
    25% {
        background-color: #fdb740;
    }
    
    50% {
        background-color: #5c787c;
    }
    
    75% {
        background-color: #45b757;
    }
}

@keyframes icon-bg-colour {
    0%, 100% {
        background-color: #93cdce;
    }
    
    25% {
        background-color: #fdb740;
    }
    
    50% {
        background-color: #5c787c;
    }
    
    75% {
        background-color: #45b757;
    }
}

@-webkit-keyframes icon-border-colour {
    0%, 100% {
        border-color: #93cdce;
    }
    
    25% {
        border-color: #fdb740;
    }
    
    50% {
        border-color: #5c787c;
    }
    
    75% {
        border-color: #45b757;
    }
}

@keyframes icon-border-colour {
    0%, 100% {
        border-color: #93cdce;
    }
    
    25% {
        border-color: #fdb740;
    }
    
    50% {
        border-color: #5c787c;
    }
    
    75% {
        border-color: #45b757;
    }
}

h1 {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(201, 230, 231, 0.9);
    width: 100%;
    padding: 20px;
    font-family: "navigation";
    font-size: 6.0rem;
    line-height: 130%;
    z-index: 1000;
    text-shadow: 1px 1px black;
    color: #FFF;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.h1-evites {
    background-color: rgba(253, 183, 54, 0.9);
}

.h1-workshops {
    background-color: rgba(114, 184, 105, 0.9);
}

h2 {
    font-family: "body-bold";
    font-size: 2.5rem;
    margin-bottom: 20px;
}

main {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background-color: rgb(255, 255, 255);
    opacity: 0;
    transition: opacity 3s;
}

header, footer, section {
    width: 100%;
}

header {
    padding-top: 16px;
    position: fixed;
    z-index: 10000;
    background-color: #FFF;
    max-width: 1200px;
    opacity: 0;
    transition: opacity 2s;
}

#top-bar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    min-height: 60px;
}

#logo-holder {
    display: inline-block;
    margin-left: 20px;
}

#hornet-logo {
    width: 208px;
}

#social {
    display: inline-block;
    margin-right: 20px;
    min-width: 145px;
}

#social a {
    padding-left: 5px;
}

#social a:hover {
    transform: scale(1.1);
}

#social img {
    height: 22px;
    width: auto;
}

#hamburger {
    position: absolute;
    right: 20px;
    margin-top: -26px;
    width: 32px;
    height: 27px;
    display: none;
}

.hamburger-hornet {
    background-image: url(../img/hamburger_hornet.svg);
}

.hamburger-evites {
    background-image: url(../img/hamburger_evites.svg);
}

.hamburger-workshops {
    background-image: url(../img/hamburger_workshops.svg);
}

nav {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

nav a {
    display: inline-block;
    font-family: "navigation";
    font-size: 2.5rem;
    color: #FFF;
    padding: 0 22px;
    border-right: solid 2px #93cdce;
    transition: color 0.5s, background-color 0.5s;
}

nav a:last-child {
    border-right: none;
}

nav a:hover, .active {
    color: #000;
    background-color: #FFF;
}

.nav-workshops a {
    border-color: #72B869;
}

.nav-evites a {
    border-color: #fdb740;
}

#hero-section {
    position: relative;
    overflow: hidden;
}

.hero {
    position: absolute;
    min-width: 900px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.slide {
    opacity: 0;
    z-index: 1;
    transition: opacity 2s;
}

.showing {
    opacity: 1;
    z-index: 2;
}

#scroll-down {
    position: absolute;
    left: 20px;
    bottom: 30px;
    width: 40px;
    height: auto;
    -webkit-animation: scroll 4s infinite;
    animation: scroll 4s infinite;
    z-index: 10;
}

/* .scroll-other {
    left: 50% !important;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
} */

@-webkit-keyframes scroll {
    0%{ opacity: 1; }
    10% { opacity: 0; }
    20% { opacity: 1; }
    30% { opacity: 0; }
    40% { opacity: 1; }
}

@keyframes scroll {
    0%{ opacity: 1; }
    10% { opacity: 0; }
    20% { opacity: 1; }
    30% { opacity: 0; }
    40% { opacity: 1; }
}

#years {
    position: absolute;
    right: 20px;
    bottom: 25px;
    z-index: 10;
    width: 156px;
    height: auto;
}

#content {
    clear: both;
}

.blue-bg {
    background-color: #c9e6e7;
    margin: 20px;
    padding: 10px;
    display: flex;
    justify-content: center;
}

.home-opening {
    border-bottom: solid 32px #93ccce;
}

.home-opening-workshops {
    background-color: #e1f0df;
    border-color: #72B869;
}

.home-opening > div {
    margin: 10px;
}

.home-opening-workshops > div {
    width: 50%;
}

.home-opening:not(.home-opening-workshops) > div:last-child {
    background-color:#fff;
    padding: 20px;
    text-align: center;
    min-width: 170px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-opening h2 {
    font-size: 6.0rem;
    line-height: 1;
}

.home-opening-workshops h2 {
    color: #72B869;
}

.home-opening-workshops p {
    margin-bottom: 10px;
}

.home-opening-workshops p:last-child {
    margin-bottom: 0;
}

#home-workshops {
    width: 750px;
}

.click-here-btn {
    display: inline-block;
    background-color: #72B869;
    padding: 10px;
    padding-bottom: 5px;
    color: #fff;
    font-family: 'navigation';
    font-size: 130%;
    line-height: 1;
    border: solid 1px transparent;
    transition: all 0.5s ease;
    cursor: pointer;
}

.click-here-btn:hover {
    background-color: #fff;
    color: #72B869;
    border-color: #72B869; 
}

@media only screen and (max-width: 880px) {

    .home-opening-workshops {
        display: block;
    }

    .home-opening-workshops > div {
        width: auto;
    }

    .home-opening-workshops > div:last-child {
        text-align: center;
        margin-top: 30px;
    }

    #home-workshops {
        width: 600px;
    }

}

@media only screen and (max-width: 680px) {
    
    .home-opening h2 {
        font-size: 5.0rem;
    }

    .home-opening > div:last-child {
        display: block;
    }
    
}

@media only screen and (max-width: 405px) {

    .home-opening-workshops h2 {
        font-size: 4rem;
    }

}

@media only screen and (max-width: 370px) {
    
    .home-opening h2 {
        font-size: 4.0rem; 
    }
    
}

@media only screen and (max-width: 560px) {
    
    .home-opening {
        display: block;
    }
    
}

.home-featured > div:first-child {
    margin: 10px;
}

.home-featured > div:last-child {
    display: flex;
}

@media only screen and (max-width: 905px) {
    
    .home-featured {
        display: block;
    }
    
    .home-featured > div:last-child {
        justify-content: space-between;
    }
    
}

@media only screen and (max-width: 470px) {

    .home-featured > div:last-child {
        flex-wrap: wrap;
        justify-content: center;
    }

}

.blue-bg .thumbs {
    width: 170px;
    height: 170px;
    min-height: 123px;
    margin: 10px;
    position: relative;
    counter-increment: thumbs-index;
    border: solid 3px transparent;
    border-radius: 0;
    transition: all 0.5s;
    overflow: hidden;
}

@media only screen and (max-width: 630px) {

    .blue-bg .thumbs {
        height: 0%;
        margin-bottom: 0;
    }
    
}

/* .blue-bg .thumbs::after {
    content: counter(thumbs-index);
    position: absolute;
    left: 50%;
    top: 47%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 200px;
    color: rgba(255, 255, 255, 0.95);
    font-family: "body-bold";
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
} */

/* .thumb-active::after {
    opacity: 1 !important;
} */

.blue-bg .thumbs:hover {
    cursor: pointer;
    border-color: #fff;
    border-radius: 50%;
}

/* .blue-bg .thumbs:hover::after {
    opacity: 1;
} */

.hidden {
    visibility: hidden;
    height: 0 !important;
    margin: 0 10px !important;
}

#home-projects-container {
    padding: 10px;
    position: relative;
}

#home-project-num {
    position: absolute;
    top: 70px;
    left: 20px;
    z-index: 100;
    font-size: 200px;
    font-family: "body-bold";
    color: #93cdce;
}

#home-projects {
    display: flex;
    justify-content: center;
}

#home-project-image-container {
    width: 65%;
    margin: 10px;
}

#home-project-image {
    width: 100%;
}

#home-project-info {
    margin: 10px;
    background-color: #93cdce;
    padding: 20px;
    width: 35%;
}

#home-project-info h3 {
    background-color: transparent!important;
    padding: 0;
    font-family: "body-bold";
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #000;
}

#home-project-info h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

#home-project-info p {
    font-size: 1.6rem;
}

footer {
    padding: 0 20px;
    padding-bottom: 30px;
    text-align: center;
    font-size: 1.1rem;
}

/* INTERNAL PAGES ////////////////////////////////////////////////////// */

.grecaptcha-badge { 
    visibility: hidden !important;
}

.recaptcha-terms {
    font-size: 1.2rem;
    text-align: left;
    line-height: 150%;
}

.recaptcha-terms a:hover {
    text-decoration: underline;
}

/* our story */

.internal, .contact, .evites, .workshops {
    display: flex;
}

.col-blue {
    background-color: #c9e6e7;
    margin: 20px;
    padding-top: 15px;
    width: 55%;
}

.col-blue h2 {
    font-size: 2.0rem;
    padding: 0 15px;
}

.col-blue p {
    margin-bottom: 20px;
    font-size: 1.6rem;
    padding: 0 15px;
}

.col-blue p:last-child {
    margin-bottom: 0;
}

.underline-space {
    text-decoration: underline;
}

h3 {
    background-color: #000;
    color: #93cdce;
    padding: 10px;
    font-size: 1.8rem;
}

.bold {
    font-family: "body-bold";
}

.no-blue-tap {
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 
}

.team {
    border-bottom: solid 3px #000;
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 15px;
    overflow: hidden;
}

.team-info p {
    line-height: 140%;
}

.team-info p:last-child {
    padding-bottom: 15px;
}

.team-name {
    font-family: "body-bold";
}

.team-title, .italic {
    font-style: italic;
}

.team a {
    border: solid 1px #93cdce;
    padding: 2px 5px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    margin-top: 5px;
    display: inline-block;
}

.team a:hover {
    background-color: #000;
    color: #93cdce;
    border-color: transparent;
}

.team-img {
    width: 100%;
    min-width: 180px;
    height: auto;
    margin-bottom: -9px;
}

.col-images {
    margin-top: 20px;
    margin-bottom: 12px;
    text-align: center;
    max-width: 540px;
}

.col-images img {
    width: 100%;
    max-width: 540px;
    margin-bottom: 20px;
}

.col-images img:last-child {
    margin-bottom: 0;
}

.inline-images, .inline-team-img {
    display: none;
}

/* contact us */
.col-white {
    margin: 20px;
    width: 50%;
    padding-top: 25px;
}

.col-white p {
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.col-white p:last-child {
    margin-bottom: 0;
}

.col-form {
    width: 50%;
    padding: 25px;
    padding-bottom: 0;
    text-align: center;
    margin-bottom: 40px;
}

.col-form h2 {
    padding-left: 0;
    font-size: 2.4rem;
    text-align: left;
}

.col-form p {
    font-size: 2.0rem;
}

.mailto {
    display: inline-block;
    border-bottom: solid 2px transparent;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.mailto:hover {
    border-bottom-color: #93cdce;
}

.form-ele-wrapper {
    position: relative;
}

label {
    display: block;
    margin-bottom: 5px;
    text-align: left;
}

input, textarea, select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    font-family: "body-regular";
    font-size: 2.0rem;
    -webkit-transition: all 1s;
    transition: all 1s;
    border: solid 2px transparent;
    color: #000;
    background-color: #FFF;
    border-radius: 0; 
}

select {
    padding-right: 45px;
    text-overflow: ellipsis;
    overflow: hidden; 
}

input:focus, textarea:focus, select:focus {
    outline: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important; 
    -webkit-text-fill-color: #000 !important;
    border-color: #fff !important;
}

.workshops-select {
    position: relative;
}

.workshops-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 30px;
    height: 30px;
    background-image: url(../img/scroll_down_workshops.svg);
    background-size: 30px;
    background-repeat: no-repeat;
    pointer-events: none;
    transform: translateY(-25%);
}

.workshops-form hr {
    border-color: #fff;
    margin-bottom: 20px;
    margin-top: 13px;
}

.workshops-form sup {
    font-size: 80%;
}

.workshops-form-error::before {
    content: "\2191  this is required \2191";
    position: absolute;
    bottom: calc(100% - 60px);
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    font-size: 1.6rem;
    font-family: "body-bold";
    padding: 5px 10px;
    background-color: #fff;
    color: #72B869;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; 
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
    white-space: nowrap;
}

.error::before {
    opacity: 1;
}

#submit, .payment-btn {
    font-family: "navigation";
    background-color: #000;
    color: #93cdce;
    display: inline-block;
    font-size: 3.0rem;
    padding: 10px 25px 5px 25px;
    border: solid 1px transparent;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    bottom: -20px;
}

#submit:hover, .payment-btn:hover {
    border-color: #93cdce;
    background-color: #FFF;
    cursor: pointer;
}

#feedback {
    display: none;
}

/* evites */
.evite-questions {
    padding-bottom: 20px;
    width: 60%;
    font-size: 1.6rem;
}

.evite-questions h2 {
    font-size: 4.0rem;
    color: #fdb740;
    line-height: 110%;
}

.workshops-questions h2, .open-closed {
    color: #72B869;
}

.evite-questions hr {
    border: none;
    border-top: solid 1px #fdb740;
    margin-bottom: 25px;
}

.workshops-questions hr {
    border-color: #72B869;
}

.evite-questions ul {
    margin-bottom: 20px;
}

.evite-questions li {
    list-style: disc;
    margin-left: 20px;
}

.col-form-evites {
    width: 40%;
    min-width: 370px;
    background-color: #FFF;
    padding: 0;
    border-left: solid 1px #fdb740;
}

.col-form-workshops {
    border-color: #72B869;
}

.col-form-evites p {
    padding: 0;
    text-align: left;
}

.evite-form {
    background-color: #fdb740;
    padding: 20px;
}

.workshops-form {
    background-color: #72b869 !important;
    color: #FFF;
    padding-bottom: 60px;
}

.col-form-evites #submit {
    color: #fdb740;
    position: relative;
    top: -20px;
}

.col-form-workshops #submit, .payment-btn {
    color: #72B869;
    min-height: 55px;
    top: -27px;
}

.col-form-evites #submit:hover {
    border-color: #fdb740;
}

.col-form-workshops #submit:hover, .payment-btn:hover {
    border-color: #72B869;
}

.payment-btn {
    position: static;
    top: auto;
    bottom: auto;
}

.support {
    margin-bottom: 20px !important;
    font-size: 1.4rem !important;
}

.support a:hover {
    text-decoration: underline;
}

#evites-samples {
    padding-left: 20px;
}

#evites-samples h2 {
    border: solid 1px #fdb740;
    padding: 10px;
    text-align: center;
}

#evites-samples p {
    margin-bottom: 0;
    font-size: 1.4rem;
}

#evite-contact {
    font-size: 1.8rem !important;
    margin-top: 30px;
}

#evite-contact a {
    font-weight: bold;
}

#evite-contact a:hover {
    text-decoration: underline;
}

/* workshops */
#workshops-menu {
    position: relative;
    /* height: 50px; */
    border: solid 1px #72B869;
    margin-bottom: 20px;
    cursor: pointer;
}

#workshops-menu::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 30px;
    height: 30px;
    background-image: url(../img/scroll_down_workshops.svg);
    background-size: 30px;
    background-repeat: no-repeat;
    pointer-events: none;
    transform: translateY(-25%);
}

.workshops-menu-active::after {
    transform: translateY(-65%) rotate(180deg) !important;
}

#workshops-menu > div:not(:first-child) {
    position: absolute;
}

#selected-workshop {
    font-size: 3rem;
    color: #73b969;
    font-family: "body-bold";
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 10px;
    padding-right: 50px;
    transition: background-color 0.5s;
}

#selected-workshop:hover {
    background-color: rgba(114, 184, 105, 0.1);
}

#workshops-options {
    display: none;
    top: 100%;
    left: -1px;
    width: calc(100% + 2px);
    color: #FFF;
    border: solid 1px #72B869;
}

.workshops-option-item {
    padding: 10px;
    border-bottom: solid 1px #FFF;
    background-color: #73b969;
    cursor: pointer;
    transition: color 0.5s;
}

.workshops-option-item:last-child {
    border-bottom: none;
}

.workshops-option-item:hover {
    color: #000;
}

.workshops-content {
    font-size: 1.6rem;
}

.workshops-content:not(#workshop0) {
    display: none;
}

.strike-thru {
    text-decoration: line-through;
}

.workshops-alpacas {
    display: flex;
    gap: 20px;
}

.workshops-content .mailto {
    line-height: 1.2; 
}

.workshops-content .mailto:hover {
    border-color: #73b969;
}

/* fast food menu */
.col-white-ff p {
    font-size: 1.6rem;
    line-height: 150%;
}

.col-white-ff p:first-child {
    font-size: 1.8rem !important;
}

.ff-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}

.ff-options:last-child {
    margin-bottom: 0;
}

.ff-options:hover {
    cursor: pointer;
}

.ff-radio {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #93cdce;
    border: solid 1px #79aaad;
    margin-top: 4px;
    position: relative;
}

.ff-radio::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #79aaad;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.ff-radio-active::after {
    opacity: 1;
    -webkit-animation: radio 0.5s;
    animation: radio 0.5s;
}

@-webkit-keyframes radio {
    from {width: 0; height: 0;}
    to {width: 10px; height: 10px;}
}

@keyframes radio {
    from {width: 0; height: 0;}
    to {width: 10px; height: 10px;}
}

.ff-info {
    margin-left: 10px;
}

.ff-info h4 {
    font-family: "body-bold";
    font-size: 2.0rem;
}

.ff-info span {
    color: #79aaad;
}

.ff-col-form {
    background-color: #FFF;
    padding: 0;
}

#ff-form-bg {
    background-color: #c9e6e7;
    padding: 30px;
    padding-bottom: 0;
}

.ff-col-form, .ff-col-form input {
    font-size: 1.6rem !important;
}

.ff-col-form p {
    font-size: 1.8rem !important;
    text-align: left;
    padding: 0;
}

#selections {
    text-align: left;
    margin-top: 20px;
}

#selections span {
    display: inline-block;
    float: right;
}

#sel-head {
    font-family: "body-bold";
    padding-bottom: 5px;
    border-bottom: solid 1px #000;
    margin-bottom: 5px;
}

#sel-total {
    font-family: "body-bold";
    padding-top: 5px;
    border-top: solid 1px #000;
    margin-bottom: 20px;
    margin-top: 5px;
    text-align: right;
    display: none;
}

#feedback p {
    text-align: center;
}

#feedback p:last-child {
    padding-bottom: 30px;
}

.ui-datepicker {
    font-size: 1.6rem !important;
}

.ui-state-default {
    line-height: 200% !important;
}

.ui-datepicker td a {
    text-align: center !important;
}

.ui-state-highlight {
    border-color: #c5c5c5 !important;
    background-color: #c5c5c5 !important;
    color: #000 !important;
}

.ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid #79aaad !important;
    background-color: #79aaad !important;
}

.ui-widget-header .ui-icon {
    -webkit-transform: scale(1.3) !important;
    transform: scale(1.3) !important;
}

/* what we do */
.wwd {
    padding: 20px;
}

.wwd .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 1.4rem;
}

.wwd-text, .wwd-image {
    -webkit-box-flex: 50%;
    -ms-flex: 50%;
    flex: 50%;
}

.wwd-image {
    text-align: center;
}

.wwd-image img {
    width: 500px;
    margin: 0 auto;
}

.wwd-first-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;  
    -webkit-box-align: end;  
    -ms-flex-align: end;  
    align-items: flex-end;
}

.gap {
    min-width: 40px;
}

.wwd-text {
    font-size: 1.6rem;
}

.wwd-text #intro {
    padding: 20px;
    background-color: #c9e6e7;
    margin: 0;
    margin-bottom: 20px;
    max-width: 100%;
    columns: 2;
    column-gap: 20px;
    font-size: 1.8rem;
}

.wwd-text #intro p:first-child {
    margin-bottom: 20px;
}

.wwd-text h2 {
    font-size: 4.0rem;
    color: #79aaad;
    line-height: 110%;
}

.wwd-text li {
    list-style: disc;
    margin-left: 20px;
}

.wwd hr {
    border: none;
    border-top: solid 1px #93cdce;
    margin-bottom: 25px;
    margin-top: 20px;
}

.wwd-text a {
    color: #fdb740;
    font-family: "body-bold";
}

.wwd-text a:hover {
    text-decoration: underline;
}

.smaller-image {
    width: 350px !important;
}

.wwd-mobile {
    display: none;
}

/* portfolio */

#portfolio h1 {
    position: static;
}

#project-container {
    padding: 20px;
    position: relative;
    overflow: hidden;
}

#project-container img {
    max-height: 500px;
    display: block;
    margin: 0 auto;
}

#project-container p {
    font-size: 1.6rem;
    line-height: 150%;
    display: flex;
}

#project-container p:last-child {
    margin-top: 5px;
}

#project-container a {
    color: #79aaad;
}

#project-container a:hover {
    text-decoration: underline;
}

.project-label {
    color: #79aaad;
    font-family: "body-bold";
}

#portfolio hr {
    border: none;
    border-top: solid 1px #93cdce;
}

#projects {
    border-top: solid 10px #93cdce;
    background-color: rgba(147, 205, 206, 0.5);
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#projects div {
    position: relative;
    max-width: 373px;
    max-height: 260px;
    height: auto;
    margin: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow: hidden;
}

#projects div::after {
    content: attr(data-label);
    position: absolute;
    bottom: -30px;
    left: 0;
    font-size: 1.6rem;
    text-align: center;
    color: #FFF;
    font-family: "body-bold";
    background-color: rgba(147, 205, 206, 1);
    width: 100%;
    height: 30px;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

#projects img {
    width: 373px;
    border: solid 1px #93cdce;
}

#projects div:hover {
    cursor: pointer;
}

#projects div:hover::after {
    bottom: 0;
}

#other-port {
    padding: 20px;
    padding-bottom: 40px;
    max-width: 600px;
}

#other-port h2 {
    color: #93cdce;
    font-size: 4.0rem;
    font-family: "body-regular";
    margin-top: 40px;
    line-height: 110%;
}

#other-port p {
    font-size: 1.4rem;
}


/* MEDIA QUERIES ////////////////////////////////////////////////////// */

@media only screen and (max-width: 1020px) {
    
    #home-project-num {
        font-size: 150px;
        top: 50px;
    }
    
    #home-project-image-container {
        width: 60%;
    }
    
    #home-project-info {
        width: 40%;
    }
    
}

@media only screen and (max-width: 980px) {
    
    .col-images {
        width: 45%;
    }
    
}

@media only screen and (max-width: 835px) {
    
    .team-img {
        display: none;
    }
    
    .inline-team-img {
        display: inline-block;
        width: 40%;
        margin-bottom: -7px;
        margin-left: 15px;
    }
    
    .info {
        display: inline-block;
        width: 50%;
    }
    
}

@media only screen and (max-width: 800px) {
    
    #hamburger {
        display: block;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }
    
    #hamburger:hover {
        cursor: pointer;
/*        background-image: url(../img/close.svg);*/
    }
    
/*
    #hamburger:hover + nav {
        display: block;
    }
    
    nav:hover {
        display: block;
    }
*/
    
    nav {
        position: absolute;
        width: auto;
        /* left: 20px; */
        right: 20px;
        display: block;
        text-align: center;
        display: none;
        -webkit-transition: all 0.5s; 
        transition: all 0.5s;
        z-index: 1000;
    }
    
    nav a {
        display: block;
        padding: 10px 20px;
        border-right: none;
        border-bottom: solid 2px #93cdce;
    }

    nav a:last-child {
        border-bottom: none;
    }
    
    #home-project-num {
        font-size: 200px;
        top: 70px;
    }
    
    #home-projects {
        display: block;
        padding-right: 20px;
    }
    
    #home-project-image-container, #home-project-info {
        width: 100%;
    }

    h1 {
        font-size: 4.0rem;
        line-height: 130%;
        padding-bottom: 5px; 
    }
    
    .evites {
        display: block;
    }
    
    .evite-questions, .col-form-evites {
        width: 100% !important;
        min-width: auto;
        border: none;
        margin-left: 0;
    }
    
    .evite-questions {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    #evites-samples {
        padding-right: 20px;
    }
    
    #evites-samples img {
        width: 100%;
        max-width: 350px;
    }
    
    #evites-samples h2 {
        margin-top: 30px;
    }
    
    #evites-samples p {
        text-align: center;
    }

    .wwd .row {
        display: block;
        width: 100%;
    }

    .wwd-text #intro {
        columns: 1;
    }

    .wwd-text, .wwd-image {
        width: 100%;
    }
    
    .gap {
        width: 100%;
        height: 20px;
    }

    .wwd-mobile {
        display: block;
    }

    .wwd-desktop, .evites-desktop {
        display: none !important;
    }
    
    #projects div {
        max-height: auto !important;
    }

    #projects div::after {
        bottom: 0;
    }
    
}

@media only screen and (max-width: 650px) {
    
    #home-project-num {
        font-size: 150px;
        top: 50px;
    }
    
}

@media only screen and (max-width: 635px) {
    
    .contact {
        display: block;
    }
    
    .col-white, .col-form {
        width: 100%;
    }
    
    .col-white {
        margin: 0;
        padding: 20px;
    }
    
    .col-form {
        margin-left: 0;
        margin-right: 0;
    }
    
}

@media only screen and (max-width: 540px) {
    
    #home-project-num {
        font-size: 120px;
        top: 50px;
    }
    
    .col-images {
        display: none;
    }
    
    .col-blue {
        width: 100%;
    }
    
    .inline-images {
        display: block;
        margin-bottom: 20px;
    }
    
}

@media only screen and (max-width: 414px) {
    
    #home-project-num {
        font-size: 80px;
        top: 40px;
    }
    
}

@media only screen and (max-width: 320px) {
    
    #home-project-num {
        font-size: 70px;
        top: 30px;
    }
    
}
