/*
Theme Name: Sargeant Planning
Theme URI: https://thriveweb.com.au
Author: Kurtis @ Thrive Digital
Author URI: https://thriveweb.com.au
Version: 1.0.0
*/



/*--------------------------------------------------------------
Elements
--------------------------------------------------------------*/
html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background: #231F20;
    color: #231F20;
    font-family: mr-eaves-xl-modern, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.618;
    letter-spacing: 0.2px;
    overscroll-behavior: none;
}

::-moz-selection {
    background: #FEC72A;
    color: #fff;
}
::selection {
    background: #FEC72A;
    color: #fff;
}

hr {
    background: #9B9B9B;
    border: 0;
    height: 1px;
    margin-bottom: 20px;
}

ul,
ol {
    margin: 0 0 20px 20px;
    padding: 0;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin: 0 0 20px;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 20px 20px;
}

table {
    margin: 0 0 20px;
    width: 100%;
}

p {
    margin: 0 0 20px;
}

pre {
    background: #231F20;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 100%;
    overflow: auto;
    padding: 20px;
}

fieldset {
    padding: 0;
    border: none;
    margin: 0 0 20px;
}

figure {
    margin: 0 0 20px;
}

/* Blockquote */
blockquote {
    margin: 40px 0;
}

blockquote > p {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2.75px;
    line-height: 1.2;
    margin: 0;
    color: #231F20;
    text-transform: uppercase;
}

blockquote cite {
    display: block;
    font-size: 22px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 2.75px;
    line-height: 22px;
    margin: 30px 0 0;
    text-transform: uppercase;
}

blockquote cite:before {
    content: "— ";
}

@media (max-width: 768px) {
    blockquote > p {
        font-size: 20px;
    }
    blockquote cite {
        font-size: 18px;
    }
}



/*--------------------------------------------------------------
Animations
--------------------------------------------------------------*/
.transition, a, input, button, textarea {
    transition: all 0.3s ease;
}

.animate {
    opacity: 0;
}

.animate.fade-left {
    opacity: 0;
    transition: all 1s ease;
    -webkit-transform: translate3d(-50px, 0px, 0px);
    -ms-transform: translate3d(-50px, 0px, 0px);
    transform: translate3d(-50px, 0px, 0px);
}

.animate.fade-right {
    opacity: 0;
    transition: all 1s ease;
    -webkit-transform: translate3d(50px, 0px, 0px);
    -ms-transform: translate3d(50px, 0px, 0px);
    transform: translate3d(50px, 0px, 0px);
}

.animate.fade-up {
    opacity: 0;
    transition: all 1s ease;
    -webkit-transform: translate3d(0px, 50px, 0px);
    -ms-transform: translate3d(0px, 50px, 0px);
    transform: translate3d(0px, 50px, 0px);
}

.animate.in-view {
    opacity: 1;
    -webkit-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}

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



/*--------------------------------------------------------------
Wordpress
--------------------------------------------------------------*/
/* Menus */
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 20px;
    overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}

/* Alignments */
.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Comments */
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/* Captions */
.wp-caption {
    max-width: 100%;
    margin: 20px;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 10px 0;
}

.wp-caption-text {
    text-align: center;
}



/*--------------------------------------------------------------
Helpers
--------------------------------------------------------------*/
/* General */
.ta-left { text-align: left; }
.ta-center { text-align: center; }
.ta-right { text-align: right; }

.float-left { float: left; }
.float-right { float: right; }

.static { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }

.none { display: none; }
.inline { display: inline; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }

/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }

/* Inline List */
.inline-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.inline-list li { margin-left: 20px; }
.inline-list li:first-child { margin-left: 0; }

/* Font Awesome */
.fa-icon-before:before,
.fa-icon-after:after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900;
}

/* Custom Bullet List */
.bullet-list ul,
.guten-content ul {
    list-style: none;
    padding: 0;
}

.bullet-list ul li,
.guten-content ul li {
    margin: 0px 25px 10px;
    position: relative;
}

.bullet-list ul li:before, .guten-content ul li:before {
    content: '';
    background: #FEC72A;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    display: block;
    position: absolute;
    left: -25px;
    top: 10px;
}

/* Clipboard Copy */
.clipboard-copy {
    position: relative;
    cursor: pointer;
}

.clipboard-copy .tooltip {
    visibility: hidden;
    width: auto;
    white-space: nowrap;
    background: #231F20;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 3px 10px;
    position: absolute;
    top: 0;
    left: 50%;
    font-size: 13px;
    line-height: 1.618;
    transform: translate(-50%, -140%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.clipboard-copy .tooltip:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #231F20 transparent transparent transparent;
}

.clipboard-copy:hover .tooltip {
    visibility: visible;
    opacity: 1;
}



/*--------------------------------------------------------------
Titles
--------------------------------------------------------------*/
h1, .h1,
h2, .h2 {
    font-family: gill-sans-nova, sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 0.25px;
    margin: 0 0 30px;
}

h3, .h3 {
    font-family: mr-eaves-xl-modern, sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    margin: 0 0 10px;
}

h4, .h4 {
    font-family: mr-eaves-xl-modern, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 10px;
}

h5, .h5 {
    font-family: mr-eaves-xl-modern, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    color: #9B9B9B;
    margin: 0 0 10px;
}

.large-title {
    font-size: 55px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #FEC72A;
    line-height: 80px;
}

.title-style span {
    text-decoration: underline;
    text-decoration-thickness: 3px;
}

p.subtitle {
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 2px;
    color: #231F20;
    white-space: pre-wrap;
}

@media (max-width: 768px) {
    h1, .h1,
    h2, .h2 {
        font-size: 30px;
    }
    h3, .h3 {
        font-size: 20px;
    }
    h4, .h4 {
        font-size: 16px;
    }
    h5, .h5 {
        font-size: 14px;
    }
    .large-title {
        font-size: 40px;
        line-height: 60px;
    }
}
@media (max-width: 500px) {
    .large-title {
        font-size: 30px;
        line-height: 45px;
        word-break: break-word;
    }
}



/*--------------------------------------------------------------
Links/Buttons
--------------------------------------------------------------*/
/* Links */
a {
    color: #FEC72A;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: #231F20;
}

.more-link {
    text-transform: uppercase;
    font-weight: 700;
}

a.naked {
    text-transform: uppercase;
    font-weight: 700;
    color: #231F20;
    text-decoration: underline 2px rgba(254, 199, 42, 0);
    text-underline-offset: 4px;
    transition: text-decoration-color 0.3s ease;
}

a.naked:hover {
    text-decoration-color: rgba(254, 199, 42, 1);
}

p > a {
    font-weight: 700;
    color: #231F20;
}

p > a:hover {
    text-decoration: underline;
}

/* Buttons */
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    outline: none;
    display: inline-block;
    position: relative;
    padding: 13px 30px;
    font-family: gill-sans-nova, sans-serif;
    font-weight: 600;
    background: #FEC72A;
    border: 1px solid #FEC72A;
    color: #fff;
    text-transform: uppercase;
    height: auto;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
}

.button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background: #231F20;
    border-color : #231F20;
    color: #fff;
}

.btn-loader {
    display: none;
    position: absolute;
    left: calc(50% - 8px);
    top: calc(50% - 8px);
}

/* Ghost Buttons */
.button.ghost,
button.ghost {
    background: transparent;
    color: #231F20;
    border: 1px solid #231F20;
}

.button.ghost:hover,
button.ghost:hover  {
    background: #FEC72A;
    border-color : #FEC72A;
}

/* Icon Buttons */
.button.icon-button,
button.icon-button {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.button.icon-button svg,
button.icon-button svg {
    line-height: 0;
    margin-right: 8px;
    width: 14px;
}



/*--------------------------------------------------------------
Forms/Inputs
--------------------------------------------------------------*/
/* Inputs */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="search"],
textarea,
select {
    outline: none;
    display: inline-block;
    width: 100%;
    background: #fff;
    padding: 13px;
    border: 1px solid #9B9B9B;
    margin-bottom: 20px;
    line-height: 20px;
}

input[type="number"] {
    padding: 0 0 0 10px;
}

input[type="search"] {
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
    border-color: #FEC72A;
}

textarea {
    height: 140px;
    resize: vertical;
}

::-webkit-input-placeholder { color: #9B9B9B; }
::-ms-input-placeholder { color: #9B9B9B; }
::placeholder { color: #9B9B9B; }


/* Gravity Forms */
.gform_wrapper .gform_title,
.gform_wrapper .gform_required_legend {
    display: none;
}

.gfield_label .gfield_required {
    display: none;
    color: red;
}

.gform_wrapper .screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    word-wrap: normal !important;
}

.gform_wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gform_wrapper .gform_fields {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.gform_wrapper .gform_fields .gfield {
    flex: 100%;
    position: relative;
}

.gform_wrapper .gform_fields .gfield.gfield--width-half {
    flex: 0 0 calc(50% - 10px);
}

.gform_wrapper .gform_fields .gfield .gfield_label {
    display: block;
    margin: 0 0 5px;
}

.gform_wrapper .gform_fields .gfield.hidden_label .gfield_label {
    display: none;
}

.gform_wrapper .gform_validation_errors {
    background: #231F20;
    margin: 0 0 30px;
    color: #fff;
    padding: 10px 20px;
    border-left: 3px solid red;
}

.gform_wrapper .gform_validation_errors h2 {
    font-size: 16px;
    color: #fff;
    margin: 0;
}

.gform_wrapper .validation_message {
    display: none;
}

.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea,
.gform_wrapper .gfield_error select {
    border-color: red;
}

.gform_wrapper .gform_confirmation_message {
    text-align: center;
    font-size: 20px;
}

.gform_ajax_spinner {
    display: none !important;
}

@media(max-width: 600px) {
    .gform_wrapper .gform_fields .gfield.gfield--width-half {
        flex: 100%;
    }
}



/*--------------------------------------------------------------
Containers/Layout
--------------------------------------------------------------*/
.container,
.container-xsmall,
.container-small,
.container-medium,
.container-large {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}

.container { max-width: 1020px; }
.container-xsmall { max-width: 640px; }
.container-small { max-width: 840px; }
.container-medium { max-width: 1240px; }
.container-large { max-width: 1440px; }

.container-max {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 1920px;
}

.parallax-container {
    background: #231F20;
    overflow: hidden;
}

.video-container {
    padding: 56.25% 0 0 0;
    position: relative;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container-pad {
    padding-left: 60px;
}



/*--------------------------------------------------------------
Header
--------------------------------------------------------------*/
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
}

.fixed-header .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
}

.fixed-header.fixed .site-header {
    background: #fff;
}

.fixed-header.dark-theme .site-header {
    background: transparent;
}

.fixed-header.fixed.dark-theme .site-header {
    background: #231F20;
}

@media (max-width: 1200px) {
    .site-header {
        padding: 0 20px;
    }
}

.site-logo {
    margin: 0;
    padding: 20px 20px 20px 0;
}

.site-logo a,
.site-logo svg {
    display: block;
    margin: 0 auto;
    height: 60px;
    width: 100%;
    color: #1C1B19;
}

.dark-theme .site-logo a,
.dark-theme .site-logo svg {
    color: #fff;
}

@media (max-width: 992px) {
    .site-logo {
        padding: 20px 60px 20px 0;
    }
}
@media (max-width: 768px) {
    .site-logo a,
    .site-logo svg {
        max-width: 220px;
    }
}

/* Actions */
.header-actions {
    display: flex;
    align-items: center;
}

.header-actions a {
    margin-left: 15px;
}

.header-actions .button {
    padding: 13px 20px;
}

.dark-theme .header-actions .button {
    border-color: #fff;
    color: #fff;
}

.dark-theme .header-actions .button:hover {
    border-color: #FEC72A;
    color: #231F20;
}

@media (max-width: 992px) {
    .header-actions {
        display: none;
    }
}



/*--------------------------------------------------------------
Navigation
--------------------------------------------------------------*/
.site-navigation {
    display: block;
    margin: 0 0 0 auto;
}

.navigation-toggle {
    display: none;
}

.site-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-navigation li {
    position: relative;
    margin: 0 20px;
}

.site-navigation li a {
    display: block;
    font-family: gill-sans-nova, sans-serif;
    font-weight: 600;
    line-height: 20px;
    color: #231F20;
    text-decoration: none;
    text-transform: uppercase;
    text-decoration: underline 2px rgba(254, 199, 42, 0);
    text-underline-offset: 4px;
    transition: text-decoration-color 0.3s ease;
}

.site-navigation a:hover,
.site-navigation li.current-menu-item a,
.site-navigation li.current-menu-parent a {
    text-decoration-color: rgba(254, 199, 42, 1);
}

.dark-theme .site-navigation li a {
    color: #fff;
}

.site-navigation ul ul {
    position: absolute;
    top: 22px;
    left: -9999px;
    z-index: 999;
    background: #FEC72A;
    display: block;
}

.site-navigation ul li:hover ul {
    left: -20px;
    margin-top: 10px;
}

.site-navigation ul ul li {
    margin: 0;
}

.site-navigation ul ul li a,
.dark-theme .site-navigation ul ul li a {
    color: #231F20;
    white-space: nowrap;
    padding: 10px 20px;
}

.site-navigation ul ul li a:hover,
.site-navigation ul ul li.current-menu-item a,
.dark-theme .site-navigation ul ul li a:hover,
.dark-theme .site-navigation ul ul li.current-menu-item a {
    color: #231F20;
    text-decoration-color: rgba(35, 31, 32, 1);
}

@media (max-width: 992px) {
    .navigation-toggle {
        display: block;
        position: relative;
        margin: 0;
        padding: 0;
        width: 25px;
        height: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }
    .navigation-toggle span,
    .navigation-toggle span::before,
    .navigation-toggle span::after {
        display: block;
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #231F20;
        transition: background 0s 0.3s;
    }
    .dark-theme .navigation-toggle span,
    .dark-theme .navigation-toggle span::before,
    .dark-theme .navigation-toggle span::after {
        background: #fff;
    }
    .navigation-toggle span {
        top: 7px;
    }
    .navigation-toggle span::before {
        content: "";
        top: -7px;
        transition-property: top, transform;
        transition-duration: 0.3s, 0.3s;
        transition-delay: 0.3s, 0s;
    }
    .navigation-toggle span::after {
        content: "";
        bottom: -7px;
        transition-property: bottom, transform;
        transition-duration: 0.3s, 0.3s;
        transition-delay: 0.3s, 0s;
    }
    .menu-toggled .navigation-toggle span {
        background: none;
    }
    .menu-toggled .navigation-toggle span::before {
        top: 0;
        transform: rotate(45deg);
        transition-delay: 0s, 0.3s;
    }
    .menu-toggled .navigation-toggle span::after {
        bottom: 0;
        transform: rotate(-45deg);
        transition-delay: 0s, 0.3s;
    }
    .site-navigation ul {
        display: none;
    }
}



/*--------------------------------------------------------------
Mobile Navigation
--------------------------------------------------------------*/
.mobile-navigation {
    display: none;
}

@media (max-width: 992px) {
    .site {
        position: relative;
        z-index: 1;
        transition: transform 0.5s ease;
    }
    .menu-toggled .site {
        -webkit-transform: translate3d(-400px, 0px, 0px);
        -ms-transform: translate3d(-400px, 0px, 0px);
        transform: translate3d(-400px, 0px, 0px);
    }
    .mobile-navigation {
        display: block;
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        width: 400px;
        background: #231F20;
        z-index: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        transition: transform ease 0.5s, opacity ease 0.5s;
    }
    .menu-toggled .mobile-navigation {
        opacity: 1;
        transition: transform ease 0.5s, opacity ease 0.5s;
    }
    .fixed-header .mobile-navigation {
        top: 100px;
    }
    .mobile-navigation ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }
    .mobile-navigation li {
        display: block;
        width: 100%;
        border-top: 1px solid #9B9B9B;
    }
    .mobile-navigation li:first-child {
        border-top: none;
    }
    .mobile-navigation li:last-child {
        border-bottom: 1px solid #9B9B9B;
    }
    .mobile-navigation a {
        display: block;
        font-family: gill-sans-nova, sans-serif;
        font-weight: 600;
        font-size: 16px;
        text-transform: uppercase;
        color: #fff;
        padding: 10px 30px;
    }
    .mobile-navigation a:hover {
        color: #FEC72A;
    }
    .mobile-navigation ul ul {
        border-top: 1px solid #9B9B9B;
    }
    .mobile-navigation ul ul li {
        padding-left: 20px;
    }
    .mobile-navigation .mobile-nav-actions {
        text-align: center;
        padding: 10px 20px 40px 20px;
    }
    .mobile-navigation .mobile-nav-actions .button {
        margin: 20px 0 0;
        padding: 10px 30px;
        background: #FEC72A;
        border-color: #FEC72A;
        color: #fff;
    }
    .mobile-navigation .mobile-nav-actions .button:hover {
        background: #fff;
        border-color: #fff;
        color: #231F20;
    }
}
@media (max-width: 500px) {
    .menu-toggled .site {
        -webkit-transform: translate3d(-300px, 0px, 0px);
        -ms-transform: translate3d(-300px, 0px, 0px);
        transform: translate3d(-300px, 0px, 0px);
    }
    .mobile-navigation {
        width: 300px;
    }
}



/*--------------------------------------------------------------
Gutenberg/Blocks
--------------------------------------------------------------*/
/* Image/Videos */
.guten-content .wp-block-image {
    margin: 0 0 40px;
}

.guten-content .wp-block-image figcaption {
    font-style: italic;
    font-size: 15px;
    margin: 10px 0 20px;
    text-align: center;
}

.guten-content .wp-block-embed {
    margin: 0 0 40px;
}

.guten-content .wp-block-embed.is-type-video .wp-block-embed__wrapper {
    padding: 56.25% 0 0 0;
    position: relative;
}

.guten-content .wp-block-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/*--------------------------------------------------------------
General
--------------------------------------------------------------*/
/* Main */
.site {
    background: #fff;
    position: relative;
    z-index: 1;
}

/* Default Page */
.default-page  {
    padding: 180px 0 80px 0;
}

@media (max-width: 992px) {
    .default-page  {
        padding: 160px 0 60px 0;
    }
}

/* 404 Not Found */
.error-404 {
    padding: 200px 0 100px 0;
    text-align: center;
}

.error-404 a.button {
    margin: 30px 0 0;
}

.error-404 .error-404-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0 0;
}

.error-404 .error-404-socials a {
    background: transparent;
    width: 40px;
    height: 40px;
    line-height: 1;
    color: #FEC72A;
    border: 3px solid #FEC72A;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-404 .error-404-socials a:last-of-type {
    margin: 0;
}

.error-404 .error-404-socials a:hover {
    background: #FEC72A;
    color: #fff;
}

/* Banner */
.site-banner {
    background: #231F20;
    position: relative;
    z-index: 1;
}

.site-banner .banner-image {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
    opacity: 0.35;
}

.site-banner .banner-image-overlay {
    background: rgba(35, 31, 32, 0.5);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.site-banner .banner-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 680px;
}

.site-banner .banner-content {
    padding: 240px 0;
    position: relative;
}

.site-banner .banner-content h1 {
    max-width: 660px;
    margin: 0;
}

.site-banner .banner-watermark {
    position: absolute;
    bottom: 0;
    left: -90%;
    height: 100%;
    width: auto;
    max-height: 700px;
    color: #9B9B9B;
    z-index: -1;
}

.site-banner .banner-watermark svg {
    height: 100%;
}

@media (max-width: 768px) {
    .site-banner .banner-container {
        min-height: auto;
    }
    .site-banner .banner-content {
        padding: 180px 0;
    }
    .site-banner .banner-watermark svg {
        opacity: 0.5;
    }
}

/* CTA - Main */
.cta-main {
    background: #262823;
    position: relative;
    z-index: 1;
}

.cta-main .cta-main-background {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
}

.cta-main .cta-main-content {
    padding: 140px 0;
    max-width: 500px;
}

.cta-main .cta-main-content h2 {
    color: #fff;
}

.cta-main .cta-main-content p {
    color: #fff;
    margin: 0;
}

.cta-main .cta-main-content .cta-button-container {
    margin: 30px 0 0;
}

.cta-main .cta-main-content .cta-button-container a.naked {
    color: #fff;
}

@media (max-width: 768px) {
    .cta-main .cta-main-content {
        padding: 80px 0;
    }
}

/* Intro Section */
.intro-section {
    padding: 160px 0 100px 0;
    overflow: hidden;
}

.intro-section .intro-section-row {
    display: flex;
    align-items: center;
}

.intro-section .intro-section-col {
    flex: 0 0 50%;
}

.intro-section .intro-section-col-left {
    padding: 0 60px 0 0;
}

.intro-section .intro-section-col-left h1 {
    position: relative;
    margin: 0 -180px 70px 0;
}

.intro-section .intro-section-col-left h1:after {
    content: '';
    background: #FEC72A;
    height: 5px;
    width: 100vw;
    position: absolute;
    bottom: -30px;
    right: -150px;
}

@media (max-width: 700px) {
    .intro-section .intro-section-row {
        flex-wrap: wrap;
    }
    .intro-section .intro-section-col {
        flex: 100%;
    }
    .intro-section .intro-section-col-left {
        padding: 0 0 40px;
    }
    .intro-section .intro-section-col-left h1 {
        margin: 0 0 70px;
    }
    .intro-section .intro-section-col-left h1:after {
        right: 0;
    }
}

/* Columns Section */
.columns-section {
    padding: 100px 0 60px 0;
}

.columns-section .columns-section-header {
    margin: 0 0 60px;
    position: relative;
}

.columns-section .columns-section-header .sideways {
    border-right: 4px solid #231F20;
    position: absolute;
    top: 0;
    left: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: translateX(calc(-100% - 60px));
}

.columns-section .columns-section-row {
    display: flex;
    justify-content: space-between;
}

.columns-section .columns-section-col {
    flex: 0 0 calc(33.33333% - 20px);
    border: 2px solid rgb(155, 155, 155, 0.2);
    padding: 40px 20px;
    margin: 0 0 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.columns-section a.columns-section-col:hover {
    background: #FEC72A;
    border-color: #FEC72A;
}

.columns-section .columns-section-col h3 {
    color: #231F20;
    text-transform: uppercase;
    line-height: 0.8;
    word-spacing: 200px;
    margin: 0 0 20px;
}

.columns-section .columns-section-col p {
    color: #303239;
}

.columns-section .columns-section-col .more-link {
    margin: auto 0 0 0;
}

@media (max-width: 1100px) {
    .columns-section .columns-section-header .sideways {
        writing-mode: unset;
        transform: translateY(calc(-100% - 10px));
        border: none;
    }
}
@media (max-width: 768px) {
    .columns-section {
        padding: 80px 0 40px 0;
    }
    .columns-section .columns-section-row {
        flex-wrap: wrap;
    }
    .columns-section .columns-section-col {
        flex: 100%;
    }
    .columns-section .columns-section-col h3 {
        word-spacing: normal;
    }
}

/* Featured News */
.featured-news-section {
    padding: 100px 0;
}

.featured-news-section .featured-news-section-header {
    max-width: 560px;
    margin: 0 0 60px;
    position: relative;
}

.featured-news-section .featured-news-section-header .sideways {
    border-right: 4px solid #231F20;
    position: absolute;
    top: 0;
    left: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: translateX(calc(-100% - 60px));
}

.featured-news-section .featured-news-section-row {
    display: flex;
}

.featured-news-section .featured-news-section-col-left {
    flex: 0 0 60%;
}

.featured-news-section .featured-news-section-col-right {
    flex: 0 0 40%;
    max-width: 40%;
    padding-left: 50px;
}

.featured-news-section .featured-news-section-footer {
    margin: 40px 0 0;
}

.featured-news-section .news-swiper .post-entry-alt {
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    max-width: none;
    flex-basis: auto;
}

.featured-news-section .news-swiper-navigation {
    display: flex;
    align-items: center;
    margin: 50px 0 0;
}

.featured-news-section .news-swiper-pagination {
    display: none;
}

.featured-news-section .news-swiper-prev,
.featured-news-section .news-swiper-next {
    cursor: pointer;
}

.featured-news-section .news-swiper-prev svg,
.featured-news-section .news-swiper-next svg {
    color: #9B9B9B;
    width: 31px;
}

.featured-news-section .news-swiper-count {
    display: flex;
    align-items: center;
    color: #9B9B9B;
    padding: 0 30px;
}

.featured-news-section .news-swiper-count span {
    padding: 0 6px;
}

@media (max-width: 1100px) {
    .featured-news-section .featured-news-section-header .sideways {
        writing-mode: unset;
        transform: translateY(calc(-100% - 10px));
        border: none;
    }
}
@media (max-width: 768px) {
    .featured-news-section .featured-news-section-row {
        flex-wrap: wrap;
    }
    .featured-news-section .featured-news-section-col-left {
        flex: 100%;
        margin: 0 0 50px;
    }
    .featured-news-section .featured-news-section-col-right {
        flex: 100%;
        max-width: 100%;
        padding: 0;
    }
}



/*--------------------------------------------------------------
Flexible Content
--------------------------------------------------------------*/
.flexible-content {
    padding: 160px 0 0;
}

/* Default */
.flexible-content .flex-default {
    padding: 0 0 100px;
}

@media (max-width: 768px) {
    .flexible-content .flex-default {
        padding: 0 0 60px;
    }
}

/* Intro */
.flexible-content .flex-intro {
    padding: 0 0 120px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .flexible-content .flex-intro {
        padding: 0 0 80px;
    }
}

/* Split Image */
.flexible-content .flex-split-image {
    padding: 0 0 100px;
}

.flex-split-image .flex-split-image-row {
    display: flex;
    justify-content: space-between;
}

.flex-split-image .flex-split-image-col .flex-split-image-content {
    padding-left: 60px;
    position: relative;
}

.flex-split-image .flex-split-image-col .flex-split-image-content .sideways {
    position: absolute;
    top: 0;
    left: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.flex-split-image .flex-split-image-col img {
    width: 100%;
}

.flex-split-image.flex-split-left .flex-split-image-col-left {
    flex: 0 0 50%;
    padding-right: 40px;
}

.flex-split-image.flex-split-left .flex-split-image-col-right {
    flex: 0 0 50%;
    padding-left: 40px;
}

.flex-split-image.flex-split-right .flex-split-image-col-left {
    flex: 0 0 50%;
    padding-right: 40px;
}

.flex-split-image.flex-split-right .flex-split-image-col-right {
    flex: 0 0 50%;
    padding-left: 40px;
}

@media (max-width: 992px) {
    .flex-split-image.flex-split-left .flex-split-image-col-left {
        padding-right: 30px;
    }
    .flex-split-image.flex-split-left .flex-split-image-col-right {
        padding-left: 30px;
    }
    .flex-split-image.flex-split-right .flex-split-image-col-left {
        padding-right: 30px;
    }
    .flex-split-image.flex-split-right .flex-split-image-col-right {
        padding-left: 30px;
    }
}
@media (max-width: 768px) {
    .flexible-content .flex-split-image {
        padding: 0 0 80px;
    }
    .flex-split-image .flex-split-image-row {
        flex-wrap: wrap;
    }
    .flex-split-image.flex-split-left .flex-split-image-col-left {
        flex: 100%;
        padding: 0;
        order: 2;
    }
    .flex-split-image.flex-split-left .flex-split-image-col-right {
        flex: 100%;
        padding: 0;
        margin: 0 0 40px;
        order: 1;
    }
    .flex-split-image.flex-split-right .flex-split-image-col-left {
        flex: 100%;
        padding: 0;
        margin: 0 0 40px;
    }
    .flex-split-image.flex-split-right .flex-split-image-col-right {
        flex: 100%;
        padding: 0;
    }
    .flex-split-image .flex-split-image-col img {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Featured News */
.flexible-content .flex-featured-news {
    padding: 0 0 100px;
}

.flex-featured-news .flex-news-header {
    margin: 0 0 60px;
}



/*--------------------------------------------------------------
Home
--------------------------------------------------------------*/
/* Banner */
.site-banner.home-banner .banner-container {
    min-height: 900px;
}
/*
.site-banner.home-banner .banner-watermark,
.site-banner.home-banner .banner-content .large-title {
    opacity: 0;
}
*/

.start .banner-watermark #logo .st1, .start .banner-watermark #logo .st28 {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: icon .3s ease-in-out forwards;
}

.start .banner-watermark #logo #SVGID_2_ .st1 {
  animation-delay: .2s;
}
.start .banner-watermark #logo #SVGID_3_ .st1 {
  animation-delay: .3s;
}
.start .banner-watermark #logo #SVGID_4_ .st1 {
  animation-delay: .4s;
}
.start .banner-watermark #logo #SVGID_5_ .st1 {
  animation-delay: .5s;
}
.start .banner-watermark #logo #SVGID_6_ .st1 {
  animation-delay: .6s;
}
.start .banner-watermark #logo #SVGID_7_ .st1 {
  animation-delay: .7s;
}
.start .banner-watermark #logo #SVGID_8_ .st1 {
  animation-delay: .8s;
}
.start .banner-watermark #logo #SVGID_9_ .st1 {
  animation-delay: .9s;
}
.start .banner-watermark #logo #SVGID_10_ .st1 {
  animation-delay: 1s;
}
.start .banner-watermark #logo #SVGID_11_ .st1 {
  animation-delay: 1.1s;
}
.start .banner-watermark #logo #SVGID_12_ .st1 {
  animation-delay: 1.2s;
}
.start .banner-watermark #logo #SVGID_13_ .st1 {
  animation-delay: 1.3s;
}
.start .banner-watermark #logo #SVGID_14_ .st28 {
  animation-delay: 1.5s;
}
.start .banner-watermark #logo #SVGID_15_ .st28 {
  animation-delay: 1.6s;
}
.start .banner-watermark #logo #SVGID_16_ .st28 {
  animation-delay: 1.7s;
}

@keyframes icon {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 992px) {
    .site-banner.home-banner .banner-container {
        min-height: 680px;
    }
}
@media (max-width: 768px) {
    .site-banner.home-banner .banner-container {
        min-height: auto;
    }
}

/* Intro */
.home-page .home-intro {
    background: #FEC72A;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.home-intro .home-intro-inner {
    max-width: 520px;
    position: relative;
}

.home-intro .home-intro-inner .sideways {
    border-right: 4px solid #231F20;
    position: absolute;
    top: 0;
    left: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: translateX(calc(-100% - 60px));
}

.home-intro .home-intro-inner a.naked {
    display: inline-block;
    margin: 30px 0 0;
    text-decoration: underline 2px rgba(35, 31, 32, 0);
}

.home-intro .home-intro-inner a.naked:hover {
    text-decoration-color: rgba(35, 31, 32, 1);
}

.home-intro .home-intro-watermark {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    height: 100%;
    width: auto;
    max-height: 600px;
    color: #9B9B9B;
    z-index: -1;
}

.home-intro .home-intro-watermark svg {
    height: 100%;
    margin-left: auto;
}

@media (max-width: 1100px) {
    .home-page .home-intro {
        padding: 100px 0 60px 0;
    }
    .home-intro .home-intro-inner .sideways {
        writing-mode: unset;
        transform: translateY(calc(-100% - 10px));
        border: none;
    }
}
@media (max-width: 992px) {
    .home-page .container-pad {
        padding-left: 20px;
    }
    .home-intro .home-intro-watermark svg {
        opacity: 0.3;
    }
}



/*--------------------------------------------------------------
About
--------------------------------------------------------------*/
/* Grid */
.about-page .about-grid {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-grid .about-grid-header {
    margin: 0 0 60px;
}

.about-grid .about-grid-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-grid .about-grid-col {
    flex: 0 0 33.33333%;
    padding: 50px 50px 60px 50px;
    position: relative;
}

.about-grid .about-grid-col .sideways {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.about-grid .about-grid-col p {
    margin: 0;
}

.about-grid .about-grid-watermark {
    position: absolute;
    bottom: 0;
    right: -10%;
    height: 100%;
    width: auto;
    max-height: 560px;
    color: #FEC72A;
    z-index: -1;
}

.about-grid .about-grid-watermark svg {
    height: 100%;
    opacity: 0.5;
    margin-left: auto;
}

@media (max-width: 992px) {
    .about-grid .about-grid-col {
        padding: 50px 20px 60px 20px;
    }
}
@media (max-width: 768px) {
    .about-grid .about-grid-col {
        flex: 0 0 50%;
    }
}
@media (max-width: 500px) {
    .about-grid .about-grid-col {
        flex: 100%;
    }
    .about-grid .about-grid-watermark svg {
        opacity: 0.2;
    }
}

/* Split */
.about-page .about-split {
    padding: 100px 0;
}

.about-split .about-split-header {
    margin: 0 0 60px;
}

.about-split .about-split-row {
    display: flex;
    flex-wrap: wrap;
}

.about-split .about-split-col {
    position: relative;
}

.about-split .about-split-col-left {
    flex: 0 0 50%;
    padding: 0 60px;
}

.about-split .about-split-col-right, .about-split .about-split-col-left:nth-of-type(2n) {
    flex: 0 0 50%;
    margin: 300px 0 0;
    padding: 0 60px;
}

.about-split .about-split-col .sideways {
    position: absolute;
    top: 0;
    left: 15px;
    margin: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.about-split .about-split-col img {
    margin: 0 0 50px;
}

.about-split .about-split-col-inner {
    margin-left: 60px;
    position: relative;
    text-align: right;
}

.about-split .about-split-col-inner:before {
    content: '';
    background: #FEC72A;
    width: 5px;
    height: 120px;
    position: absolute;
    left: -20px;
    top: -80px;
}

.about-split .about-split-col-inner h3 {
    margin: 0 0 10px;
    text-transform: none;
    text-align: left;
}

.about-split .about-split-col p {
    margin: 0;
    text-align: left;
}

.about-split .about-split-col-inner a.more-link {
    color: #231F20;
    margin: 20px 0 0;
    display: inline-block;
    text-align: right;
}

.about-split .about-split-col-inner a.more-link:hover {
    color: #FEC72A;
}

@media (max-width: 768px) {
    .about-page .about-split {
        padding: 40px 0 80px 0;
    }
    .about-split .about-split-row {
        flex-wrap: wrap;
    }
    .about-split .about-split-col-left {
        flex: 100%;
        padding: 0 0 0 60px;
        margin: 0 0 60px;
    }
    .about-split .about-split-col-right, .about-split .about-split-col-left:nth-of-type(2n) {
        flex: 100%;
        margin: 0;
        padding: 0 0 0 60px;
    }
    .about-split .about-split-col-left:nth-of-type(2n) {
        margin: 0 0 60px;
    }
    .about-split .about-split-col img {
        max-width: 560px;
        width: 100%;
        margin: 0 auto 30px auto;
    }
    .about-split .about-split-col-inner {
        text-align: left;
    }
}
@media (max-width: 500px) {
    .about-split .about-split-col .sideways {
        left: 0;
    }
    .about-split .about-split-col-inner {
        margin-left: 30px;
    }
    .about-split .about-split-col-left {
        padding: 0 0 0 40px;
    }
    .about-split .about-split-col-right, .about-split .about-split-col-left:nth-of-type(2n) {
        padding: 0 0 0 40px;
    }
}

/* Columns */
.about-page .about-columns {
    padding: 120px 0 80px 0;
    background: #FEC72A;
}

.about-columns a.columns-section-col:hover {
    background: #fff;
    border-color: #fff;
}

@media (max-width: 768px) {
    .about-page .about-columns {
        padding: 80px 0 40px 0;
    }
}



/*--------------------------------------------------------------
Contact
--------------------------------------------------------------*/
/* Main */
.contact-page .contact-main {
    background: #231F20;
    color: #FBF2E9;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-main .contact-main-row {
    display: flex;
}

.contact-main .contact-main-left {
    flex: 0 0 50%;
    padding: 180px 0 0;
}

.contact-main h1 {
    color: #FBF2E9;
}

.contact-main .contact-main-left > h2 {
    font-size: 22px;
    margin: 0 0 50px;
}

.contact-main .contact-main-watermark {
    position: absolute;
    bottom: 40px;
    right: -10%;
    height: 100%;
    width: auto;
    max-height: 560px;
    color: #fff;
    z-index: -1;
}

.contact-main .contact-main-watermark svg {
    height: 100%;
    margin-left: auto;
}

@media (max-width: 1200px) {
    .contact-main .contact-main-watermark {
        right: -15%;
    }
}
@media (max-width: 992px) {
    .contact-main .contact-main-watermark {
        opacity: 0.07;
    }
}
@media (max-width: 768px) {
    .contact-main .contact-main-left {
        flex: 100%;
    }
}

/* Details */
.contact-main .contact-info-item {
    margin: 0 0 40px;
}

.contact-main .contact-info-item a {
    color: #FBF2E9;
}

.contact-main .contact-info-item a:hover {
    color: #FEC72A;
}

/* Form */
.contact-form .gfield input[type="text"],
.contact-form .gfield textarea {
    background: transparent;
    color: #FBF2E9;
    border: none;
    border-bottom: 2px solid #9B9B9B;
    padding: 13px 0;
    font-size: 18px;
}

.contact-form .gfield input[type="text"]:-webkit-autofill { 
    transition: background-color 5000s;
    -webkit-text-fill-color: #FBF2E9 !important;
}

.contact-form .gfield input[type="text"]:focus,
.contact-form .gfield textarea:focus {
    border-color: #FEC72A;
}

.contact-form .gfield.gfield_error input[type="text"],
.contact-form .gfield.gfield_error textarea {
    border-color: red;
}

.contact-form .gform_footer .button {
    background: transparent;
    border-color: #FBF2E9;
    width: 100%;
}

.contact-form .gform_footer .button:hover {
    background: #FEC72A;
    border-color: #FEC72A;
}

/* Background */
.contact-main .contact-main-background {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
    width: calc(50% - 50px);
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.2;
}

@media (max-width: 992px) {
    .contact-main .contact-main-background {
        display: none;
    }
}



/*--------------------------------------------------------------
Post - Archive
--------------------------------------------------------------*/
/* Archive */
.post-archive {
    padding: 200px 0 100px 0;
}

.post-archive .post-archive-header {
    margin: 0 0 100px;
}

.post-archive .post-archive-header h1 {
    max-width: 660px;
    position: relative;
}

.post-archive .post-archive-header h1:after {
    content: '';
    background: #FEC72A;
    height: 5px;
    width: 100vw;
    position: absolute;
    bottom: -30px;
    right: -150px;
}

.post-archive .post-archive-header p {
    max-width: 660px;
    margin: 70px 0 0 0;
}

@media (max-width: 992px) {
    .post-archive .post-archive-header h1:after {
        right: 0;
    }
}
@media (max-width: 768px) {
    .post-archive {
        padding: 160px 0 80px 0;
    }
}

/* Pagination */
.post-pagination {
    font-size: 25px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.post-pagination span,
.post-pagination a {
    text-decoration: none;
    color: #231F20;
    margin: 0 10px;
}

.post-pagination a:hover,
.post-pagination .current {
    color: #FEC72A;
}



/*--------------------------------------------------------------
Post - Entry
--------------------------------------------------------------*/
.post-entry-row {
    display: flex;
    flex-wrap: wrap;
}

.post-entry {
    flex: 100%;
    padding: 0 0 0 60px;
    margin: 0 0 120px;
}

.post-entry .post-entry-perma {
    display: flex;
}

.post-entry-row .post-entry:nth-of-type(2n) .post-entry-perma {
    flex-direction: row-reverse;
}

.post-entry .post-entry-perma:hover {
    opacity: 0.8;
}

/* Side */
.post-entry .post-entry-side {
    flex: 0 0 280px;
    color: #231F20;
}

.post-entry .post-entry-category {
    margin: 0 0 15px;
}

.post-entry .post-entry-title {
    margin: 0 0 15px;
}

.post-entry .post-entry-summary {
    margin: 0 0 30px;
}

.post-entry .post-entry-view {
    font-weight: 700;
    text-transform: uppercase;
    margin: 15px 0 0;
}

/* Main */
.post-entry .post-entry-main {
    flex: 1;
    padding: 0 0 0 50px;
}

.post-entry-row .post-entry:nth-of-type(2n) .post-entry-main {
    padding: 0 50px 0 0;
}

.post-entry .post-entry-image {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 70%;
}

@media (max-width: 992px) {
    .post-entry {
        padding: 0;
    }    
}
@media (max-width: 600px) {
    .post-entry {
        margin: 0 0 80px;
    }
    .post-entry .post-entry-perma {
        flex-wrap: wrap;
    }
    .post-entry .post-entry-side {
        flex: 100%;
        margin: 0 0 40px;
    }
    .post-entry .post-entry-main {
        flex: 100%;
        padding: 0;
    }
    .post-entry-row .post-entry:nth-of-type(2n) .post-entry-main {
        padding: 0;
    }
    .post-entry .post-entry-image {
        padding-top: 75%;
    }
    .post-entry .post-entry-secondary {
        display: none;
    }
    .post-entry-row .post-entry:nth-of-type(2n) .post-entry-view:after {
        left: 0;
        right: auto;
    }
}



/*--------------------------------------------------------------
Post - Entry Alt
--------------------------------------------------------------*/
.post-entry-alt {

}

.post-entry-alt .post-entry-perma {
    display: block;
}

.post-entry-alt .post-entry-perma:hover {
    opacity: 0.8;
}

.post-entry-alt .post-entry-image {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 70%;
    margin: 0 0 40px;
}

.post-entry-alt .post-entry-title {
    color: #231F20;
    margin: 0 0 10px;
}

.post-entry-alt .post-entry-summary {
    color: #231F20;
}



/*--------------------------------------------------------------
Post - Single
--------------------------------------------------------------*/
/* Single */
.post-single {
    padding: 180px 0 100px 0;
}

.post-single .post-single-header {
    margin: 0 0 30px;
}

.post-single .post-single-header h1 {
    margin: 0 0 20px;
}

@media (max-width: 768px) {
    .post-single {
        padding: 160px 0 80px 0;
    }
}

/* Actions */
.post-single .post-single-actions {
    margin: 80px 0 0;
    background: #FEC72A;
    padding: 40px 140px 20px 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-single-actions .post-single-nav {
    margin: 0 20px 20px 0;
}

.post-single-actions .post-single-nav a {
    color: #231F20;
    font-size: 14px;
    font-weight: 700;
}

.post-single-actions .post-single-nav a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .post-single .post-single-actions {
        flex-wrap: wrap;
        padding: 40px 40px 20px 40px;
    }
}

/* Social Shares */
.post-social-shares {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 20px;
}

.post-social-shares p {
    color: #231F20;
    font-size: 14px;
    font-weight: 700;
    margin: 0 20px 0 0;
}

.post-social-shares a,
.post-social-shares .clipboard-copy {
    font-size: 14px;
    line-height: 1;
    color: #231F20;
    margin-left: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.post-social-shares a:hover,
.post-social-shares .clipboard-copy:hover {
    color: #fff;
}

.post-social-shares a:first-of-type {
    margin: 0;
}

.post-social-shares .clipboard-copy {
    transition: all 0.3s ease;
    line-height: 1;
}

@media (max-width: 400px) {
    .post-social-shares {
        flex-wrap: wrap;
    }
    .post-social-shares h4 {
        flex: 100%;
        margin: 0 0 20px;
    }
}

/* Footer */
.post-single .post-single-footer {
    text-align: center;
    padding: 70px 0 0;
}



/*--------------------------------------------------------------
Post - Search
--------------------------------------------------------------*/
/* Archive */
.search-archive {
    padding: 180px 0 100px 0;
}

.search-archive .search-archive-header {
    text-align: center;
    margin: 0 0 40px;
}

.search-archive .search-archive-header h1 {
    margin: 0;
}

/* Entry */
.search-entry {
    display: block;
    background: #231F20;
    padding: 20px 30px;
    margin: 0 0 20px;
    text-align: center;
}

.search-entry:hover {
    background: #FEC72A;
}

.search-entry .search-entry-type {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 5px;
}

.search-entry .search-entry-title h3 {
    margin: 0 0 10px;
}



/*--------------------------------------------------------------
Footer
--------------------------------------------------------------*/
.site-footer {
    background: #231F20;
}

/* Main */
.site-footer .footer-main {
    padding: 100px 0 0;
}

.footer-main .footer-main-row {
    display: flex;
    border-top: 2px solid rgba(155, 155, 155, 0.2);
    padding: 60px 0 50px 0;
}

.footer-main .footer-main-col-left {
    flex: 0 0 60%;
    display: flex;
    border-right: 2px solid rgba(155, 155, 155, 0.2);
}

.footer-main .footer-main-col-right {
    flex: 0 0 40%;
}

.site-footer .footer-main h4 {
    color: #fff;
    margin: 0 0 20px;
}

.footer-main .footer-logo {
    flex: 1;
    padding: 0 20px 0 0;
}

.footer-main .footer-logo img {
    width: 140px;
}

@media (max-width: 992px) {
    .site-footer .footer-main {
        padding: 80px 0 0;
    }
    .footer-main .footer-main-row {
        flex-wrap: wrap;
    }
    .footer-main .footer-main-col-left {
        flex: 100%;
        border: none;
        margin: 0 0 20px;
    }
    .footer-main .footer-main-col-right {
        flex: 100%;
    }
}
@media (max-width: 600px) {
    .site-footer .footer-main {
        padding: 60px 0 0;
    }
    .footer-main .footer-main-row {
        border: none;
        padding: 0 0 40px;
    }
    .footer-main .footer-main-col-left {
        flex-wrap: wrap;
        margin: 0;
    }
    .footer-main .footer-logo {
        flex: 100%;
        margin: 0 0 40px;
        padding: 0;
    }
    .footer-main .footer-logo img {
        margin: 0 auto;
    }
}

/* Menus */
.footer-main .footer-menu {
    flex: 1;
    padding: 0 20px 0 0;
    margin: 0 0 40px;
}

.footer-main .footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-main .footer-menu ul li {
    margin: 0 0 10px;
}

.footer-main .footer-menu ul li a {
    color: #fff;
}

.footer-main .footer-menu ul li a:hover,
.footer-main .footer-menu ul li.current-menu-item a {
    color: #FEC72A;
}

@media (max-width: 600px) {
    .footer-main .footer-menu {
        flex: 100%;
    }
}

/* Newsletter */
.footer-main .footer-newsletter {
    padding: 0 20px 0 100px;
}

.footer-main .footer-newsletter p {
    color: #fff;
    margin: 0 0 30px;
}

.footer-main .footer-newsletter input[type="text"] {
    padding: 13px 160px 13px 13px;
    margin: 0;
}

.footer-main .footer-newsletter form {
    position: relative;
}

.footer-main .footer-newsletter .gform_footer {
    position: absolute;
    right: 0;
    top: 0;
}

.footer-main .footer-newsletter .gform_footer .button:hover {
    background: #fff;
    border-color: #FEC72A;
    color: #231F20;
}

.footer-main .footer-newsletter .gform_confirmation_message {
    color: #fff;
}

@media (max-width: 992px) {
    .footer-main .footer-newsletter {
        padding: 0;
    }
}

/* Bottom */
.site-footer .footer-bottom {
    padding: 0 0 20px;
    color: #fff;
}

.footer-bottom .footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 2px solid rgba(155, 155, 155, 0.2);
    padding: 30px 0 0;
}

.footer-bottom .footer-bottom-col {
    margin: 0 0 10px;
}

.footer-bottom .footer-copyright {
    text-align: center;
}

.footer-bottom .footer-credits a {
    color: #fff;
}

.footer-bottom .footer-credits a:hover {
    color: #FEC72A;
}

.footer-bottom .footer-links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-bottom .footer-links ul li {
    padding-left: 30px;
}

.footer-bottom .footer-links ul li:first-of-type {
    padding: 0;
}

.footer-bottom .footer-links ul li a {
    color: #fff;
}

.footer-bottom .footer-links ul li a:hover,
.footer-bottom .footer-links ul li a.active {
    color: #FEC72A;
}

@media (max-width: 768px) {
    .site-footer .footer-bottom {
        padding: 20px 0;
    }
    .footer-bottom .footer-bottom-col {
        flex: 100%;
        text-align: center;
    }
    .footer-bottom .footer-credits { order: 3; }
    .footer-bottom .footer-copyright { order: 2; }
    .footer-bottom .footer-links { order: 1; }
    .footer-bottom .footer-links ul {
        justify-content: center;
    }
}