
/*--------------------------------------------------------------
# Dark / Light Styles
--------------------------------------------------------------*/
body {
    --wp--custom--color--primary-background-transparent: #0E0D0F00;
}

body.light-mode {
    --wp--custom--color--primary-text: var(--wp--preset--color--black-300);
    --wp--custom--color--primary-background: var(--wp--preset--color--green-300);
    --wp--custom--color--primary-background-transparent: #CAD3D300;
    --wp--custom--color--secondary-background: var(--wp--preset--color--white-100);
    --wp--custom--color--primary-link: var(--wp--preset--color--pink-500);
}

body.light-mode .has-black-100-background-color {
    background-color: var(--wp--custom--color--secondary-background) ! important;
}

body.light-mode .has-black-300-background-color {
    background-color: var(--wp--custom--color--primary-background) ! important;
}

body.light-mode .has-green-300-background-color {
    background-color: var(--wp--custom--color--primary-text) ! important;
}

body.light-mode .has-green-300-color {
    color: var(--wp--custom--color--primary-text) ! important;
}

/*--------------------------------------------------------------
# Dark / Light Mode Toggle
--------------------------------------------------------------*/
.wp-block-dark-mode-toggle {
    max-width: 121px;
    display: contents;
}

.dark-mode-toggle {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.toggle-slot {
    position: relative;
    height: 40px;
    width: 121px;
    border-radius: 35px;
    background-color: var(--wp--preset--color--white-100);
    transition: background-color 250ms;
}

footer .toggle-slot {
    background-color: var(--wp--preset--color--green-300);
}

.dark-mode-toggle:checked ~ .toggle-slot {
    background-color: var(--wp--preset--color--black-100);
}

footer .dark-mode-toggle:checked ~ .toggle-slot {
    background-color: var(--wp--preset--color--black-300);
}

.toggle-button {
    transform: translate(calc(100% - 5px), .5em);
    position: absolute;
    border-radius: 50%;
    transition: transform 500ms cubic-bezier(.26,2,.46,.71);
    font-size: var(--wp--custom--typography--alanis);
    cursor: pointer;
}

.toggle-button::after {
    content: 'Light Mode';
    color: var(--wp--preset--color--black-100);
}

.dark-mode-toggle:checked ~ .toggle-slot .toggle-button::after {
    content: 'Dark Mode';
    color: var(--wp--custom--color--primary-text);
}

.dark-mode-toggle:checked ~ .toggle-slot .toggle-button {
    transform: translate(15px, .5em);
}

.sun-icon {
    position: absolute;
    height: 34px;
    width: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sun-icon-wrapper {
    position: absolute;
    height: 34px;
    width: 34px;
    opacity: 1;
    background: var(--wp--preset--color--green-300);
    border-radius: 100%;
    transform: translate(3px, 3px) rotate(90deg);
    transform-origin: 50% 50%;
    transition: opacity 250ms, transform 500ms cubic-bezier(.26,2,.46,.71);
}

footer .sun-icon-wrapper {
    background: var(--wp--preset--color--white-100);
}

.dark-mode-toggle:checked ~ .toggle-slot .sun-icon-wrapper {
    opacity: 0;
    transform: translate(15px, 10px) rotate(0deg);
}

.moon-icon {
    position: absolute;
    height: 34px;
    width: 34px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .moon-icon {
    color: var(--wp--preset--color--green-300);
}

.moon-icon-wrapper {
    position: absolute;
    height: 34px;
    background: var(--wp--custom--color--primary-text);
    width: 34px;
    opacity: 0;
    transform: translate(90px, 3px) rotate(0deg);
    transform-origin: 50% 50%;
    transition: opacity 150ms, transform 500ms cubic-bezier(.26,2.5,.46,.71);
    border-radius: 100%;
}

footer .sun-icon path {
    fill: var(--wp--preset--color--green-300);
}

footer .moon-icon-wrapper {
    color: var(--wp--preset--color--white-300);
}

.home footer .wp-block-dark-mode-toggle {
    display: none;
}

.dark-mode-toggle:checked ~ .toggle-slot .moon-icon-wrapper {
    opacity: 1;
    transform: translate(82px, 3px) rotate(-35deg);
}

/*--------------------------------------------------------------
# Spotlight
--------------------------------------------------------------*/
.cursor {
    height: 100px;
    width: 100px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: -64px;
    left: -64px ;
    transform: translateX(0) translateY(0) scale(0);
    mix-blend-mode: difference;
    opacity: 0;
    transition: opacity 300ms, transform 300ms, width 300ms, height 300ms ease-in-out;
    z-index: 99;
    pointer-events: none;
}

.cursor.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) scale(1);
}

.cursor.show-cta {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) scale(1);
    width: 42px;
    height: 42px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header.wp-block-template-part {
    margin-bottom: 80px;
    position: sticky;
    top: 0;
    z-index: 9999;
    background: var(--wp--custom--color--primary-background);
}

.has-hero-waves header.wp-block-template-part {
    margin-bottom: var(--wp--custom--spacing--vertical--medium);
}

header.wp-block-template-part::after {
    height: 100px;
    width: 100%;
    position: absolute;
    content: '';
    background: linear-gradient(180deg, var(--wp--custom--color--primary-background) 0%, var(--wp--custom--color--primary-background-transparent) 100%);
    pointer-events: none;
}

.search-triggered header.wp-block-template-part {
    margin-bottom: calc(var(--wp--custom--spacing--vertical--medium) - 56px);
}

.wp-block-pagely-layout-grid {
    margin-top: 0;
    margin-bottom: var(--wp--custom--spacing--vertical--medium) ! important;
}

.wp-block-pagely-layout-grid.alignfull {
    max-width: 1440px !important;
}

.wp-block-pagely-layout-grid.has-large-vertical-margin {
    margin-bottom: var(--wp--custom--spacing--vertical--large) ! important;
}

.wp-block-pagely-layout-grid.has-small-vertical-margin {
    margin-bottom: var(--wp--custom--spacing--vertical--small) ! important;
}

.wp-block-pagely-layout-grid.has-no-vertical-margin,
.wp-block-pagely-layout-grid-column .wp-block-pagely-layout-grid {
    margin-bottom: 0! important;
}

.wp-block-pagely-layout-grid.column1-tablet-grid__start-2:not(.column1-desktop-grid__start-3, .column1-desktop-grid__start-2, .column1-desktop-grid__start-1) > .wp-block-pagely-layout-grid-column:nth-child(1) {
    grid-column-start: 1;
}

header.site-header .wp-block-columns {
    padding-top: var(--wp--style--block-gap);
    padding-left: var(--wp--custom--spacing--horizontal--normal);
    padding-right: var(--wp--custom--spacing--horizontal--normal);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
    background-color: var(--wp--custom--color--secondary-background);
    padding: calc( var( --wp--style--block-gap ) * 2 ) 20px;
}

.site-footer *,
.site-footer .wp-block-image .alignright,
.site-footer .wp-block-image .alignright img {
    margin-top: 0;
}

.site-footer > * {
    padding-left: var(--wp--custom--spacing--horizontal--normal);
    padding-right: var(--wp--custom--spacing--horizontal--normal);
}

.site-footer > .wp-block-columns:first-of-type .wp-block-column:first-of-type p {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 35px;
    margin-top: 1em;
}

.site-footer > .wp-block-columns:first-of-type .wp-block-column:first-of-type p > a {
    font-size: var(--wp--custom--typography--alanis);
}

.site-footer .wp-block-columns:first-of-type .wp-block-column:first-of-type p::before {
    content: "Go";
    position: relative;
    right: .5em;
    background-color: var(--wp--preset--color--green-800);
    color: var(--wp--preset--color--white-100);
    border-radius: 50%;
    font-weight: 500;
    width: 34px;
    height: 34px;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    font-size: var(--wp--custom--typography--alanis);
}

.site-footer .wp-block-navigation__container {
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer .wp-block-navigation__container .wp-block-navigation-link {
    flex: 1 0 40%;
}

.site-footer .wp-block-navigation__container .wp-block-navigation-link a {
    white-space: nowrap;
    margin-bottom: 0;
    padding-top: 0;
    margin-left: 0;
}

/*--------------------------------------------------------------
# CTAs
--------------------------------------------------------------*/
.is-style-cta-link  {
    width: 100%;
}

.is-style-cta-link a {
    align-items: center;
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
	color: inherit;
}

.is-style-cta-link a::before {
    content: '';
    position: absolute;
    right: 0;
    z-index: 3;
    padding: 5px;
    border: 3px solid var(--wp--preset--color--green-800);
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.is-style-cta-link a::after {
    content: '';
    position: absolute;
    right: 0;
    z-index: 3;
    padding: 5px;
    border: 3px solid var(--wp--preset--color--green-800);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-color: var(--wp--custom--color--primary-text);
    -webkit-mask: url(../images/arrow.svg) no-repeat center center;
    mask: url(../images/arrow.svg) no-repeat center center;
}

.is-style-cta-link a::after,
.is-style-cta-link a::before {
    transition: all 350ms ease-in-out;
}

.is-style-cta-link a:hover::after,
.is-style-cta-link a:hover::before {
    width: 50px;
    height: 50px;
    transform: translateX(10px);
}

/*--------------------------------------------------------------
# Pricing Grid
--------------------------------------------------------------*/
.pricing-card {
    border-radius: 10px;
    background-color: var(--wp--custom--color--secondary-background) !important;
    color: var(--wp--custom--color--primary-text) !important;
    display: flex;
    flex-direction: column;
}

.pricing-card h2,
.pricing-card p.price {
    font-size: 36px;
}

.pricing-card h2 {
    line-height: 1;
    margin: 0
}

.pricing-card p.price {
    font-size: 36px;
    border-top: 1px solid var(--wp--custom--color--primary-text);
    border-bottom: 1px solid var(--wp--custom--color--primary-text);
    padding: 16px 0;
    margin: 8px 0 16px;
}

.pricing-card p.price sub {
    font-size: 12px;
    display: block;
    margin-top: -.5em;
}
.pricing-card p.price sup {
    font-size: var(--wp--custom--spacing--unit);
}

.pricing-card .wp-block-buttons {
    justify-self: flex-end;
    margin-top: auto;
}

.pricing-card .wp-block-buttons > .wp-block-button {
    flex: 1;
    margin-top: 1.75em;
}

.pricing-card .wp-block-buttons > .wp-block-button.has-custom-font-size a.wp-block-button__link {
    border-radius: 35px;
    overflow: hidden;
    padding: 4px var(--wp--custom--spacing--unit);
    font-weight: 400;
    font-size: 16px;
    width: 100%;
    position: relative;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}

.pricing-card .wp-block-buttons > .wp-block-button.has-custom-font-size:first-of-type:hover a.wp-block-button__link {
    padding-left: 0;
}

.pricing-card .wp-block-buttons > .wp-block-button.has-custom-font-size:first-of-type a.wp-block-button__link::after {
    content: url(../images/pricing-arrow.svg);
    padding: 5px;
    position: absolute;
    top: 2px;
    left: calc( 100% - 3em );
    transition: all 0.2s ease-in-out;
    height: 0;
    width: 0;
    opacity: 0;
}

.pricing-card .wp-block-buttons > .wp-block-button.has-custom-font-size:first-of-type:hover a.wp-block-button__link::after {
    width: auto;
    height: auto;
    opacity: 1;
    left: calc( 100% - 2em );
}

.pricing-card .wp-block-buttons > .wp-block-button.has-custom-font-size a.wp-block-button__link.has-black-300-background-color {
    background-color: var(--wp--custom--color--primary-background) ! important;
    color: var(--wp--custom--color--primary-text);
}

/*--------------------------------------------------------------
# Verticals Grid
--------------------------------------------------------------*/

.verticals-grid .is-style-cta-link {
    border-radius: 10px;
}

.verticals-grid .is-style-cta-link:not([data-type="core/heading"]) {
    height: 45px;
    display: flex;
    width: calc(100% - 5.5em);
    margin: 20px 0 0 0;
}

.verticals-grid .is-style-cta-link:not([data-type="core/heading"]) a {
    padding-right: 48px;
}

/*--------------------------------------------------------------
# Columns
--------------------------------------------------------------*/
.is-style-rounded  {
    border-radius: 10px
}

/*--------------------------------------------------------------
# In-Content Ads
--------------------------------------------------------------*/
.in-content-callout p {
    font-size: var(--wp--custom--typography--husky);
    line-height: 1.08;
}

.in-content-callout hr {
    opacity: .5;
}

.in-content-callout.callout-two p {
    font-size: var(--wp--custom--typography--small-ads);
    line-height: 1.111;
}

.in-content-callout.callout-two .wp-block-group {
    color: var(--wp--preset--color--pink-500);
    border: 8px solid currentColor;
    border-radius: 50%;
    box-shadow: inset 1px 1px 12px currentColor, 1px 1px 12px currentColor;
    height: 168px;
    width: 168px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.in-content-callout.callout-two .wp-block-group > * {
    color: var(--wp--custom--color--primary-text) !important;
 }

 .in-content-callout.callout-two .wp-block-group h4,
 .is-style-little-pill {
    padding: 0 !important;
    margin: 0;
    font-size: var(--wp--custom--typography--alanis)  !important;
    border-radius: 35px;
    background: var(--wp--custom--color--primary-background);
    line-height: 2 !important;
    font-weight: 400;
    text-align: center;
    width: 50%;
}

.in-content-callout.callout-two .wp-block-group h5 {
    padding: 0;
    margin: 0;
    line-height: 1.778;
    white-space: nowrap;
    font-weight: normal;
    font-size: var(--wp--custom--typography--small-ads);
}

.in-content-callout.callout-two div > div:first-of-type {
    margin: auto;
}

.in-content-callout.callout-three p {
    line-height: 1.389;
    font-size: inherit;
}

.in-content-callout.callout-three {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
}

.in-content-callout.callout-three hr {
    margin: 30px 0
}

hr + .is-style-cta-link {
    padding-top: calc(var(--wp--custom--spacing--unit) );
}

.in-content-callout.callout-three p {
    line-height: 1.389;
    font-size: inherit;
}

.in-content-callout.callout-four h2 {
    line-height: 1.111;
    font-size: var(--wp--custom--typography--small-ads);
    margin-top: var(--wp--custom--spacing--unit)
}

.in-content-callout.callout-four p {
    line-height: 1.389;
    font-size: inherit;
    margin-top: var(--wp--custom--spacing--unit)
}

.testimonial p > sup:first-child {
    color: var(--wp--preset--color--pink-500);
    font-size: var(--wp--custom--typography--husky);
    position: relative;
    top: 18px;
}


/*--------------------------------------------------------------
# NPS Grid
--------------------------------------------------------------*/
.nps-grid .wp-block-group,
.wp-block-group.is-style-rounded-glowing {
    border: 8px solid currentColor;
    border-radius: 50%;
    box-shadow: inset 1px 1px 12px currentColor, 1px 1px 12px currentColor;
    height: 168px;
    width: 168px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 1em auto;
}

.nps-grid .wp-block-group p span,
.nps-grid .wp-block-group p mark,
.wp-block-group.is-style-rounded-glowing p,
.wp-block-group.is-style-rounded-glowing p mark,
.wp-block-group.is-style-rounded-glowing p span {
    position: relative;
    color: var(--wp--custom--color--primary-text) !important;  /* !important is needed to override the default color */
}

.is-style-rounded-glowing p:last-of-type {
    margin-top: 8px;
}

.is-style-full-height .wp-block-group {
    height: 100%;
}

.nps-grid .wp-block-group p span::after,
.nps-grid .wp-block-group p mark::after {
    content: '%';
    top: -.25em;
    font-size: 30px;
    position: absolute;
}

/*--------------------------------------------------------------
# Brag Board
--------------------------------------------------------------*/
.client-list .disney {
    position: relative;
    top: 1rem;
}

.brag-board .wp-block-image {
    max-width: 180px;
}

.brag-board h2 {
    margin-bottom: 0;
}

.brag-board p {
    margin-bottom: calc( 20px + 2em );
    margin-top: 0.2em;
}


/*--------------------------------------------------------------
# Pricing Table
--------------------------------------------------------------*/

.pricing-table-group ul {
    margin-bottom: 60px;
}

.pricing-table-group li {
    margin-bottom: 1em;
    position: relative;
}

.pricing-table-group .is-style-pricing {
    overflow: unset;
}

.is-style-pricing th mark {
    color: var(--wp--custom--color--primary-text);
    margin-top: 4px;
    display: inline-block;
}

.pricing-table-group li::marker {
    content: ''
}
.pricing-table-group li::before {
    margin-right: clamp(1.5em, 2.5em, 10vw);
    display: inline-block;
    border-radius: 50%;
    content: '';
    background-repeat: no-repeat;
    background-position: center center;
    vertical-align: middle;
}
.pricing-table-group li:nth-of-type(2)::after,
.pricing-table-group li:nth-of-type(3)::after {
    content: '';
    width: 14px;
    height: 14px;
    padding: 8px;
    position: absolute;
    left: 0;
    background: transparent;
    z-index: 10;
    border: 2px solid var(--wp--custom--color--primary-text);
    border-radius: 100%;
}

.pricing-table-group li:nth-of-type(1)::before {
    width: 15px;
    height: 12px;
    background-color: var(--wp--preset--color--green-800);
    box-shadow: 0px 1px 6px var(--wp--preset--color--green-800);
    padding: 9px 8px 9px 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='15px' height='12px' viewBox='0 0 15 12' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(-521.000000, -4817.000000)' stroke='white' stroke-width='3'%3E%3Cg id='Group-Copy-12' transform='translate(85.000000, 4786.000000)'%3E%3Cg id='Group-4-Copy-3' transform='translate(428.000000, 20.000000)'%3E%3Cpolyline id='Stroke-1' points='9.82033049 16.507661 13.7146695 20.402 21.7146695 12.402'%3E%3C/polyline%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pricing-table-group li:nth-of-type(2)::before {
    width: 15px;
    height: 12px;
    padding: 9px 8px 9px 8px;
    border: 2px solid var(--wp--custom--color--primary-text);
    background-color: var(--wp--custom--color--primary-text);
    -webkit-mask: url(../images/checkmark.svg) no-repeat center center;
    mask: url(../images/checkmark.svg) no-repeat center center;
}

.pricing-table-group li:nth-of-type(3)::before {
    width: 14px;
    height: 14px;
    border: 2px solid var(--wp--custom--color--primary-text);
    background-color: var(--wp--custom--color--primary-text);
    padding: 8px;
    -webkit-mask: url(../images/close.svg) no-repeat center center;
    mask: url(../images/close.svg) no-repeat center center;
}

.pricing-table-group sub {
    font-size: var(--wp--custom--typography--xs)
}

.pricing-table-group .wp-block-table thead {
    position: sticky;
    top: 100px;
    z-index: 9999;
    border: none;
}

.pricing-table-group .wp-block-table th {
    border: none;
    position: relative;
}

.pricing-table-group .wp-block-table thead th:first-of-type strong {
    display: inline-flex;
    width: auto;
    background: var(--wp--custom--color--secondary-background);
    padding: 2px 4px;
}

.pricing-table-group .wp-block-table thead th:first-of-type strong a {
    color: #777E7E;
    border-radius: 35px;
    padding: 0 14px;
    margin: 2px 0;
}

.pricing-table-group .wp-block-table thead th:first-of-type strong a.active {
    color: var(--wp--preset--color--black-100);
    background: var( --wp--preset--color--green-800);
    border-radius: 35px;
    padding: 0px 24px;
    margin: 2px;
}
.pricing-table-group .wp-block-table thead th:not(:first-of-type) span {
    color: var(--wp--custom--color--primary-text) ! important;
}

.pricing-table-group .wp-block-table thead th:not(:first-of-type):not(:last-of-type)::after {
    position: absolute;
    top: 20%;
    left: 0;
    width: 400%;
    height: 250%;
    border-right: 1px solid var(--wp--custom--color--primary-text);
    content: "";
    transform: scale(0.25);
    -webkit-transform: scale(0.25);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    z-index: 10;
}

.pricing-table-group .wp-block-table thead th.last-visible::after {
    border-right: none!important;
}

.pricing-table-group .wp-block-table th sup,
.pricing-table-group .wp-block-table th > span {
    font-weight: var(--wp--custom--font-weight--normal);
    line-height: 1;
}

.pricing-table-group .wp-block-table th > sup {
    font-size: var(--wp--custom--typography--xs);
    margin-bottom: -.25em;
    display: block;
}

.pricing-table-group .wp-block-table th > span {
    font-size: var(--wp--custom--typography--sm);
}

.pricing-table-group .wp-block-table th > span > sup,
.pricing-table-group .wp-block-table th > em {
    font-size: 10px;
    font-weight: var(--wp--custom--font-weight--normal);
    font-style: normal;
}

.pricing-table-group .wp-block-table th > em {
    line-height: 0;
}

.pricing-table-group .wp-block-table thead th:not(:first-of-type) {
    background: var(--wp--custom--color--secondary-background)
}

.pricing-table-group .wp-block-table thead th:last-child,
.pricing-table-group .wp-block-table thead th:nth-of-type(3) {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.pricing-table-group .wp-block-table thead th:nth-of-type(2),
.pricing-table-group .wp-block-table thead th:nth-of-type(4) {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.pricing-table-group .wp-block-table thead::after {
    content: "";
    display: block;
    margin-bottom: 3em;
}

.pricing-table-group .wp-block-table td {
    border: none;
    box-shadow: inset 0.25px .25px .25px var(--wp--custom--color--primary-text)
}

.pricing-table-group .wp-block-table tbody tr > td:first-of-type {
    box-shadow: inset 0px .25px .25px var(--wp--custom--color--primary-text);
    width: 320px;
    padding: 1.75em;
    line-height: .75;
}

.pricing-table-group .wp-block-table tbody tr:first-of-type > td:not(:last-child) {
    box-shadow: .25px 0px .25px var(--wp--custom--color--primary-text)
}

.pricing-table-group .wp-block-table tbody tr:first-of-type > td:nth-of-type(3),
.pricing-table-group .wp-block-table tbody tr:first-of-type > td:last-child {
    box-shadow: unset;
}

.pricing-table-group svg.exclude,
.pricing-table-group svg.include {
    padding: 9px 8px 9px 8px;
    border-radius: 50%;
}

.pricing-table-group svg.include {
    background: var(--wp--preset--color--green-800);
    box-shadow: 0px 1px 6px var(--wp--preset--color--green-800);
    color: white;
}

.pricing-table-group svg.exclude {
    border: 2px solid var(--wp--custom--color--primary-text);
    padding: 8px;
}

.pricing-table-group th strong {
    background: var(--wp--preset--color--green-800);
    color: var(--wp--preset--color--black-100);
    font-size: var(--wp--custom--typography--xs);
    padding: 4px var(--wp--custom--spacing--unit);
    font-weight: var(--wp--custom--font-weight--normal);
    border-radius: 35px;
    width: 100%;
}
.pricing-table-group .wp-block-table thead th:not(:first-of-type) strong a {
    position: relative;
    z-index: 99;
    color: var(--wp--preset--color--black-100);
}

.pricing-table-group th.hidden,
.pricing-table-group td.hidden {
    display: none;
}

/*--------------------------------------------------------------
# Hero Sections
--------------------------------------------------------------*/

.is-style-hero-waves {
    background-color: var(--wp--custom--color--primary-background);
    position: relative;
    filter: progid: DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='var(--wp--custom--color--primary-background)', endColorstr='var(--wp--custom--color--primary-background)');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0, var(--wp--custom--color--primary-background)), color-stop(100%, var(--wp--custom--color--primary-background)));
    background-image: -webkit-linear-gradient(135deg, var(--wp--custom--color--primary-background), var(--wp--custom--color--primary-background));
    background-image: -moz-linear-gradient(45deg, var(--wp--custom--color--primary-background), var(--wp--custom--color--primary-background));
    background-image: -ms-linear-gradient(45deg, var(--wp--custom--color--primary-background) 0, var(--wp--custom--color--primary-background) 100%);
    background-image: -o-linear-gradient(45deg, var(--wp--custom--color--primary-background), var(--wp--custom--color--primary-background));
    background-image: linear-gradient(135deg, var(--wp--custom--color--primary-background), var(--wp--custom--color--primary-background));
    margin: 0px;
    overflow: hidden;
}

.is-style-hero-waves > canvas {
    position: absolute;
    bottom: 0;
    opacity: .18;
    max-width: none;
}

.is-root-container .is-style-hero-waves > div { /* admin override */
    position: relative;
}

.is-style-hero-waves {
    width: 100%;
}

.is-style-hero-waves h2 {
    margin-block-start: 0;
}

.is-style-hero-waves::after {
    position: absolute;
    width: 100%;
    height: 5em;
    z-index: 9;
    bottom: 0;
    content: '';
    background-image: linear-gradient(to top, var(--wp--custom--color--primary-background), var(--wp--custom--color--primary-background-transparent));
}

.is-style-hero-waves > div * {
    z-index: 10;
}

/*--------------------------------------------------------------
# Hubspot Forms (and Comments)
--------------------------------------------------------------*/
.wp-pagely-hubspot-form {
    padding: 0 var(--wp--custom--spacing--horizontal--normal);
}

.wp-pagely-hubspot-form fieldset {
    max-width: none ! important;
}

.wp-pagely-hubspot-form form label > span,
.comment-form p:not(.comment-form-comment) > label {
    font-size: var(--wp--custom--typography--sm);
    color: var(--wp--custom--color--primary-text);
    position: relative;
    top: 2em;
    transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.wp-pagely-hubspot-form .show-label span,
form.comment-form .show-label label,
.wp-pagely-hubspot-form .hs-fieldtype-radio span,
.comment-form .hs-fieldtype-radio > label,
.wp-pagely-hubspot-form .hs-server_specs > label, .wp-pagely-hubspot-form .hs-server_specs span,
.wp-pagely-hubspot-form .hs-estimated_disk_storage > label, .wp-pagely-hubspot-form .hs-estimated_disk_storage span,
.wp-pagely-hubspot-form .hs-unique_website_details > label, .wp-pagely-hubspot-form .hs-unique_website_details span,
.wp-pagely-hubspot-form .hs-fieldtype-select > label, .wp-pagely-hubspot-form .hs-fieldtype-select span {
    top: 0;
    font-size: var(--wp--custom--typography--xs);
}

.wp-pagely-hubspot-form .hs-fieldtype-radio ul {
    padding-left: 0;
}

.wp-pagely-hubspot-form .hs-fieldtype-radio li {
    list-style-type: none;
}

.wp-pagely-hubspot-form .hs-fieldtype-radio li::marker {
    color: transparent;
}

.wp-pagely-hubspot-form .hs-fieldtype-radio li input {
    margin-right: 1em;
}
.wp-pagely-hubspot-form a {
    text-decoration: underline;
}

.wp-pagely-hubspot-form form label > span.hs-form-required,
.comment-form label span.required {
    color: var(--wp--preset--color--pink-500);
}

.wp-pagely-hubspot-form .hs-form-field {
    margin-bottom: 1em;
}

.wp-pagely-hubspot-form input:not([type="radio"]),
.wp-pagely-hubspot-form textarea,
.comment-form input,
.comment-form textarea {
    background: transparent;
    border: none;
    outline: none;
    padding: 8px 0;
    color: var(--wp--custom--color--primary-text);
    font-family: var(--wp--custom--font-primary);
    font-size: var(--wp--custom--typography--sm);
    border-bottom: 1px solid var(--wp--custom--color--primary-text);
    width: 100%;
}

.wp-pagely-hubspot-form input[type="submit"],
.comment-form input[type="submit"] {
    border: none;
    border-radius: 35px;
    background: var(--wp--preset--color--green-800);
    width: auto;
    padding: 12px 60px;
    color: var(--wp--preset--color--black-100);
    margin: 2em 0 1em;
    font-size: var(--wp--custom--typography--pagination);
}

.wp-pagely-hubspot-form .actions {
    text-align: right;
}

ul.hs-error-msgs {
    padding-left: 0;
    color: var(--wp--preset--color--pink-500);
    font-size: var(--wp--custom--typography--xs);
    list-style:none;
}


/*--------------------------------------------------------------
# Header Search Form
--------------------------------------------------------------*/
.wp-block-search {
    margin-bottom: 4em;
    position: relative;
}

.wp-block-search .wp-block-search__input {
    font-family: var(--wp--custom--font-primary);
    font-size: var(--wp--custom--typography--lg);
    color: var(--wp--custom--color--primary-text);
    background: transparent;
    border: none;
    border-bottom: 1.25px solid white;
    padding: 13px 13px 13px 0;
}

.wp-block-search .wp-block-search__input:focus-visible {
    outline-color: var(--wp--custom--color--primary-background);
    outline-width: 0;
}

.search-triggered header.wp-block-template-part {
    background: var(--wp--custom--color--primary-background);
    position: sticky;
    top: 0;
    z-index: 99;
}

.single-post.search-triggered:not(.is-single-post-scrolled) header.wp-block-template-part {
    background: var(--wp--preset--color--green-300);
}

.light-mode.single-post.search-triggered:not(.is-single-post-scrolled) header.wp-block-template-part {
    background: var(--wp--preset--color--black-300);
}

.admin-bar.search-triggered header.wp-block-template-part {
    top: 32px;
}

header.wp-block-template-part > .wp-block-template-part {
    max-width: 1440px;
}

.header-search {
    visibility: hidden;
    overflow: auto;
    height: 1px;
    opacity: 0;
    transition: 250ms opacity, height ease-in-out;
}

.search-triggered .header-search {
    visibility: visible;
    height: auto;
    opacity: 1;
}

.search-triggered a.search img {
    visibility: hidden;
}

a.search svg.close {
    display: none;
}

.search-triggered a.search {
    transition: all 200ms ease-in-out
}

.search-triggered a.search svg.close {
    display: inline;
    width: 23px;
    color: var(--wp--custom--color--primary-text);
}

.single-post.search-triggered:not(.is-single-post-scrolled) a.search svg.close {
    color: var(--wp--custom--color--primary-background)
}

.single-post.search-triggered a.search svg.close {
    color: var(--wp--preset--color--green-500);
}

.search-triggered a.search svg:not(.close) {
    display: none;
}

.search-triggered header::after {
    height: 257px;
    width: 100%;
    position: absolute;
    content: '';
    background: linear-gradient(180deg, var(--wp--custom--color--primary-background) 0%, var(--wp--custom--color--primary-background-transparent) 100%);
}

.search-triggered .wp-block-search .wp-block-search__button {
    margin-left: 7em;
    font-size: 16px;
    border-radius: 35px;
    border: none;
    padding: 0 2em;
    cursor: pointer;
    height: 40px;
    align-self: end;
    color: var(--wp--preset--color--black-100);
    background-color: var(--wp--preset--color--green-800);
}

/*--------------------------------------------------------------
# Post List
--------------------------------------------------------------*/
.home-post-grid .wp-block-post {
    border-radius: 10px;
    background: var(--wp--custom--color--secondary-background) ! important;
    padding: 32px 0;
    display: flex;
    flex-flow: column nowrap;
}

.wp-block-post .wp-block-group {
    overflow: auto;
}

.home-post-grid .wp-block-post > * {
    margin-right: 42px;
    margin-left: 42px;
    max-width: calc(100% - 42px);
}

.wp-block-post-author {
    float: left;
    color: var(--wp--preset--color--green-100);
}

.wp-block-post-author__content {
    align-self: center;
}

.home-post-grid .wp-block-post-author__name {
    display: none;
}

.wp-block-post-author__name {
    font-weight: var(--wp--custom--font-weight--normal);
}

.wp-block-post-author__name a {
    color: var(--wp--preset--color--pink-500);
}

.wp-block-post-author__avatar {
    position: relative
}

.wp-block-post-author__avatar img {
    max-width: 48px;
    filter: grayscale(1);
    max-width: 48px;
    height: auto;
    filter: grayscale(1);
    border-radius: 48px;
    border: 8px solid var(--wp--custom--color--secondary-background)
}

.home-post-grid .wp-block-post-author__avatar img {
    border: 8px solid var(--wp--custom--color--primary-background)
}

.wp-block-post-author__avatar:before {
    content: '';
    position: absolute;
    z-index: 99;
    background: rgb(202 211 211 / 50%);
    height: 48px;
    width: 48px;
    border-radius: 48px;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
    top: 8px;
    left: 8px;
}

.wp-block-post-author__byline {
    font-size: var(--wp--custom--typography--sm);
}

.wp-block-post hr {
    margin: 12px 0 25px 42px;
    max-width: calc(100% - 84px);
    box-shadow: 0.25px .25px .25px var(--wp--custom--color--primary-text);
}

.wp-block-post h2 {
    line-height: var(--wp--custom--line-height--heading);
    margin-bottom: 42px;
    font-size: var(--wp--preset--font-size--normal);
}

.wp-block-post-excerpt__more-link,
.wp-block-post-permalink {
    max-width: 295px;
}

.wp-block-post-terms a {
    border-radius: 35px;
    padding: 8px 12px;
    background: var(--wp--custom--color--secondary-background);
    color: var(--wp--custom--color--primary-text);
    font-size: var(--wp--custom--typography--xs);
}

.home-post-grid .wp-block-post-terms a {
    background: var(--wp--custom--color--primary-background);
    font-size: var(--wp--custom--typography--alanis);
    white-space: nowrap;
}

.wp-block-post .wp-block-post-date {
    margin-top: 6px;
}

.wp-block-post .wp-block-post-date time {
    vertical-align: text-top;
}

.wp-block-post .is-style-cta-link {
    max-width: calc(100% - 42px);
    margin-top: auto;
    margin-bottom: 0;
}

.wp-block-query-pagination {
    width: fit-content;
    margin-bottom: var(--wp--custom--spacing--vertical--small) !important;
}

.wp-block-query-pagination>.wp-block-query-pagination-next,
.wp-block-query-pagination>.wp-block-query-pagination-numbers,
.wp-block-query-pagination>.wp-block-query-pagination-previous {
    margin-bottom: 0;
    color: var(--wp--custom--color--primary-text);
}

.wp-block-query-pagination-numbers .page-numbers {
    padding: 0 12px;
}

.wp-block-query-pagination-numbers .page-numbers.current {
    color: var(--wp--preset--color--pink-500);
    text-decoration: underline;
}

.blog .is-vertically-aligned-center,
.blog .is-vertically-aligned-center * {
    margin-top: 0;
}

/*--------------------------------------------------------------
# Blog Archive
--------------------------------------------------------------*/
h2.has-huge-font-size {
    line-height: var(--wp--custom--line-height--page-title-xxl);
}

.category-security .wp-block-search,
.blog .wp-block-search {
    margin-bottom: 0
}

.category-security a.wp-block-button__link,
.blog a.wp-block-button__link {
    font-size: var(--wp--custom--typography--pagination);
    color: var(--wp--custom--color--primary-text);
    background: var(--wp--custom--color--secondary-background);
    line-height: 36px;
    padding: .5em 1.5em;
    border-radius: 50px;
    transition: color, background-color 300ms ease-in-out;
}

.category-security .wp-block-post-author__name,
.blog .wp-block-post-author__name {
    color: var(--wp--custom--color--primary-text);
}

.category-security a.wp-block-button__link:hover,
.blog a.wp-block-button__link:hover {
    color: var(--wp--custom--color--primary-background);
    background: var(--wp--custom--color--primary-text);
}

.category-security .wp-block-buttons>.wp-block-button,
.blog .wp-block-buttons>.wp-block-button {
    margin-bottom: 0;
}

.category-security .query-bar,
.blog .query-bar {
    background: var(--wp--custom--color--secondary-background);
    border-radius: 50px;
    padding: 10px 0;
    margin: 4em auto;
    position: relative;
    z-index: 99;
    max-width: calc(1440px - var(--wp--custom--spacing--horizontal--normal ) );
}

.category-security .query-bar .wp-block-buttons,
.blog .query-bar .wp-block-buttons {
    margin-left: var(--wp--style--block-gap);
}

.category-security .query-bar .wp-block-search .wp-block-search__button,
.blog .query-bar .wp-block-search .wp-block-search__button {
    background: transparent;
    border: none;
}

.category-security .query-bar .wp-block-search .wp-block-search__button svg,
.blog .query-bar .wp-block-search .wp-block-search__button svg {
    color: var(--wp--preset--color--green-800);
    cursor: pointer;
}

.category-security .query-bar .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper,
.blog .query-bar .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
    position: relative;
    border: none;
    margin-right: .5em;
}

.category-security .query-bar .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input,
.blog .query-bar .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
    border: none;
    padding: 1.2em 4.5em 1.2em 1.5em;
    border-radius: 40px;
    background-color: var(--wp--custom--color--primary-background);
    font-size: var(--wp--custom--typography--pagination);
}

.category-security.light-mode .query-bar .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input,
.blog.light-mode .query-bar .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
    background-color: var(--wp--preset--color--white-300);
    color: #959598;
}

.category-security .query-bar .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button,
.blog .query-bar .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
    padding: .125em .5em;
    position: absolute;
    right: .25em;
    zoom: 1.5;
    z-index: 999;
    bottom: .33em;
    top: 45%;
    transform: translateY(-50%);
}

.category-security .wp-block-pagely-layout-grid.featured-blog-posts,
.blog .wp-block-pagely-layout-grid.featured-blog-posts {
    grid-gap: 1.25em;
    padding-right: 0;
}

.category-security .wp-site-blocks > .wp-block-pagely-layout-grid,
.category-security .home-post-grid .columns-3,
.blog .wp-site-blocks > .wp-block-pagely-layout-grid,
.blog .home-post-grid .columns-3 {
    padding: 0 var(--wp--custom--spacing--horizontal--small);
}

.featured-blog-posts {
    margin-top: calc(var( --wp--style--block-gap ) * 4);
}

.featured-blog-posts .wp-block-post-template {
    margin: 0 ! important;
    max-width: initial;
}

.featured-blog-posts .wp-block-post-template.is-flex-container.is-flex-container.columns-2>li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
}

.featured-blog-posts .wp-block-pagely-layout-grid-column:first-of-type .wp-block-post-template.is-flex-container.is-flex-container.columns-2>li {
    padding-bottom: 0;
}

.featured-blog-posts .wp-block-pagely-layout-grid-column:first-of-type h2 {
    font-size: var(--wp--custom--typography--husky);
    line-height: 54px;
}

.featured-blog-posts .wp-block-pagely-layout-grid-column:first-of-type .wp-block-pagely-post-permalink {
    margin: 0;
    width: 50%;
}

.featured-blog-posts .wp-block-pagely-layout-grid-column:first-of-type .wp-block-group {
    display: flex;
    width: calc(100% - 42px);
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
}

.featured-blog-posts .wp-block-pagely-layout-grid-column:first-of-type .wp-block-group:last-of-type {
    margin-bottom: 12px
}

.featured-blog-posts .wp-block-pagely-layout-grid-column:first-of-type .wp-block-group:last-of-type a {
    max-width: calc(100% - 42px)
}

.featured-blog-posts .wp-block-pagely-layout-grid-column:first-of-type .wp-block-post-author {
    width: calc(50% - 42px);
}

.sticky-post-container .wp-block-pagely-post-permalink {
    margin-top: 4em;
}

.category-security .wp-block-post .is-style-cta-link,
.blog .wp-block-post .is-style-cta-link {
    max-width: calc(100% - 42px);
}

.featured-blog-posts .wp-block-post-permalink a,
.bottom-three .wp-block-post-permalink a {
    max-width: 394px;
}


.category-security .wp-block-query,
.category-security .wp-block-query .wp-block-post-template,
.blog .wp-block-query,
.blog .wp-block-query .wp-block-post-template {
    height: 100%;
    max-width: none;
}

.category-security .is-style-hero-waves h2,
.blog .is-style-hero-waves h2 {
    margin-block-start: revert;
}

.category-security #wp--skip-link--target {
    margin-top: var( --wp--style--block-gap );
}

.wp-block-query .wp-block-post-title a {
    color: var(--wp--custom--color--primary-text);
}

.search-results .wp-block-query .wp-block-post-title a {
    font-size: 45px;
}

.search-results hr.wp-block-separator {
    box-shadow: none;
    border-top: 2px solid var(--wp--custom--color--secondary-background);
}

.search-results .search-term-prefix {
    font-size: var(--wp--custom--typography--lg);
}

/*--------------------------------------------------------------
# Single Post
--------------------------------------------------------------*/
.wp-block-post-date__label {
    margin: 0
}

.single-post .wp-block-navigation .wp-block-navigation-link a,
.single-post h1.wp-block-post-title {
    color: var(--wp--custom--color--secondary-background);
}

h1.wp-block-post-title {
    line-height: var(--wp--custom--line-height--page-title);
}

.page h1.wp-block-post-title {
    padding: 0 var(--wp--custom--spacing--horizontal--normal);
}

.single-post .wp-block-post-content p,
.single-post .wp-block-post-content li {
    font-size: var(--wp--custom--typography--normal);
    line-height: var(--wp--custom--line-height--normal);
    color: var(--wp--custom--color--primary-text)
}

.single-post .wp-block-post-content p,
.single-post .wp-block-post-content h2,
.single-post .wp-block-post-content h3,
.single-post .wp-block-post-content h4,
.single-post .wp-block-post-content .wp-block-image {
    padding: 0 var( --wp--style--block-gap );
}

.single-post .wp-block-post-title {
    padding-bottom: calc( 4 * var(--wp--custom--spacing--unit) );
}

.single .wp-block-post-content a,
.single-post .wp-block-post-content a,
.page .wp-block-pagely-layout-grid a {
	text-decoration-color: var(--wp--custom--color--primary-link);
}

.single .wp-block-post-content a,
.single-post .wp-block-post-content a {
	text-decoration-color: var(--wp--custom--color--primary-link);
	text-decoration-line: underline;
}

.wp-block-pagely-layout-grid .is-style-cta-link a,
.page .wp-block-pagely-layout-grid .wp-block-post a {
	text-decoration-color: transparent;
}

.single-post .wp-block-post-content .gallery-pattern .wp-block-image {
    padding: 0;
    margin: 0;
}

.single-post .wp-block-post-content .gallery-pattern .wp-block-image + p {
    padding: calc( 4 * var( --wp--style--block-gap ) );
}

.single-post .wp-block-post-content .wp-block-image img {
    width: auto;
    height: auto;
    border-radius: 10px;
    transition: all 250ms ease-in-out;
}

.single-post .wp-block-post-content .wp-block-image.is-style-overlay {
    position: relative;
}

.single-post .wp-block-post-content .wp-block-image.is-style-overlay img {
    filter: grayscale(1);
}

.single-post .wp-block-post-content .wp-block-image.is-style-overlay::before {
    position: absolute;
    z-index: 99;
    background: var(--wp--custom--color--primary-text);
    height: 100%;
    width: 100%;
    border-radius: 10px;
    mix-blend-mode: multiply;
}

.single-post .wp-block-post-content .wp-block-image img:hover,
.single-post .wp-block-post-content .wp-block-image.is-style-glow img {
    filter: drop-shadow(0px 0px 120px rgba(255, 255, 255, 0.153814))
}

.single-post,
.single-post header {
    background-color: var(--wp--custom--color--primary-text);
    transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.single-post header.wp-block-template-part::after {
   background: linear-gradient(180deg, var(--wp--custom--color--primary-text) 0%,  #CAD3D300 100%)
}

.single-post.is-single-post-scrolled header.wp-block-template-part::after {
    background: linear-gradient(180deg, var(--wp--custom--color--primary-background) 0%, #0E0D0F00 100%);
}

.light-mode.single-post header.wp-block-template-part::after {
   background: linear-gradient(180deg, var(--wp--custom--color--primary-text) 0%, #0E0D0F00 100%)
}

.light-mode.single-post.is-single-post-scrolled header.wp-block-template-part::after {
    background: linear-gradient(180deg, var(--wp--custom--color--primary-background) 0%, #CAD3D300 100%);
}

.single-post .secondary-nav .wp-block-image:first-of-type a {
    color: var(--wp--custom--color--primary-background);
}

.single-post.is-single-post-scrolled .secondary-nav .wp-block-image {
    background-color: var(--wp--custom--color--secondary-background);
}

.single-post.is-single-post-scrolled .secondary-nav .wp-block-image:first-of-type a svg {
    color: var(--wp--custom--color--primary-text);
}

.single-post .secondary-nav .wp-block-image,
.single-post.is-single-post-scrolled.light-mode .secondary-nav .wp-block-image {
    background-color: var(--wp--preset--color--white-100);
}

.light-mode.single-post .secondary-nav .wp-block-image {
    background-color: var(--wp--preset--color--black-100);
}

.single-post.is-single-post-scrolled,
.single-post.is-single-post-scrolled header,
.single-post .wp-block-site-logo a {
    background-color: var(--wp--custom--color--primary-background);
}

.single-post.is-single-post-scrolled .wp-block-navigation .wp-block-navigation-link a {
    color: var(--wp--custom--color--primary-text);
}

 .single-post.is-single-post-scrolled .wp-block-site-logo a {
    background-color: var(--wp--custom--color--primary-text);
 }

.single-post__header {
    height: calc(100vh - var( --wp--style--block-gap ) - 156px); /* Assumption: Header should be full viewport (minus header and gap) */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 0 10vh 0;
}

.single-post__header > * {
    width: 100%;
}

.single-post .wp-block-post-author__avatar,
.single-post .wp-block-post-title,
.single-post__header .wp-block-pagely-layout-grid:last-of-type::after {
    transition: all 500ms ease-in-out;
 }

 .single-post.is-single-post-scrolled .single-post__header .wp-block-post-author__avatar,
 .single-post.is-single-post-scrolled .wp-block-post-title,
 .single-post.is-single-post-scrolled .single-post__header .wp-block-pagely-layout-grid:last-of-type::after {
    transform: translateY(-100%);
 }

.single-post .wp-block-post-author__avatar img {
    border-color: var(--wp--preset--color--green-100);
}

.light-mode .single-post__header .wp-block-post-author__avatar img {
    border-color: var(--wp--preset--color--black-100);
}

.post-template-default .wp-block-post-author,
.post-template-single .wp-block-post-author {
	color: var(--wp--preset--color--pink-500);
    font-size: var(--wp--custom--typography--sm);
	font-weight: var(--wp--custom--font-weight--normal);
}

.post-template-default .wp-block-post-author__byline,
.post-template-single .wp-block-post-author__byline {
    font-size: var(--wp--custom--typography--sm);
}

.post-template-default .single-post-updated,
.post-template-single .single-post-updated {
    margin: 0;
    color: var(--wp--preset--color--pink-500);
    font-size: var(--wp--custom--typography--sm);
    justify-self: end;
}

.post-template-single .wp-block-post-content h2,
.post-template-default .wp-block-post-content h2 {
    color: var(--wp--preset--color--pink-500);
    font-size: var(--wp--custom--typography--h2);
}

.post-template-single .wp-block-post-content h3,
.post-template-default .wp-block-post-content h3 {
    font-size: var(--wp--custom--typography--h3);
    color: var(--wp--custom--color--primary-text);
}

.single-post__header .wp-block-pagely-layout-grid:last-of-type {
    position: relative;
    padding-left: 0;
}

.single-post__header .wp-block-pagely-layout-grid:last-of-type::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    height: 38px;
    width: 15px;
    background-color: var(--wp--preset--color--white-100);
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='38' viewBox='0 0 15 38' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.24286 29.4858L7.62186 35.9848L13.9849 29.4858' stroke='%23CAD3D3' stroke-width='2'/%3E%3Cpath d='M7.62231 34.9272L8.00011 1' stroke='%23CAD3D3' stroke-width='2'/%3E%3C/svg%3E%0A");
    border-radius: 16px;
    padding: 15px 8px;
    background-repeat: no-repeat;
    background-position: center center;
    right: -6.25vw;
}

.light-mode .single-post__header .wp-block-pagely-layout-grid:last-of-type::after {
    background-color: var(--wp--preset--color--black-100);
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='38' viewBox='0 0 15 38' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.24286 29.4858L7.62186 35.9848L13.9849 29.4858' stroke='%230E0D0F' stroke-width='2'/%3E%3Cpath d='M7.62231 34.9272L8.00011 1' stroke='%230E0D0F' stroke-width='2'/%3E%3C/svg%3E%0A");
}

.single-post.is-single-post-scrolled .single-post__header .wp-block-pagely-layout-grid:last-of-type::after {
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg width='31' height='31' viewBox='0 0 31 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='31' height='31' rx='15.5' fill='%23F4F5F7'/%3E%3Cpath d='M9.24286 15.4858L15.6219 21.9848L21.9849 15.4858' stroke='%23CAD3D3' stroke-width='2'/%3E%3Cpath d='M15.5 21.668L15.8778 8.09712' stroke='%23CAD3D3' stroke-width='2'/%3E%3C/svg%3E%0A");    border-radius: 16px;
    padding: 8px;
}

.wp-block-post-content + .wp-block-pagely-layout-grid {
    margin: 10rem 0;
}

/*--------------------------------------------------------------
# Single Post | Team Card
--------------------------------------------------------------*/

.single-post__team-card .wp-block-pagely-layout-grid-column:first-of-type .wp-block-post-author__content {
    display: none;
}

.single-post__team-card .wp-block-pagely-layout-grid-column:first-of-type .wp-block-post-author__avatar img {
    max-width: 145px;
    border-radius: 145px;
}

.single-post__team-card .wp-block-pagely-layout-grid-column:first-of-type .wp-block-post-author__avatar::before {
    height: 145px;
    width: 145px;
    border-radius: 145px;
}

.single-post__team-card .wp-block-pagely-layout-grid-column:nth-of-type(2) .wp-block-post-author__name {
    font-size: var(--wp--custom--typography--small-ads);
}

.single-post__team-card .wp-block-pagely-layout-grid-column:last-of-type .wp-block-post-author__byline {
    font-size: var(--wp--custom--typography--lg);
    color: var(--wp--preset--color--pink-500)
}

.single-post__team-card .wp-block-pagely-layout-grid-column:last-of-type .wp-block-post-author__name {
    display: none;
}

.single-post__team-card .wp-block-pagely-layout-grid-column:last-of-type .wp-block-post-author__bio {
   font-size: var(--wp--preset--font-size--normal);
   color: var(--wp--custom--color--primary-text)
}

/*--------------------------------------------------------------
# Single Post | Comment Form
--------------------------------------------------------------*/
.single-post__comments-form h3 {
    margin: 0;
}
.single-post__comments-form {
    margin-top: 10rem;
}
.wp-block-post-comments-count {
    font-size: 20px;
    color: var(--wp--custom--color--primary-background);
    background: var(--wp--custom--color--primary-text);
    border-radius: 60px;
    height: 54px;
    width: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comment-form label {
    display: block;
    font-size: var(--wp--custom--typography--sm);
    color: var(--wp--custom--color--primary-text);
    pointer-events: none;
}

.comment-form label span.required {
    color: var(--wp--preset--color--pink-500);
}

.wp-block-post-comments .commentlist .comment p.comment-awaiting-moderation {
    color: var(--wp--preset--color--pink-500);
    font-size: var(--wp--preset--font-size--small);
}

#commentform.comment-form input:not([type="submit"]),
#commentform.comment-form textarea {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: -0.18px;
    max-height: 8em;
    border-top: none;
    border-right: none;
    border-left: none;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid var(--wp--custom--color--primary-text);
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
    color: #cad3d345;
}

.wp-block-post-comments {
    color: var(--wp--custom--color--primary-text);
    clear: both;
    padding-top: 200px;
}

.comment-form-cookies-consent,
.hs-form-booleancheckbox {
    width: 45%;
    position: relative;
    float: left;
    margin: 0;
}

.hs-form-booleancheckbox {
    padding-bottom: 15px;
}

#comment-form-url {
    margin-bottom: 2em
}

.legal-consent-container ul.inputs-list {
    list-style: none;
    padding-left: 0;
}

.wp-pagely-hubspot-form .grecaptcha-badge {
    box-shadow: none!important;
    width: 100%!important;
}

.comment-form-cookies-consent label,
.hs-form-booleancheckbox label,
.hs-form-booleancheckbox span p {
    color: var(--wp--custom--color--primary-text);
    font-size: 16px;
    line-height: 20px;
}

.light-mode .hs-form-booleancheckbox label,
.light-mode .hs-form-booleancheckbox span p {
    color: #0E0D0F;
}

.comment-form-cookies-consent input,
.hs-form-booleancheckbox input {
    width: auto;
    float: left;
    height: 2em;
    margin-right: 1em;
}

.comment-form-cookies-consent input:not(:checked),
.comment-form-cookies-consent input:checked,
.hs-form-booleancheckbox input:not(:checked),
.hs-form-booleancheckbox input:checked {
    position: absolute;
    left: 0;
    opacity: 0.01;
}

.comment-form-cookies-consent input:not(:checked) + label,
.comment-form-cookies-consent input:checked + label,
.hs-form-booleancheckbox input:not(:checked) + span,
.hs-form-booleancheckbox input:checked + span {
    padding-left: 2em;
    pointer-events: all;
    top: 0;
    color: #cad3d345;
}

.hs-form-booleancheckbox input:not(:checked) + span,
.hs-form-booleancheckbox input:checked + span {
    margin-left: 0;
    padding-left: 35px!important;
}

.light-mode .comment-form-cookies-consent input:not(:checked) + label,
.light-mode .comment-form-cookies-consent input:checked + label,
.light-mode .hs-form-booleancheckbox input:not(:checked) + span,
.light-mode .hs-form-booleancheckbox input:checked + span {
    color: #0E0D0F45;
}

.comment-form-cookies-consent input:not(:checked) + label:before,
.comment-form-cookies-consent input:checked + label:before,
.hs-form-booleancheckbox input:not(:checked) + span:before,
.hs-form-booleancheckbox input:checked + span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 16px;
    height: 16px;
    border: 2px solid var(--wp--preset--color--green-800);
    background: transparent;
    border-radius: 16px;
    box-shadow: inset 0 1px 3px rgba(0,0,0, .1), 0 0 0 rgba(203, 34, 237, .2);
    transition: all .275s;
}

.comment-form-cookies-consent input:not(:checked) + label:after,
.comment-form-cookies-consent input:checked + label:after,
.hs-form-booleancheckbox input:not(:checked) + span:after,
.hs-form-booleancheckbox input:checked + span:after {
    content: '\2022';
    position: absolute;
    top: 16px;
    left: 4px;
    font-size: 48px;
    color: var(--wp--preset--color--green-800);
    line-height: 0;
    transition: all .2s;
}

.comment-form-cookies-consent input:not(:checked) + label:after,
.hs-form-booleancheckbox input:not(:checked) + span:after {
    opacity: 0;
}

.comment-form-cookies-consent input:checked + label:after,
.hs-form-booleancheckbox input:checked + span:after {
    opacity: 1;
}

.comment-form-cookies-consent input:checked:focus + label:before,
.comment-form-cookies-consent input:not(:checked):focus + label:before,
.hs-form-booleancheckbox input:checked:focus + span:before,
.hs-form-booleancheckbox input:not(:checked):focus + span:before {
    box-shadow: inset 0 1px 3px rgba(0,0,0, .1), 0 0 0 4px rgba(0, 206, 142, .2);
}

.comment-form .form-submit {
    text-align: right;
    float: right;
    margin: 0 0 1em;
}

.comment-form .form-submit input {
    margin: 0;
}

@media all and (max-device-width: 1200px) {
    .hs-form-booleancheckbox {
        width: 100%;
        float: initial;
    }
}

@media all and (max-device-width: 980px) {

    .pagely-contact-form .pagely-form-left {
        flex-basis: 100%!important;
    }

    .pagely-contact-form .wp-block-columns {
        flex-wrap: wrap!important;
    }

    .pagely-contact-form .wp-pagely-hubspot-form {
        padding: 0;
    }

    .hs-form-booleancheckbox input:not(:checked) + span::before {
        top: 0px;
    }

    .hs-form-booleancheckbox input:checked + span::after {
        top: 7.2px;
        left: 3.5px;
    }
}


/*--------------------------------------------------------------
# Single Post | Comment List
--------------------------------------------------------------*/
.wp-block-post-comments .says {
    display: none;
}

.wp-block-post-comments .comment-author img {
    filter: grayscale(1);
}

.wp-block-post-comments .comment-author .avatar {
    height: 35px;
    width: 35px;
    border: 4px solid var(--wp--custom--color--secondary-background);
}

.wp-block-post-comments .comment-author,
.wp-block-post-comments .comment-author a {
    color: var(--wp--preset--color--pink-500);
    font-size: var(--wp--custom--typography--lg);
}

.wp-block-post-comments .comment-body {
    margin-bottom: 3em;
}

.wp-block-post-comments .comment-body p {
    clear: both;
}

.wp-block-post-comments .commentlist .comment p {
    margin: 1.5em 0;
    font-size: var(--wp--custom--typography--normal);
}

.wp-block-post-comments .comment-reply-link {
    background: var(--wp--custom--color--secondary-background);
    color: var(--wp--custom--color--primary-text);
    padding: 11px 36px;
    border-radius: 35px;
}

.wp-block-post-comments .comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wp-block-post-comments .comment-meta .comment-author {
    display: flex;
    align-items: center;
}

.wp-block-post-comments .comment-meta .comment-author img {
    margin: 1em;
}

.wp-block-post-comments .comment-metadata a {
    color: #cad3d345;
    font-size: var(--wp--custom--typography--sm);
}

.wp-block-post-comments .commentlist .children,
.wp-block-post-comments .commentlist .comment {
    clear: both
}

.commentlist > li {
    border-bottom: 1px solid var(--wp--custom--color--primary-text);
    margin-bottom: 3em;
}

a#cancel-comment-reply-link {
    background-color: #cad3d345;
    padding: 8px 16px;
    border-radius: 35px;
    font-size: var(--wp--preset--font-size--tiny);
}

/*--------------------------------------------------------------
# Author Archive
--------------------------------------------------------------*/
.author .wp-block-post-author__name {
    font-size: var(--wp--preset--font-size--gigantic);
    line-height: var(--wp--custom--line-height--page-title-xxxl);
}

.author .is-style-hero-waves .wp-block-pagely-layout-grid-column:first-of-type .wp-block-post-author__name {
    display: none;
}

.author .is-style-hero-waves .wp-block-post-author__avatar img {
    max-width: 188px;
    border-radius: 100%;
}

.author .is-style-hero-waves .wp-block-post-author__avatar:before {
    height: 188px;
    width: 188px;
    border-radius: 100%;
}

.author .is-style-hero-waves .wp-block-post-author__content h3 {
    padding: 10rem 0 0 10rem
}

.author .is-style-hero-waves .wp-block-post-author__bio {
    column-count: 2;
    padding-left: 10rem;
    column-gap: 94px;
}

.author .is-style-hero-waves .wp-block-social-links:not(.is-style-logos-only) .wp-social-link {
    display: inline-block;
    margin-right: 27px;
    color: var(--wp--custom--color--primary-text);
}

.author .is-style-hero-waves .wp-block-social-links .wp-social-link a {
    width: 23px;
    height: 23px;
    padding: 6px;
    background: var(--wp--preset--color--black-100);
    border-radius: 100%;
}

.single-pagely_legal .wp-block-navigation.is-vertical {
	top: 270px;
	position: sticky;
}

.single-pagely_legal h1.wp-block-post-title {
	max-width: 817px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
}

.single-pagely_legal .pagely-legal-nav ul.wp-block-navigation__container {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0;
}

.is-style-hero-waves .wp-block-post-terms a {
    transition: all 150ms ease-in-out;
}

.light-mode .is-style-hero-waves .wp-block-post-terms a:hover {
    background-color: #f4f5f7bf;
}
.is-style-hero-waves .wp-block-post-terms a:hover {
    background-color: #1d1c22b8
}

.featured-blog-posts .wp-block-pagely-layout-grid-column:first-of-type .wp-block-group .wp-block-post-date {
    margin-right: 42px;
}

/*--------------------------------------------------------------
# Team Archive Page
--------------------------------------------------------------*/
.wp-block-pagely-team {
    max-width: calc(1440px - (2 * var(--wp--custom--spacing--horizontal--normal) ) ) !important;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(530px, 2fr));
    grid-gap: 20px;
}

.wp-block-pagely-team__member {
    border-radius: 10px;
    padding: 72px 84px;
    background: var(--wp--custom--color--secondary-background);
    display: flex;
}

.wp-block-pagely-team__member img {
    max-width: 111px;
    max-height: 111px;
    border-radius: 100%;
    filter: grayscale(1);
    border: 8px solid var(--wp--custom--color--primary-background);
}

.wp-block-pagely-team__member img:before {
    content: '';
    position: absolute;
    z-index: 99;
    background: rgb(202 211 211 / 50%);
    height: 111px;
    width: 111px;
    border-radius: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
    top: 8px;
    left: 8px;
}

.wp-block-pagely-team__member h2 {
    font-size: var(--wp--custom--typography--husky);
    color: var(--wp--custom--color--primary-text);
    line-height: 1.2;
    font-weight: normal;
    margin: 0;
}

.wp-block-pagely-team__member h3 {
    margin-top: .5em;
}

.wp-block-pagely-team-member__bio {
    margin-left: 56px;
}

.wp-block-pagely-team .wp-block-social-links {
    display: flex;
}

.wp-block-pagely-team .wp-block-social-links .wp-social-link {
    margin-right: 26px;
}

.pagely_careers-template .wp-block-post-content,
.error404 main,
.search-results main,
.archive main {
    margin: 0 var(--wp--custom--spacing--horizontal--normal);
}

.category-security main {
    margin: 0;
}

/*--------------------------------------------------------------
# Modal for Images on Single Blog
--------------------------------------------------------------*/

.pagely-modal {
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
}

body.modal-enabled {
	overflow: hidden;
}

.pagely-modal {
	opacity: 0;
	position: fixed;
	z-index: -1;
	padding-top: 150px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
	transition: opacity 0.3s;
}

.pagely-modal-visible {
	opacity: 1;
	z-index: 9999; /* Sit on top */
}

div#pagely-modal-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	width: 100%;
	max-width: 1000px;
}

.pagely-modal .modal-content {
	margin: auto;
	display: block;
}

.pagely-modal #caption {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	text-align: center;
	color: var(--wp--custom--color--primary-text);
	font-size: 1rem;
	padding: 10px 0;
	height: 150px;
	transition: 200ms all ease-in-out;
}

.pagely-modal #pagel-modal-close {
	position: absolute;
	top: -35px;
	right: 35px;
	color: #f1f1f1;
	font-size: 20px;
	font-weight: bold;
	transition: 0.3s;
}

.pagely-modal .close:hover,
.pagely-modal .close:focus {
	color: var(--wp--custom--color--primary-background);
	text-decoration: none;
	cursor: pointer;
}
