@charset "utf-8";
/*
Theme Name: Teakwood Builders
Author: Vibrant Brands
Author URI: https://vibrantbrands.com/
Description: A custom theme by Vibrant Brands
Version: 1.0
Text Domain: teakwood
*/
/* Libre Baskerville Regular */
@font-face {
    font-family: "Libre Baskerville";
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    src: url("webfonts/LibreBaskerville-Regular.ttf") format("truetype");
    font-display: swap;
}

/* Poppins Regular */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    src: url("webfonts/Poppins-Regular.ttf") format("truetype");
    font-display: swap;
}

/* Poppins Italic */
@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 400;
    font-stretch: 100%;
    src: url("webfonts/Poppins-Italic.ttf") format("truetype");
    font-display: swap;
}

/* Poppins Medium */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-stretch: 100%;
    src: url("webfonts/Poppins-Medium.ttf") format("truetype");
    font-display: swap;
}

/* Poppins Medium Italic */
@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 500;
    font-stretch: 100%;
    src: url("webfonts/Poppins-MediumItalic.ttf") format("truetype");
    font-display: swap;
}

/* Poppins Bold */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    src: url("webfonts/Poppins-Bold.ttf") format("truetype");
    font-display: swap;
}

/* Poppins Bold Italic */
@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 700;
    font-stretch: 100%;
    src: url("webfonts/Poppins-BoldItalic.ttf") format("truetype");
    font-display: swap;
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes fadeInLeft {
    from {
        transform: translate3d(100%, 0, 0);
    }

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

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes fadeInRight {
    from {
        transform: translate3d(-50%, 0, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@-webkit-keyframes fadeInRight {
    from {
        transform: translate3d(-50%, 0, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

:root {
    --blue: #5e88a2;
    --blue-ada: #4b758f;
    --red: #a22a2a;
    --fa: "Font Awesome 6 Pro";
    --cubic-bezier: cubic-bezier(0.47, 1, 0.92, 1);
    --libre: "Libre Baskerville", "Times", serif;
    --poppins: "Poppins", "Arial", sans-serif;

    --heading-color: #202121;

    --para-color: #5c5c5c;
    --para-font-size: 0.7em;
    --para-line-height: 1.7em;
}

/* Reset */
* {
    box-sizing: border-box;
}
html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
strong,
sub,
sup,
var,
b,
u,
i,
center,
ol,
ul,
li,
fieldset,
form,
label,
legend,
article,
aside,
canvas,
figure,
figcaption,
footer,
header,
nav,
section,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--libre);
}
body {
    font-family: var(--poppins);
    line-height: 1;
    font-size: 24px;
}
a {
    text-decoration: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Skip to Main Content */
.main_content {
    height: 0;
    overflow: hidden;
    display: block;
    font-size: 0;
    text-transform: uppercase;
    line-height: 0;
    background: #447d9c;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
}
.main_content:focus {
    font-size: 14px;
    line-height: 16px;
    height: 36px;
    padding: 10px 15px;
}

.wrapper {
    --wrapper-padding: 40px;
    padding: 0 var(--wrapper-padding);
    margin: 0 auto;
    max-width: 1260px;
    width: 100%;
}

/* Header */
header {
    background-color: #1f1f20;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
}
.header_flex {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
}
#logo {
    height: 100px;
    flex: 0 1 160px;
    background-image: url("img/logo.png");
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 160px auto;
}

#header_actions {
    display: flex;
    align-items: center;
    color: white;
    gap: 25px;
}
#header_actions a {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.8em;
    display: flex;
    gap: 10px;

    animation-name: fadeInRight;
    -webkit-animation-name: fadeInRight;
    opacity: 0;

    animation-iteration-count: 1;
    animation-timing-function: var(--cubic-bezier);

    -webkit-animation-duration: 900ms;
    animation-duration: 900ms;

    -webkit-animation-delay: 1300ms;
    animation-delay: 1300ms;

    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
#mnavbutton {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    align-self: center;
    padding: 0 0 0 10px;
    font-size: 24px;
    order: 2;
    transition-duration: 0.5s;
}
.menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
}
.line {
    fill: none;
    stroke: white;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}
.line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.active .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
.active .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}
.active .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
header nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: flex-end;
}
header nav.active {
    display: flex;
}
header nav a {
    position: relative;
    background: #1f1f20de;
    padding: 13px 16px;
    width: 220px;
    max-width: 80vw;
    color: #fff;
    font-size: 1em;

    animation-name: fadeInLeft;
    -webkit-animation-name: fadeInLeft;
    opacity: 0;

    animation-iteration-count: 1;
    animation-timing-function: var(--cubic-bezier);

    -webkit-animation-duration: 400ms;
    animation-duration: 400ms;

    -webkit-animation-delay: 300ms;
    animation-delay: 300ms;

    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
/* header nav.active a {
    right: 0;
} */
#hero {
    background-color: #eee;
    z-index: 40;
    height: 100vh;
    width: 100%;
    position: relative;
    padding: 80px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
#hero.half_size {
    height: 65vh;
}
#hero.half_size .scroll {
    display: none;
}
.hero_background_image {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    transition: all 1.2s ease;
}
.hero_background_image.loaded {
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
}
.concierge .hero_background_image.loaded {
    filter: brightness(1.1);
}

.hero_background_image div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1.4s ease;
}

.hero_blurred {
    filter: blur(20px);
    z-index: 1;
    opacity: 1;
}

.hero_sharp {
    z-index: 2;
    opacity: 0;
}

.hero_sharp.loaded {
    opacity: 1;
}

/* After Color Overlay */
.hero_background_image.loaded::after {
    content: "";
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #2c345c;
    position: absolute;
    opacity: 0.4;
    transition: all 0.6s ease;
    z-index: 5;
}
.concierge .hero_background_image.loaded::after {
    background: #ffffff;
    opacity: 0.6;
}

.hero_title {
    position: relative;
    z-index: 50;
    color: white;
    text-align: center;
    display: none;
    padding: 0 10vw 40px 10vw;
}
.hero_title.loaded {
    display: block;
}
.hero_title h1,
.hero_title h2 {
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    opacity: 0;

    animation-iteration-count: 1;
    animation-timing-function: var(--cubic-bezier);

    -webkit-animation-duration: 400ms;
    animation-duration: 400ms;

    -webkit-animation-delay: 300ms;
    animation-delay: 300ms;

    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.hero_title h1 {
    font-size: 3em;
}
.hero_title h2 {
    font-family: var(--poppins);
    font-weight: 500;
    margin: 15px 0 0 0;
    -webkit-animation-delay: 700ms;
    animation-delay: 700ms;
}
.concierge_link {
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    opacity: 0;

    animation-iteration-count: 1;
    animation-timing-function: var(--cubic-bezier);

    -webkit-animation-duration: 400ms;
    animation-duration: 400ms;

    -webkit-animation-delay: 700ms;
    animation-delay: 700ms;

    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.scroll {
    position: absolute;
    z-index: 2000;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    color: white;
    padding: 15px;
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 1;
    transition: ease all 1000ms;
}
.concierge .scroll {
    color: #222;
}
.scroll.scrolled {
    bottom: 30px;
    opacity: 0;
}
.scroll i {
    font-size: 15px;
}

h1.concierge_logo {
    height: 220px;
    width: 90vw;
    background-image: url("img/concierge-logo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
h1.concierge_logo span {
    text-indent: -9999px;
    position: absolute;
}
#hero.concierge.half_size h1.concierge_logo {
    height: 170px;
}
#hero.concierge.half_size .concierge_link {
    display: none;
}

/* The Page Content */
/* ------------------------------------------------ */
.thepage {
    padding: 60px 0;
    text-align: center;
}
.left_align .thepage {
    text-align: left;
}
.thepage.narrow .wrapper {
    max-width: 900px;
    text-align: left;
}

.thepage_flex {
    display: flex;
    gap: 50px;
}
.thepage_flex section {
    order: 2;
    flex: 1 1 auto;
    min-width: 0px;
    text-align: left;
}
.thepage section :first-child {
    margin-top: 0 !important;
}
.thepage_flex aside {
    order: 1;
    flex: 0 0 300px;
    text-align: left;
}
.thepage aside ul,
.thepage aside ol {
    position: relative;
    top: -20px;
    margin: 0 0 20px 0;
    padding: 0 0 0 15px;
    list-style: disc;
}
.thepage aside li {
    margin: 0 0 8px 0;
}
.thepage aside li:before {
    display: none;
}

.thepage .wrapper p:first-child,
.thepage .wrapper h2:first-child,
.thepage .wrapper ol:first-child,
.thepage .wrapper ul:first-child {
    margin-top: 0 !important;
}
.thepage h1 {
    color: var(--heading-color);
    font-size: 2em;
    margin: 20px 0 30px 0;
}
.thepage h2 {
    color: var(--heading-color);
    font-size: 1.4em;
    margin: 70px 0 20px 0;
    line-height: 1.3em;
}
.thepage section h2 {
    border-bottom: 1px solid #eee;
    padding: 0 0 10px 0;
}
.thepage h3 {
    color: var(--blue-ada);
    font-size: 0.9em;
    margin: 30px 0 20px 0;
    line-height: 1.3em;
}
.thepage h4 {
    color: var(--blue-ada);
    font-size: 0.9em;
    margin: 30px 0 12px 0;
}
.thepage h5 {
    color: var(--heading-color);
    font-size: 1.2em;
    margin: 20px 0 10px 0;
    font-family: var(--poppins);
    font-weight: 700;
}
.thepage h6 {
    color: var(--heading-color);
    font-size: 1em;
    font-family: var(--poppins);
    font-weight: 700;
    margin: 20px 0 10px 0;
}

.thepage em {
    font-style: italic;
    font-weight: normal;
}
.thepage b,
.thepage strong {
    font-weight: 700;
}
.thepage p {
    margin: 0 0 30px 0;
}
.thepage p a,
.thepage li a {
    font-weight: 500;
    color: var(--blue-ada);
    text-decoration: underline;
}
.thepage p a:hover,
.thepage li a:hover {
    color: black;
}
.thepage p,
.thepage li {
    font-size: var(--para-font-size);
    line-height: var(--para-line-height);
    color: var(--para-color);
}
.thepage li {
    margin: 0 0 10px 0;
}
.thepage ul,
.thepage ol {
    margin: 20px 0 40px 0;
    padding: 0 0 0 19px;
    /* list-style: none; */
}

/* .thepage li {
    position: relative;
}
.thepage li:before {
    content: "• ";
    margin: 0 3px 0 3px;
    font-size: 23px;
    line-height: 10px;
    position: relative;
    top: 2px;
} */

.thepage ul.two_col,
.thepage ol.two_col {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

/* Project Page */
.thepage h2.project_meta {
    font-size: 1em;
    margin: 0px 0 15px 0;
}
/* Partners List */
.partners_list,
.recognition_list {
    display: flex;
    gap: 5px 25px;
    margin: 0 0 40px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.thepage .recognition_list + h2,
.thepage .partners_list + h2 {
    margin-top: 60px;
}

.recognition_list_item,
.partner_list_item {
    display: flex;
    gap: 5px;
    padding: 0;
}
.recognition_list_item_graphic {
    flex: 0 0 200px;
    height: 90px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    max-width: 100%;
}
.thepage .recognition_list_item h3,
.thepage .partner_list_item h3 {
    font-size: var(--para-font-size);
    line-height: var(--para-line-height);
    font-family: var(--poppins);
    margin: 0;
    font-weight: 400;
}
.thepage .partner_list_item a,
.thepage .partner_list_item p,
.thepage .recognition_list_item a,
.thepage .recognition_list_item p {
    font-size: var(--para-font-size);
    line-height: var(--para-line-height);
    font-weight: 400;
}
.thepage .recognition_list_item a,
.thepage .partner_list_item a {
    color: var(--blue-ada);
    position: relative;
}
.thepage .recognition_list_item a:after,
.thepage .partner_list_item a:after {
    content: "";
    width: 0%;
    display: block;
    height: 1px;
    position: absolute;
    bottom: -3px;
    left: 0;
    background-color: var(--para-color);
    transition: ease all 300ms;
}
.thepage .recognition_list_item a:hover:after,
.thepage .partner_list_item a:hover:after {
    width: 100%;
    color: #000;
}

.thepage .recognition_list_item h3 {
    font-weight: 700;
    color: var(--para-color);
}
.thepage .partner_list_item a,
.thepage .partner_list_item p {
    font-weight: 700;
    color: var(--para-color);
}

/* Next/Previous Project Buttons */
.next_prev_projects {
    margin: 90px 0 50px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    border-bottom: 1px solid #4b758f;
}
.next_prev_link {
    padding: 15px;
    flex: 1 1 34%;
    transition: ease all 200ms;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    color: var(--heading-color);
    font-family: var(--libre);
    position: relative;
}
.next_prev_link:first-child {
    text-align: left;
    padding-left: 30px;
}
.next_prev_link:last-child {
    text-align: right;
    padding-right: 30px;
}
.next_prev_link:before {
    content: "";
    display: block;
    width: 0px;
    transition: ease all 400ms;
    height: 1px;
    position: absolute;
    bottom: -4px;
    left: 70px;
    background: var(--blue);
}
.next_prev_link:hover:before {
    left: 0;
    width: 70px;
}
.next_prev_link:last-child:before {
    left: initial;
    right: 70px;
}
.next_prev_link:last-child:hover:before {
    left: initial;
    right: 0;
    width: 70px;
}

.next_prev_link:after {
    content: "\f060";
    display: flex;
    height: 100%;
    font-family: var(--fa);
    font-weight: 900;
    color: var(--blue-ada);
    font-size: 16px;
    position: absolute;
    left: 8px;
    top: 0;
    flex-direction: column;
    justify-content: center;
    transition: ease all 400ms;
    text-align: left;
}
.next_prev_link:last-child:after {
    left: initial;
    right: 8px;
    content: "\f061";
    text-align: right;
}
.next_prev_link:hover {
    border-color: #444;
}
.next_prev_link:hover:after {
    left: 0px;
}
.next_prev_link:last-child:hover:after {
    left: initial;
    right: 0px;
}

/* Image */
.wp-block-image {
    margin: 20px 0 60px 0;
}

/* Buttons */
.wp-block-buttons {
    margin: 20px 0 60px 0;
    display: flex;
    gap: 20px 30px;
    justify-content: center;
    text-transform: uppercase;
    font-size: 0.8em;
    justify-content: flex-start;
}
.wp-block-buttons.is-content-justification-center {
    justify-content: center;
}
.left_align .wp-block-buttons.is-content-justification-center {
    justify-content: flex-start;
}
.wp-block-buttons.is-content-justification-right {
    justify-content: flex-end;
}
.wp-block-button .wp-block-button__link {
    color: var(--para-color);
    display: block;
    position: relative;
    background: transparent;
    color: #333;
    padding: 0;
}
.wp-block-button .wp-block-button__link:after {
    content: "";
    width: 100%;
    display: block;
    height: 1px;
    position: absolute;
    bottom: -5px;
    left: 0;
    background-color: var(--para-color);
    transition: ease all 300ms;
}
.wp-block-button .wp-block-button__link:hover:after {
    width: 100%;
    color: #000;
}

/* Embeds */
.wp-block-embed {
    margin: 0 0 50px 0;
}

/* <hr> */
.wp-block-separator {
    height: 20vw;
    max-height: 90px;
    position: relative;
    display: flex;
    justify-content: center;
    margin: 30px 0;
    border: none;
    text-align: center;
}
.wp-block-separator hr {
    border: none;
    display: none;
}
.wp-block-separator:after {
    /* Line */
    content: "";
    background: var(--blue);
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    height: 1px;
}
.wp-block-separator:before {
    /* Icon */
    content: "";
    display: block;
    background-color: #fff;
    padding: 0 25px;
    background-image: url("img/teakwood-icon-mark.svg");
    height: 100%;
    width: 10vw;
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 5;
    max-width: 90px;
}
.concierge .wp-block-separator:after {
    background: var(--red);
}
.concierge .wp-block-separator:before {
    background-image: url("img/teakwood-icon-mark-red.svg");
}

.left_align .wp-block-separator,
.wp-block-separator.left_icon {
    justify-content: flex-start;
}

.left_align .wp-block-separator:before,
.wp-block-separator.left_icon:before {
    background-size: 60%;
    background-position: center left;
    max-width: 80px;
    padding: 0;
}

/* Portfolio Grid */
.portfolio_grid {
    display: grid;
    gap: 11px;
    grid-template-columns: repeat(2, 1fr);
}
.portfolio_piece {
    position: relative;
    padding: 100% 0 0 0;
    background: #eee;
    overflow: hidden;
    display: block;
}
.portfolio_photo_holder {
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    transform: scale(0.5);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-size: cover;
    background-position: center;
}
.portfolio_photo_holder:after {
    content: "";
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #2c345c;
    position: absolute;
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 5;
}
.portfolio_piece:focus .portfolio_photo_holder:after,
.portfolio_piece:hover .portfolio_photo_holder:after {
    opacity: 0.7;
}

.portfolio_piece.lazy-bg--loaded .portfolio_photo_holder {
    opacity: 1;
    transform: scale(1);
}
.portfolio_piece.lazy-bg--loaded:focus .portfolio_photo_holder,
.portfolio_piece.lazy-bg--loaded:hover .portfolio_photo_holder {
    transform: scale(1.1);
}
.portfolio_meta {
    z-index: 5;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    color: white;
    padding: 0 10%;
    opacity: 0;
    user-select: none;
    transform: translate(0, -30%);
    transition: var(--cubic-bezier) all 400ms;
}
.portfolio_piece.lazy-bg--loaded:focus .portfolio_meta,
.portfolio_piece.lazy-bg--loaded:hover .portfolio_meta {
    transform: translate(0, -50%);
    opacity: 1;
}
.thepage .portfolio_meta h2 {
    color: white;
    font-size: 1em;
    margin: 0 0 10px 0;
}
.thepage .portfolio_meta p {
    color: white;
    font-weight: 500;
    margin: 0;
}

/* Footer */
footer {
    background: #1f1f20;
    padding: 60px 0;
}

.footer_top_row {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #3d3d3d;
    margin: 0 0 50px 0;
    padding: 0 0 50px 0;
}
#footer_logo {
    height: 80px;
    flex: 0 1 130px;
    background-image: url("img/logo.png");
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 130px auto;
}
footer nav {
    display: flex;
    gap: 25px;
    font-size: 0.7em;
}
footer nav a {
    position: relative;
    color: white;
    text-transform: uppercase;
}
footer nav a:after {
    content: "";
    width: 0%;
    display: block;
    height: 1px;
    position: absolute;
    bottom: -5px;
    left: 0;
    background-color: #83b5d3;
    transition: ease all 300ms;
}
footer nav a:hover:after {
    width: 100%;
}
.footer_bottom_row {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
}
.footer_contact {
    display: flex;
    gap: 25px;
    flex: 1 1 100%;
    justify-content: center;
}
.footer_contact a,
.footer_contact p {
    color: white;
    position: relative;
    line-height: 1.4em;
    font-size: var(--para-font-size);
}
.footer_contact a:before,
.footer_contact p:before {
    content: "";
    position: absolute;
    left: -15px;
    height: 5px;
    width: 5px;
    background: var(--blue);
    border-radius: 50%;
    top: 50%;
    transform: translate(0, -50%);
}
.footer_contact a:first-child:before,
.footer_contact p:first-child:before {
    display: none;
}

.footer_contact a:after {
    content: "";
    width: 0%;
    display: block;
    height: 1px;
    position: absolute;
    bottom: -5px;
    left: 0;
    background-color: #83b5d3;
    transition: ease all 300ms;
}
.footer_contact a:hover:after {
    width: 100%;
}

#social {
    display: flex;
    gap: 13px;
    flex: 1 0 5%;
    font-size: 22px;
}
#social a {
    color: white;
    transition: ease all 300ms;
}
#social a:hover {
    color: #83b5d3;
}

.footer_sub_logos {
    display: flex;
    gap: 20px;
    flex: 1 1 20%;
}
.footer_logo_alt {
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_logo_alt img {
    max-width: 100%;
    height: auto;
    max-height: 50px;
}

#pre_projects {
    padding: 100px 0;
}
.pre_project_flex {
    display: flex;
    align-items: center;
    gap: 50px;
}
.pre_project_image {
    flex: 0 1 50%;
    height: 80vh;
    max-height: 730px;
}
.pre_project_content {
    flex: 0 1 50%;
    display: flex;
    flex-direction: column;
}
.pre_project_content h2 {
    font-size: 2em;
    padding: 0 20% 0 0;
    line-height: 1.1em;
    margin: 0 0 30px 0;
    color: var(--heading-color);
}
.pre_project_content p {
    font-size: var(--para-font-size);
    padding: 0 15% 0 0;
    line-height: var(--para-line-height);
    margin: 0;
    color: var(--para-color);
}

#home_projects {
    padding: 100px 0;
    position: relative;
    background-color: #e7edf1;
}
#home_projects:after {
    content: "";
    background-image: url("img/watermark.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right -300px;
    height: 800px;
    width: 100%;
    display: block;
    position: absolute;
    z-index: 1;
    pointer-events: none;
    bottom: -110px;
    right: 0;
}
#home_projects .wp-block-buttons {
    position: relative;
    z-index: 10;
}
#home_projects .wrapper > h2 {
    font-size: 2em;
    padding: 0 10vw;
    line-height: 1.1em;
    margin: 0 0 50px 0;
    color: var(--heading-color);
    text-align: center;
}

.portfolio_grid.home {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(15, 50px);
    gap: 11px;
    text-align: center;
    margin: 0 0 50px 0;
}
.portfolio_grid.home .portfolio_piece {
    padding: 0;
}
.portfolio_grid.home .portfolio_piece .portfolio_meta h3 {
    color: #fff;
    font-size: 1em;
    margin: 0 0 10px 0;
}
.portfolio_grid.home .portfolio_piece .portfolio_meta p {
    font-size: var(--para-font-size);
    line-height: var(--para-line-height);
    font-weight: 500;
}
.portfolio_grid.home .portfolio_piece:nth-child(1) {
    grid-row: 1/10;
    grid-column: 1/2;
}
.portfolio_grid.home .portfolio_piece:nth-child(2) {
    grid-row: 1/7;
    grid-column: 2/3;
}
.portfolio_grid.home .portfolio_piece:nth-child(3) {
    grid-row: 10/16;
    grid-column: 1/2;
}
.portfolio_grid.home .portfolio_piece:nth-child(4) {
    grid-row: 7/16;
    grid-column: 2/3;
}

#post_projects {
    padding: 50px 0;
    text-align: center;
}
#post_projects h2 {
    font-size: 2em;
    padding: 0 10vw;
    line-height: 1.1em;
    margin: 0 0 30px 0;
    color: var(--heading-color);
    text-align: center;
}
#post_projects p {
    font-size: var(--para-font-size);
    line-height: var(--para-line-height);
    color: var(--para-color);
    margin: 0 0 30px 0;
}

#prefooter_image {
    height: 80vh;
    max-height: 1000px;
    background-size: cover;
    background-position: center;
}

.other-lazy {
    position: relative;
}
.other-lazy.other_loaded .img_holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;

    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    opacity: 0;

    animation-iteration-count: 1;
    animation-timing-function: var(--cubic-bezier);

    -webkit-animation-duration: 400ms;
    animation-duration: 400ms;

    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

#filter {
    margin: 0 0 70px 0;
}
.filter_module {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 0 10px 0;

    position: relative;
    color: #656565;
    font-size: 0.7em;
    transition: var(--cubic-bezier) all 500ms;
    flex: 0 0 150px;
}
.filter_module.active {
    flex: 1 0 100%;
}
.filter_toggle {
    display: flex;
    gap: 40px;
    flex: 0 0 150px;
    border-bottom: 1px solid var(--blue);
    justify-content: space-between;
    padding: 12px;
    transition: var(--cubic-bezier) 300ms all;
}
.filter_toggle.active {
    flex: 1 0 150px;
}
.filter_module:hover {
    cursor: pointer;
    flex: 1 0 100%;
}
.filter_options {
    flex: 1 0 100%;
}

.filter_body {
    height: 0;
    overflow: hidden;
    transition: ease all 350ms;
}

.custom_fitler_ui {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
    .custom_fitler_ui {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 700px) {
    .custom_fitler_ui {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .custom_fitler_ui {
        grid-template-columns: repeat(1, 1fr);
    }
}
.filter_option {
    position: relative;
    color: var(--para-color);
    font-size: 0.8em;
    text-align: left;
    font-weight: 500;
    padding: 15px 15px 15px 46px;
}
.filter_option:hover {
    cursor: pointer;
}
.filter_option.selected {
    color: #5d87a1;
    background: rgba(218, 218, 218, 0.3);
}
.filter_option:before {
    content: "\f0c8";
    font-family: var(--fa);
    font-weight: 900;
    font-size: 22px;
    color: #dadada;
    position: absolute;
    left: 13px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.filter_option.selected:before {
    content: "\f14a";
    color: #5d87a1;
}
#project-filter-form {
    display: flex;
    justify-content: center;
    margin: 35px 0 0 0;
}

#project-filter-form button {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    padding: 10px 55px;
    height: auto;
    display: block;
    font-family: var(--libre);
    font-size: 0.8em;
    color: white;
    background: #477794;
    transition: ease all 300ms;
}
#project-filter-form button:hover {
    cursor: pointer;
    background: #32576e;
}

/* Concierge */
.page-template-page-process .thepage p,
.page-template-page-process .thepage .wp-block-list,
.page-template-page-process .thepage ul {
    margin: 0 0 20px 0;
}

#testimonials {
    background-color: #f4e5e5;
    padding: 80px 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial_text {
    padding: 0 10vw;
    font-size: 0.8em;
    line-height: var(--para-line-height);
    margin: 0 0 25px 0;
    font-style: italic;
}
.testimonial_text p {
    margin: 0 0 15px 0;
}
.testimonial_who {
    font-size: 0.8em;
    line-height: var(--para-line-height);
    font-family: var(--libre);
    color: #222;
    margin: 25px 0 0 0;
    padding: 0 0 15px 0;
}
.testimonials_dots {
    display: flex;
    justify-content: center;
    margin: 50px 0 0 0;
    gap: 8px;
}
.testimonials_dots .owl-dot {
    width: 25px;
    height: 25px;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    border-radius: 50%;
    background: #e2c1c1;
}
.testimonials_dots .owl-dot:hover {
    background: #d6a7a7;
    cursor: pointer;
}
.testimonials_dots .owl-dot.active:hover,
.testimonials_dots .owl-dot.active {
    background: var(--red);
}

.concierge .thepage p a,
.concierge .thepage li a {
    color: var(--red);
}
.concierge .thepage h3 {
    color: var(--red);
}

/* Job Postings */
.job_form .wp-block-separator::before,
.job_form {
    background-color: #e7edf1;
}
.thepage.job_form h1 {
    color: var(--heading-color);
    font-size: 1.4em;
    margin: 0 0 20px 0;
    line-height: 1.3em;
}

.gform_confirmation_message div {
    font-size: var(--para-font-size);
    line-height: var(--para-line-height);
    color: var(--para-color);
    margin-top: 20px;
    border: solid 1px #5d87a1;
    padding: 30px;
}
.gform_confirmation_message strong {
    color: var(--heading-color);
    font-size: 1.4em;
    margin: 30px 0 20px 0;
    line-height: 1.3em;
    font-family: var(--libre);
}

@media (max-width: 1200px) {
    /* Footer */
    .footer_bottom_row {
        flex-wrap: wrap;
        gap: 30px;
    }
    #social,
    .footer_contact,
    .footer_sub_logos {
        justify-content: center;
    }
    .footer_top_row {
        flex-wrap: wrap;
        justify-content: center;
    }
    footer nav {
        flex: 1 0 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
    #footer_logo {
        height: 120px;
        flex: 0 1 180px;
        background-position: center;
        background-size: 180px auto;
    }
}
@media (max-width: 1100px) {
    /* Homepage */
    .pre_project_image {
        height: 63vw;
    }
    #prefooter_image {
        height: 63vw;
    }

    /* 2 Column */
    .thepage_flex {
        flex-wrap: wrap;
    }
    .thepage_flex section {
        order: 0;
    }
}
@media (max-width: 1000px) {
}
@media (max-width: 900px) {
    /* Homepage */
    #post_projects h2,
    #home_projects .wrapper > h2,
    .pre_project_content h2 {
        font-size: 1.5em;
    }
    /* Internal Pages */
    .hero_title h1 {
        font-size: 2em;
    }
}
@media (max-width: 800px) {
    /* Homepage */
    #post_projects,
    #home_projects {
        padding: 10vw 0;
    }
    #pre_projects {
        padding: 10vw 0;
    }
    #pre_projects {
        text-align: center;
    }
    .pre_project_image {
        display: none;
    }
    .pre_project_content {
        flex: 1 1 50%;
    }
    .pre_project_content .wp-block-buttons {
        justify-content: center;
    }
    .pre_project_content h2 {
        padding: 0%;
    }
    .pre_project_content p {
        padding: 0;
    }
    .pre_project_content .wp-block-separator.left_icon {
        justify-content: center;
    }
    .pre_project_content .wp-block-separator.left_icon:before {
        background-position: center;
    }

    /* Hompage Specific */
    .portfolio_grid,
    .portfolio_grid.home {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: initial;
        margin: 0 0 50px 0;
    }
    .portfolio_grid .portfolio_piece {
        height: 56vw;
        padding: 0;
        grid-column: 1/2 !important;
    }
    .portfolio_grid.home .portfolio_piece:nth-child(1) {
        grid-row: 1/2;
    }
    .portfolio_grid.home .portfolio_piece:nth-child(2) {
        grid-row: 2/3;
    }
    .portfolio_grid.home .portfolio_piece:nth-child(3) {
        grid-row: 3/4;
    }
    .portfolio_grid.home .portfolio_piece:nth-child(4) {
        grid-row: 4/5;
    }
    .portfolio_piece.lazy-bg--loaded:focus .portfolio_meta,
    .portfolio_piece.lazy-bg--loaded:hover .portfolio_meta,
    .portfolio_grid .portfolio_piece .portfolio_meta {
        display: block;
        opacity: 1;
        background: linear-gradient(to bottom, #4b758f00 0%, #4b758f 100%);
        bottom: 0px;
        padding: 110px 25px 25px 25px;
        text-align: left;
        top: initial;
        transform: translate(0, 0);
    }
    .thepage .portfolio_meta h2,
    .portfolio_grid .portfolio_piece .portfolio_meta h3 {
        margin: 0;
        font-size: 0.7em;
    }
    .portfolio_grid .portfolio_piece .portfolio_meta p {
        display: none;
    }
    .portfolio_grid .portfolio_photo_holder::after {
        display: none !important;
    }
}
@media (max-width: 700px) {
    /* Global */
    .wrapper {
        --wrapper-padding: 30px;
    }
    #logo {
        background-size: contain;
        height: 80px;
        flex: 0 1 130px;
    }
    #header_actions a span {
        display: none;
    }
    #header_actions a i {
        font-size: 24px;
    }

    /* Footer */
    .footer_contact {
        flex-wrap: wrap;
        flex-direction: column;
        align-content: center;
        text-align: center;
    }
    .footer_contact a::before,
    .footer_contact p::before {
        display: none;
    }
    .footer_contact a:after {
        left: 40%;
    }
    .footer_contact a:hover:after {
        width: 20%;
    }
}
@media (max-width: 600px) {
    /* Globals */
    .thepage {
        padding: 30px 0 60px 0;
    }
    .wp-block-separator {
        height: 10vw;
    }
    #hero.half_size {
        height: 45vh;
    }
    .thepage h1 {
        font-size: 1.4em;
    }
    .thepage h2 {
        font-size: 1em;
        margin: 40px 0 20px 0;
    }

    .thepage ul.two_col,
    .thepage ol.two_col {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }

    /* Hero */
    #hero {
        align-items: center;
        height: calc(100vh - 100px);
    }
    #hero.concierge {
        align-items: center;
    }
    .hero_title {
        text-align: left;
    }
    .hero_title h1 {
        font-size: 1.3em;
    }
    .hero_title h2 {
        font-size: 0.7em;
        line-height: 1.3em;
    }
    .scroll {
        display: none;
        /* bottom: 120px; */
    }
    .scroll.scrolled {
        /* bottom: 160px; */
    }

    /* Portfolio */
    #filter {
        margin: 0 0 30px 0;
    }
    .next_prev_link {
        font-size: 16px;
    }

    /* Homepage */
    #post_projects h2,
    #home_projects .wrapper > h2,
    .pre_project_content h2 {
        font-size: 1.3em;
    }

    #home_projects .wrapper > h2 {
        font-size: 0.8em;
        color: var(--blue-ada);
        position: relative;
        margin: 70px 0 20px 0;
        padding: 0 0 20px 0;
        border-bottom: 1px solid #bbd3e2;
    }
    #home_projects .wrapper > h2:before {
        /* Icon */
        content: "";
        display: block;
        background-image: url("img/watermark-blue.webp");
        height: 40px;
        width: 60px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        top: -60px;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

    /* Portfolio Grid */
    /* .portfolio_grid {
        gap: 25px;
        grid-template-columns: repeat(1, 1fr);
    } */

    /* Footer */
    footer nav {
        gap: 0;
    }
    footer nav a {
        flex: 1 0 100%;
        text-align: center;
        padding: 15px;
    }
    footer nav a::after {
        bottom: 7px;
        left: 40%;
    }
    footer nav a:hover::after {
        width: 20%;
    }

    /* Testimonials */
    .testimonial_text {
        padding: 0;
    }
    .testimonials_dots {
        margin: 30px 0 0 0;
    }
}
@media (max-width: 500px) {
    /* Global */
    .wrapper {
        --wrapper-padding: 22px;
    }

    /* Portfolio */
    .partner_list_item {
        padding: 7px 0;
        justify-content: space-between;
        width: 100%;
        font-size: 0.8em;
        border-bottom: 1px solid #eee;
    }
    .partner_list_item:last-child {
        border: none;
    }

    /* Footer */
    .footer_top_row {
        gap: 20px;
        margin: 0px 0 30px 0;
        padding: 0 0 30px 0;
    }
    .footer_logo_alt {
        width: auto;
        flex: 1 1 50%;
    }
    .footer_sub_logos {
        justify-content: space-between;
    }
    #social {
        justify-content: space-around;
    }
}
