/* Color Scheme
Blue - #6e87a2
Dark Gray - #7f7f7f
Light Grey - #cbcbcb
Lightest Grey - #f1f1f1
*/

/* Version 2.0:
Updates to Project Inquiry Form and Get in Touch
*/

@-ms-viewport{
  width: device-width;
}

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    overflow-x: hidden;
    -webkit-text-size-adjust: none;
}

h1 {
    color: #6e87a2;
    font-family: 'cormorant garamond', 'times', serif;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 4px;
    margin: 5px;
    text-align: center;
    text-transform: uppercase;
}

h2 {
    color: #6e87a2;
    font-family: 'cormorant garamond', 'times', serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

h3 {
    color: #7f7f7f;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 0 10px 0 10px;
    text-align: center;
    text-transform: uppercase;
}

h4 {
    color: #6e87a2;
    font-family: 'cormorant garamond', 'times', serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 10px 10px 10px;
    text-align: center;
    text-transform: uppercase;
}

p {
    color: #7f7f7f;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

hr {
    background: #7f7f7f;
    border: none;
    height: 1px;
    margin: 0 auto 0 auto;
    opacity: 0.3;
    width: 100px;
}

a {
    color: #7f7f7f;
    text-decoration: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/* Fixed Header */
.logo {
    align-items: center;
    display: flex;
    height: 75px;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100px;
    z-index: 6;
}

.logo a {
    cursor: pointer;
    display: block;
}

.logo img {
    width: 60px;
}

.menu-button {
    align-items: center;
    background: #fff;
    display: flex;
    height: 75px;
    justify-content: center;
    position: fixed;
    right: 0;
    top: 0;
    width: 100px;
    z-index: 10;
}

.menu-button .hamburger-menu {
    box-sizing: content-box;
    cursor: pointer;
    height: 18px;
    position: relative;
    width: 25px;
}

.hamburger-bar {
    background-color: #6e87a2;
    height: 1px;
    margin: 0;
    position: absolute;
    transition: .7s ease;
    width: 15px;
}

.short-left {
    top: 0;
    transform-origin: left top;
}

.long {
    left: 0;
    top: 8.5px;
    width: 24px;
}

.short-right {
    bottom: 0;
    transform-origin: left bottom;
}

.menu-button div:hover .hamburger-bar {
    width: 24px;
}

.bar-left {
    top: 0;
    transform: rotate(45deg);
    transform-origin: left bottom;
    width: 24px;
}

.bar-center {
    left: -15px;
    opacity: 0;
}

.bar-right {
    bottom: 0;
    transform: rotate(-45deg);
    transform-origin: left top;
    width: 24px;
}

.menu-bg {
    background: rgba(0,0,0,0.4);
    height: 100%;
    opacity: 0;
    position: fixed;
    right: -100%;
    transition: opacity 1s 0s, right 0.1s 1s;
    width: 100%;
    z-index: 7;
}

.menu-bg.show-bg {
    opacity: 1;
    right: 0;
    transition: opacity 1s 0.1s, right 0.1s 0s;
}

.menu {
    align-items: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    opacity: 0;
    position: fixed;
    right: -30%;
    transition: 1s all ease;
    width: 30%;
    z-index: 8;
}

.menu.show {
    opacity: 1;
    right: 0;
    transition: 1s all ease;
}

.menu ul {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    height: 80%;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu ul li {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 5px;
    margin: 20px 0;
    text-transform: uppercase;
}

.menu ul li a {
    color: #6e87a2;
    position: relative;
}

.menu ul li a::after {
    background: #6e87a2;
    bottom: 0;
    content: '';
    height: 2px;
    left: 0;
    position: absolute;
    transition: 0.7s ease;
    width: 0;
}

.menu ul li a:hover::after {
    width: 100%;
}

.social-menu {
    align-items: center;
    display: flex;
    height: 20%;
    justify-content: center;
}

.social-menu a {
    font-size: 18px;
    margin: 0 20px;
}

.social-menu a:hover {
    opacity: 0.7;
}

/* Landing Page */
.project-landing {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    left: 0;
    margin: 0;
    padding: 0;
    position: relative;
    top: 0;
    width: 100vw;
}

.project-landing-blurb {
    align-items: center;
    background: #f1f1f1;
    bottom: 0;
    display: flex;
    flex-direction: column;
    height: 94%;
    justify-content: center;
    left: 3.5%;
    position: absolute;
    width: 32%;
}

.project-landing-blurb .title {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 35%;
    justify-content: center;
    position: relative;
    width: 100%;
}

.project-landing-blurb .taller {
    height: 45%;
}

.project-landing-blurb .solo {
    justify-content: flex-start;
}

.title img {
    margin: 0;
    opacity: 0.3;
    padding: 0;
    width: 100px;
}

.project-landing-blurb .info {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 65%;
    justify-content: flex-start;
    position: relative;
    width: 100%;
}

.project-landing-blurb .shorter {
    height: 55%;
}

.project-landing p {
    font-size: 15px;
    margin: 0;
    padding: 0 12% 40px 12%;
    text-align: center;
}

.project-landing p span {
    font-style: italic;
}

.arrow {
    bottom: 0;
    display: flex;
    flex-direction: column;
    height: 100px;
    justify-content: flex-end;
    position: absolute;
    width: 100%;
}

.down-arrow {
    height: 60px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    width: 100%;
}

.down-arrow .line {
    border-left: 1px solid #7f7f7f;
    height: 60px;
    left: 50%;
    margin: 0;
    opacity: 0.5;
    padding: 0;
    position: absolute;
    width: 50%;
}

.arrow h5 {
    color: #6e87a2;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 5px 0 15px 0;
    padding: 0;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}

.arrow h5::before {
    color: #7f7f7f;
    content: '\22CE';
    font-size: 18px;
    left: 0;
    letter-spacing: -1.6px;
    margin: auto;
    opacity: 0.4;
    position: absolute;
    text-align: center;
    top: -23px;
    width: 100%;
}

.project-photo {
    background-size: cover !important;
    height: 93%;
    position: absolute;
    right: 3.5%;
    top: 0;
    width: 58%;
}

.burton-getaway-photo {
    background: url(imgs/burton-getaway-1.jpg);
    background-position: top center;
}

.johns-creek-photo {
    background: url(imgs/johns-creek-3.jpg);
    background-position: top center;
}

.buckhead-traditional-photo {
    background: url(imgs/buckhead-traditional-1.jpg);
    background-position: center;
}

.urban-retreat-photo {
    background: url(imgs/urban-retreat-1.jpg);
    background-position: center;
}

.boathouse-photo {
    background: url(imgs/burton-boathouse-1.jpg);
    background-position: center;
}

.english-country-photo {
    background: url(imgs/english-country-9.jpg);
    background-position: center;
}

.buckhead-bar-photo {
    background: url(imgs/buckhead-bar-1.jpg);
    background-position: right center;
}

.river-retreat-photo {
    background: url(imgs/river-retreat-4.jpg);
    background-position: center;
}

.brookhaven-tudor-photo {
    background: url(imgs/brook-tudor-14.jpg);
    background-position: center;
}

.collier-photo {
    background: url(imgs/collier-classic-6.jpg);
    background-position: center;
}

.sandy-springs-photo {
    background: url(imgs/sandy-springs-5.jpg);
    background-position: center;
}

.virginia-tidewater-photo {
    background: url(imgs/VA-tidewater-14.jpg);
    background-position: center;
}

.jeffersonian-photo {
    background: url(imgs/jeffersonian-7.jpg);
    background-position: center;
}

/* Solution */
.solution {
    margin: 200px auto 0 auto;
    max-width: 1280px;
    width: 90%;
}

.solution h2, .more-projects h2 {
    text-align: center;
}

.solution-details {
    margin-top: 40px;
}

.flex-block {
    align-items: stretch;
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.column {
    display: flex;
    flex-direction: column;
    margin: 0 10px;
    overflow: hidden;
}

.column.big {
    width: 60%;
}

.column.small {
    width: 40%;
}

.column.full {
    width: 100%;
}

.column.half {
    width: 50%;
}

.column.third {
    width: 33.333%;
}

.column.medbig {
    width: 55%;
}

.column.medsmall {
    width: 45%;
}

.solution-text {
    align-items: center;
    background: #f1f1f1;
    display: flex;
    flex: 1;
    justify-content: center;
    margin: 10px 0;
    padding: 0;
    width: 100%;
}

.solution-text p {
    line-height: 1.8;
    padding: 50px;
}

.solution-text p a {
    color: #6e87a2;
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.solution-text p a::after {
    background: #6e87a2;
    bottom: 4px;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    transition: 0.7s ease;
    width: 0;
}

.solution-text p a:hover::after {
    width: 100%;
}

.solution-details img {
    flex: 1;
    margin: 10px 0;
    object-fit: cover;
    width: 100%;
}

/* More Projects */
.more-projects {
    margin: 80px auto 150px auto;
    max-width: 960px;
    width: 90%;
}

.more-projects ul {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 3;
    list-style: none;
    margin: 20px auto 0 auto;
    padding: 0;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.more-projects li {
    display: inline;
    white-space: nowrap;
}

.more-projects li:not(:last-child):not(:nth-child(4)):not(:nth-child(10)):after {
    color: #6e87a2;
    content: "|";
}

.more-projects li a {
    margin: 10px;
    padding: 0;
    position: relative;
}

.more-projects li a:after {
    background: #7f7f7f;
    bottom: 0;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    transition: 0.7s ease;
    width: 0;
}

.more-projects li a:hover:after {
    width: 100%;
}

/* Contact */
.contact-section {
    align-items: center;
    background: #f1f1f1;
    bottom: 0;
    display: flex;
    flex-direction: column;
    height: 90vh;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    top: 10vh;
    width: 86%;
}

.contact-section .contact-text {
    padding: 20px 40px 20px 40px;
    text-align: center;
}

.contact-section img {
    opacity: 0.3;
    width: 100px;
}

.contact-section h2 {
    margin: 20px auto 30px auto;
    padding: 10px 0;
}

.contact-section p {
    max-width: 600px;
    margin: 20px auto;
    line-height: 2;
}

.contact-section .contactname {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1.8px;
    line-height: 1.8;
    margin: 0 auto;
    padding: 0;
}

.contact-section a {
    color: #7f7f7f;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 2;
    margin: 0 auto;
    text-decoration: none;
}

.contact-section a:hover {
    opacity: 0.7;
}

.contact-section .formlink {
    color: #6e87a2;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 10px 0 60px 0;
    padding: 0;
    position: relative;
    text-transform: uppercase;
    -webkit-transition-duration: 0.7s;
    -moz-transition-duration: 0.7s;
    -o-transition-duration: 0.7s;
    transition-duration: 0.7s;
}

.contact-section .formlink:hover {
    opacity: 1;
}

.contact-section .formlink span:after {
    background-color: #6e87a2;
    bottom: 0;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    transition: width 0.5s ease;
    width: 0;
}

.contact-section .formlink:hover span:after {
    width: 100%;
}

.contact-section hr {
    margin: 20px auto;
    width: 50px;
}

.contact-section .social-icons {
    margin: 10px 0 0;
}

.contact-section .social-icons a {
    font-size: 20px;
    padding: 0 10px;
}

/* Responsive Styling */
@media (max-width: 1550px) {
    .logo {
        background: #fff;
    }
}
@media (max-width: 1366px) {
    .menu {
        right: -40%;
        width: 40%;
    }
    h1 {
        font-size: 30px;
    }
    .title img {
        width: 90px;
    }
    .project-landing p {
        padding: 0 6% 40px 6%;
    }
    .contact-section {
        width: 90%;
    }
}
@media (max-width: 1200px) {
    .project-landing-blurb {
        height: 98%;
        left: 2%;
        width: 34%;
    }
    .project-photo {
        height: 98%;
        right: 2.5%;
        width: 60%;
    }
}
@media (max-width: 1080px) {
    .menu {
        right: -50%;
        width: 50%;
    }
    h2 {
        font-size: 26px;
    }
    .contact-section {
        height: 91vh;
        top: 9vh;
        width: 95%;
    }
}
@media (max-width: 1051px) {
    .more-projects li:nth-child(4):after, .more-projects li:nth-child(9):after {
        content: "\00a0\00a0" !important;
    }
    .more-projects li:nth-child(5):after, .more-projects li:nth-child(10):after {
        color: #6e87a2;
        content: "|";
    }
}
@media (min-width: 1025px) {
    .project-landing-mobile {
        display: none;
    }
}
@media (max-width: 1024px) {
    .project-landing {
        display: none;
    }
    .project-landing-mobile {
        display: block;
        height: 145vh;
        height: calc(var(--vh, 1vh) * 145);
        position: relative;
        width: 100%;
    }
    .project-landing-mobile.solo-mobile {
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
    }
    .project-photo {
        height: 49%;
        left: 2%;
        top: 0;
        width: 96%;
    }
    .project-landing-mobile.solo-mobile .project-photo {
        height: 70%;
    }
    .project-landing-blurb {    
        height: 50%;
        left: 2%;
        width: 96%;
    }
    .project-landing-mobile.solo-mobile .project-landing-blurb {
        height: 29%;
    }
    .project-landing-blurb .title {
        height: 35%;
    }
    .project-landing-blurb .title img {
        width: 80px;
    }
    h1 {
        font-size: 28px;
        letter-spacing: 3px;
    }
    h2 {
        font-size: 24px;
    }
    p {
        font-size: 15px;
    }
    .project-landing-blurb .info {
        align-items: center;
        flex-direction: row;
        height: 65%;
        justify-content: space-around;
        position: relative;
        width: 90%;
    }
    .project-landing-blurb .info.three {
        width: 96%;
    }
    .project-landing-blurb .info div {
        height: 60%;
        margin: 0;
        width: 50%;
    }
    .project-landing-blurb .info p {
        margin: 0 10%;
        text-align: left;
    }
    .project-landing-blurb .info.three p {
        margin: 0 5%;
    }
    .project-landing-blurb .info h4 {
        margin: 0 10% 15px 10%;
        text-align: left;
    }
    .project-landing-blurb .info.three h4 {
        margin: 0 5% 15px 5%;
    }
    .project-landing-blurb .arrow {
        bottom: 0;
    }
    .project-landing-blurb .arrow.small {
        bottom: -15px;
    }
    .solution {
        margin: 80px auto 0 auto;
        width: 98%;
    }
    .solution-text p {
        padding: 30px;
    }
    .more-projects {
        width: 88%;
        margin: 10vh auto;
    }
    .more-projects a {
        font-size: 11px;
    }
    
    .contact-section {
        width: 96%;
    }
    
    .contact-section img {
        width: 80px;
    }
    .contact-section h2 {
        margin: 15px auto 20px auto;
    }
    .contact-section hr {
        margin: 15px auto;
    }
    .contact-section .contactname {
        font-size: 18px;
        letter-spacing: 1px;
        line-height: 1.8;
    }
    .contact-section p, .contact-section a {
        font-size: 15px;
        line-height: 1.8;
    }
    .contact-section .social-icons a {
        font-size: 18px;
    }
}
@media (max-width: 1024px) and (max-height: 500px) {
    .logo, .menu-button {
        height: 60px;
        width: 75px;
    }
    .logo img {
        width: 50px;
    }
    .menu ul li {
        font-size: 18px;
        margin: 10px 0;
    }
    .project-landing-mobile {
        height: 860px;
    }
    .project-landing-mobile.solo-mobile {
        height: 650px;
    }
    .project-photo {
        height: 48%;
    }
    .project-landing-blurb {
        height: 51%;
    }
    .project-landing-blurb .info p, .project-landing-blurb .info h4 {
        margin: 0 2% 10px 2%;
    }
    .solution {
        margin: 0 auto;
    }
    .more-projects {
        margin: 80px auto;
    }
    .contact-section {
        height: 100vh;
    }
}
@media (max-width: 1024px) and (min-height: 1300px) {
    .project-landing-mobile {
        height: 125vh;
        height: calc(var(--vh, 1vh) * 125);
    }
    .project-landing-mobile.small-height {
        height: 120vh;
        height: calc(var(--vh, 1vh) * 120);
    }
    .project-photo {
        height: 62%;
    }
    .small-height .project-photo {
        height: 65%;
    }
    .project-landing-blurb {
        height: 37%;
    }
    .small-height .project-landing-blurb {
        height: 34%;
    }
    .project-landing-blurb .title {
        height: 44%;
    }
    .project-landing-blurb .info {
        height: 56%;
    }
    .small-height .project-landing-blurb .title, .small-height .project-landing-blurb .info {
        height: 50%;
    }
}
@media (max-width: 936px) {
    .more-projects {
        width: 95%;
    }
}
@media (max-width: 868px) {
    .more-projects li:nth-child(3):after, .more-projects li:nth-child(7):after, .more-projects li:nth-child(11):after {
        content: "\00a0\00a0" !important;
    }
    .more-projects li:nth-child(4):after, .more-projects li:nth-child(9):after {
        color: #6e87a2;
        content: "|" !important;
    }
    .more-projects {
        width: 92%;
    }
}
@media (max-width: 803px) {
    .more-projects {
        width: 99%;
    }
}
@media (min-width: 769px) {
    .menu ul li.mobile-about {
        display: none;
    }
}
@media (max-width: 768px) {
     .menu ul li.desktop-about {
        display: none;
    }
    .menu ul li.mobile-about {
        display: block;
    }
    h2 {
        font-size: 22px;
    }
    h4 {
        font-size: 17px;
        font-weight: 700;
    }
    p {
        font-size: 15px;
    }
    .menu {
        right: -70%;
        width: 70%;
    }
    .project-landing-mobile {
        height: 150vh;
        height: calc(var(--vh, 1vh) * 150);
    }
    .project-landing-mobile.small-height {
        height: 140vh;
        height: calc(var(--vh, 1vh) * 140);
    }
    .project-photo {
        height: 50%;
    }
    .small-height .project-photo {
        height: 53%;
    }
    .project-landing-blurb {
        height: 49%;
    }
    .small-height .project-landing-blurb {
        height: 46%;
    }
    .project-landing-blurb .title {
        height: 32%;
    }
    .small-height .project-landing-blurb .title {
        height: 37%;
    }
    .project-landing-blurb .info {
        flex-direction: column;
        height: 68%;
        justify-content: space-around;
    }
    .small-height .project-landing-blurb .info {
        height: 63%;
    }
    .project-landing-blurb .info div {
        height: auto;
        margin: 30px 0;
        width: 100%;
    }
    .project-landing-blurb .arrow.small {
        bottom: 20px;
    }
    .solution {
        margin: 80px auto 0 auto;
    }
    .solution-details img, .solution-text {
        margin: 5px 0;
    }
    .column {
        margin: 0 5px;
    }
    .contact-section h2 {
        margin: 10px auto 15px auto;
    }
    .contact-section .contactname {
        font-size: 18px;
        letter-spacing: 1px;
    }
    .contact-section p, .contact-section a {
        font-size: 16px;
    }
    .contact-section .social-icons a {
        font-size: 18px;
    }
}
@media (max-width: 768px) and (max-height: 500px) {
    p {
        font-size: 14px;
    }
    .project-landing-mobile, .project-landing-mobile.small-height {
        height: auto;
    }
    .project-photo, .small-height .project-photo {
        height: 350px;
        position: relative;
    }
    .small-height .project-landing-blurb {
        height: auto;
    }
    .project-landing-blurb {
        height: auto;
        margin-top: 1%;
        padding: 30px 0;
        position: relative;
    }
    .project-landing-blurb .title {
        height: auto;
        margin-bottom: 30px;
    }
    .project-landing-blurb .info {
        height: auto;
    }
    .solution {
        margin: 60px auto;
    }
    .more-projects {
        margin: 80px auto;
    }
}
@media (max-width: 747px) {
    .more-projects {
        width: 85%;
    }
    .more-projects li:nth-child(7):after, .more-projects li:nth-child(11):after {
        content: "|" !important;
    }
    .more-projects li:nth-child(6):after, .more-projects li:nth-child(10):after, .more-projects li:nth-child(12):after {
        content: "\00a0\00a0\00a0" !important;
    }
}
@media (max-width: 728px) {
    .more-projects {
        width: 92%;
    }
    
}
@media (max-width: 673px) {
    .more-projects {
        width: 99%;
    }
    
}
@media (max-width: 627px) {
    .more-projects {
        width: 90%;
    }
    .more-projects li:nth-child(2):after, .more-projects li:nth-child(4):after, 
    .more-projects li:nth-child(7):after {
        content: "\00a0" !important;
    }
    .more-projects li:nth-child(3):after, .more-projects li:nth-child(6):after, .more-projects li:nth-child(5):after {
        content: "|" !important;
    }
    
}
@media (min-width: 551px) {
    .dropdown {
        display: none;
    }
}
@media (max-width: 550px) {
    .mobile-header-wrapper {
        position: fixed;
        top: 0;
        width: 100%;
        height: 60px;
        background-color: #fff;
        z-index: 9;
    }
    .logo {
        height: 60px;
        width: 80px;
    }
    .logo img {
        width: 45px;
    }
    .menu-button {
        height: 60px;
        width: 80px;
    }
    .hamburger-bar.short-left, .hamburger-bar.short-right, .hamburger-bar.long {
        width: 24px;
    }
    .menu {
        right: -100%;
        width: 100%;
    }
    .project-landing-mobile {
        height: 175vh;
        height: calc(var(--vh, 1vh) * 175);
    }
    .project-landing-mobile.small-height {
        height: 160vh;
        height: calc(var(--vh, 1vh) * 160);
    }
    .project-photo {
        /* Firefox */
        height: -moz-calc(41% - 60px);
        /* WebKit */
        height: -webkit-calc(41% - 60px);
        /* Opera */
        height: -o-calc(41% - 60px);
        /* Standard */
        height: calc(41% - 60px);
        top: 60px;
    }
    .small-height .project-photo {
         /* Firefox */
        height: -moz-calc(45% - 60px);
        /* WebKit */
        height: -webkit-calc(45% - 60px);
        /* Opera */
        height: -o-calc(45% - 60px);
        height: calc(45% - 60px);
    }
    .project-landing-blurb {
        height: 58%;
    }
    .small-height .project-landing-blurb {
        height: 54%;
    }
    .project-landing-blurb .title {
        height: 25%;
    }
    .small-height .project-landing-blurb .title {
        height: 29%;
    }
    .project-landing-blurb .title img {
        margin: 0;
        width: 65px;
    }
    .project-landing-blurb .info {
        height: 75%;
    }
    .small-height .project-landing-blurb .info {
        height: 71%;
    }
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 20px;
        letter-spacing: 2px;
    }
    h3 {
        font-size: 12px;
        letter-spacing: 2px;
        font-weight: 400;
    }
    .project-landing-blurb .info div {
        margin: 15px 0;
    }
    .project-landing-blurb .info h4 {
        margin: 0 2% 10px 2%;
    }
    .project-landing-blurb .info.three h4 {
        margin: 0 2% 10px 2%;
    }
    .project-landing-blurb .info p {
        margin: 0 2%;
    }
    .project-landing-blurb .info.three p {
        margin: 0 2%;
    }
    .project-landing-blurb .arrow {
        display: none;
    }
    .solution {
        margin: 80px auto 0 auto;
    }
    .solution-text p {
        padding: 25px;
    }
    .flex-block {
        display: block;
    }
    .column {
        width: 97% !important;
    }
    .more-projects {
        margin: 60px auto 70px auto;
    }
    .dropdown {
        border: 1px solid #cbcbcb;
        color: #7f7f7f;
        cursor: pointer;
        display: block;
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 2px;
        margin: 20px auto 0 auto;
        padding: 14px 0;
        position: relative;
        text-align: center;
        text-transform: uppercase;
    }
    .dropdown:after {
        color: #cbcbcb;
        content: '\25BE';
        font-size: 20px;
        padding: 0 6px;
        position: absolute;
        right: 10px;
        top: 7px;
    }
    .more-projects .projects-list {
        display: none;
        margin: 0;
    }
    .more-projects .projects-list.show-dropdown {
        display: block;
    }
    .more-projects li {
        background: #f1f1f1;
        border-bottom: 1px solid #cbcbcb;
        border-left: 1px solid #cbcbcb;
        border-right: 1px solid #cbcbcb;
        display: block;
        margin: 0;
        padding: 5px 0;
    }
    .more-projects li:after, .more-projects li a:after {
        display: none;
    }
    .contact-section {
        height: calc(100vh - 60px);
        top: 0;
    }
}
@media (max-width: 360px) {
    h1 {
        font-size: 20px;
    }
    h4 {
        font-size: 14px;
        letter-spacing: 2px;
    }
    p {
        font-size: 14px;
    }
    .project-landing-mobile {
        height: 185vh;
        height: calc(var(--vh, 1vh) * 185);
    }
    .project-photo {
        height: calc(39% - 60px);
    }
    .project-landing-blurb {
        height: 60%;
    }
    .project-landing-blurb .title {
        height: 23%;
    }
    .project-landing-blurb .info {
        height: 77%;
    }
    .project-landing-blurb .info.three h4 {
        margin: 0 2% 5px;
    }
    .contact-section {
        top: 80px;
    }
}