/*
Theme Name: Twenty Twenty/gmg
Text Domain: twentytwenty
Version: 1.7.11.10
Requires at least: 4.7
Requires PHP: 5.2.4
Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-patterns, block-styles, wide-blocks, accessibility-ready
Author: the WordPress team
Author URI: https://wordpress.org/
Theme URI: https://wordpress.org/themes/twentytwenty/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

All files, unless otherwise stated, are released under the GNU General Public
License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned
with others.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	0. 	CSS Reset
	1. 	Document Setup
	2. 	Element Base
	3. 	Helper Classes
	4. 	Site Header
	5. 	Menu Modal
	6. 	Search Modal
	7. 	Page Templates
		a. 	Template: Cover Template
		c. 	Template: Full Width
	8.  Post: Archive
	9.  Post: Single
	10. Blocks
	11. Entry Content
	12. Comments
	13. Site Pagination
	14. Error 404
	15. Widgets
	16. Site Footer
	17. Media Queries

----------------------------------------------------------------------------- */

/* Fonts ------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,400;0,700;1,400&display=swap');

@font-face {
    font-family: 'Helvetica';
    src: url('/wp-content/themes/twentytwenty-gmg/fonts/Helvetica.ttc') format('ttc'),
    font-style: normal;
}

@font-face {
    font-family: 'Noto Serif';
    src: url('/wp-content/themes/twentytwenty-gmg/fonts/NotoSerif-Regular.ttf')format('truetype'),
    font-style: normal;
}
@font-face {
    font-family: 'Noto Serif';
    src: url('/wp-content/themes/twentytwenty-gmg/fonts/NotoSerif-SemiBold.ttf')format('truetype'),
    font-style: 600;
}
@font-face {
    font-family: 'Noto Serif';
    src: url('/wp-content/themes/twentytwenty-gmg/fonts/NotoSerif-Bold.ttf')format('truetype'),
    font-style: 700;
}

@font-face {
    font-family: 'FontAwesome';
    src: url('fonts/FontAwesome.eot');
    src: url('fonts/FontAwesome.eot?#iefix')format('embedded-opentype'),
    url('fonts/FontAwesome.woff')format('woff'),
    url('fonts/FontAwesome.ttf')format('truetype'),
    url('fonts/FontAwesome.svg#fontawesomeregular')format('svg');
    font-weight: normal;
    font-style: normal;
}

/* -------------------------------------------------------------------------- */

/*	0. CSS Reset
/* -------------------------------------------------------------------------- */
/* * {transition: ease all .3s;} */
html,body {border: none;margin: 0;padding: 0;}

h1,h2,h3,h4,h5,h6,p,blockquote,address,big,cite,code,em,font,img,small,strike,sub,sup,li,ol,ul,fieldset,form,label,legend,button,table,caption,tr,th,td {border: none;font-size: inherit;line-height: inherit;margin: 0;padding: 0;text-align: inherit;}

blockquote::before,blockquote::after {content: "";}

/* -------------------------------------------------------------------------- */
/*	1. Document Setup
/* -------------------------------------------------------------------------- */

html {font-size: 16px; /* 1rem = 10px */scroll-behavior: smooth;}
@media (prefers-reduced-motion: reduce) {
    html {scroll-behavior: auto;}
}

body {background: #fff;box-sizing: border-box;color: #1D252D;font: 16px/22px "Noto Serif";text-align: left;}

@supports ( font-variation-settings: normal ) {body {font-family: "Noto Serif";}}

*,*::before,*::after {box-sizing: inherit;-webkit-font-smoothing: antialiased;word-break: break-word;word-wrap: break-word;}

#site-content {overflow: hidden;}

/* Clearing ---------------------------------- */

.group::after,.entry-content::after {clear: both;content: "";display: block;}

/* Base Transitions -------------------------- */

a,path {transition: all 0.15s linear;}

/* Screen Reader Text ------------------------

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

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	-webkit-clip-path: none;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	right: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}
*/
/* Skip Link ---------------------------------

.skip-link {
	left: -9999rem;
	top: 2.5rem;
	z-index: 999999999;
	text-decoration: underline;
}

.skip-link:focus {
	display: block;
	left: 6px;
	top: 7px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	line-height: normal;
	padding: 15px 23px 14px;
	z-index: 100000;
	right: auto;
}
*/
/* Accessibility Settings -------------------- */

@media ( prefers-reduced-motion: reduce ) {
    * {
        animation-duration: 0s !important;
        transition-duration: 0s !important;
    }
}

/* -------------------------------------------------------------------------- */

/*	2. Element Base
/* ---------------------------------------------*---------------------------- */

main {
    display: block;
}

h1,h2,h3,h4,h5,h6,.faux-heading {font-feature-settings: "lnum";font-variant-numeric: lining-nums;font-weight: 700;line-height: 1.25;}

h1,.heading-size-1 {font-size: 3.6rem;font-weight: 800;line-height: 1.138888889;}

h2,.heading-size-2 {font-size: 3.2rem;}

h3,.heading-size-3 {font-size: 2.8rem;}

h4,.heading-size-4 {font-size: 2.4rem;}

h5,.heading-size-5 {font-size: 2.1rem;}

h6,.heading-size-6 {font-size: 1.6rem;text-transform: uppercase;}


em,i,q,dfn {font-style: italic;}

em em,
em i,
i em,
i i,
cite em,
cite i {font-weight: bolder;}

big {font-size: 1.2em;}

small {font-size: 0.75em;}

b,strong {font-weight: 700;}

ins {text-decoration: underline;}

sub,sup {font-size: 75%;line-height: 0;position: relative;vertical-align: baseline;}

sup {top: -0.5em;}

sub {bottom: -0.25em;}

abbr,
acronym {cursor: help;}

address {line-height: 1.5;margin: 0 0 2rem 0;}

hr {border-style: solid;border-width: 0.1rem 0 0 0;border-color: #dcd7ca;margin: 4rem 0;}

.entry-content hr,
hr.styled-separator {background: linear-gradient(to left, currentColor calc(50% - 16px), transparent calc(50% - 16px), transparent calc(50% + 16px), currentColor calc(50% + 16px));background-color: transparent !important;border: none;height: 0.1rem;overflow: visible;position: relative;}

.entry-content hr:not(.has-background),
hr.styled-separator {color: #6d6d6d;}

.entry-content hr::before,
.entry-content hr::after,
hr.styled-separator::before,
hr.styled-separator::after {
    background: currentColor;
    content: "";
    display: block;
    height: 1.6rem;
    position: absolute;
    top: calc(50% - 0.8rem);
    transform: rotate(22.5deg);
    width: 0.1rem;
}

.entry-content hr::before,
hr.styled-separator::before {
    left: calc(50% - 0.5rem);
}

.entry-content hr::after,
hr.styled-separator::after {
    right: calc(50% - 0.5rem);
}

a {text-decoration: underline;}

a:hover,
a:focus {text-decoration: none;}

/* Lists ------------------------------------- */


ul {list-style: disc;}

ul ul {list-style: circle;}

ul ul ul {list-style: square;}

ol {list-style: decimal;}

ol ol {list-style: lower-alpha;}

ol ol ol {list-style: lower-roman;}

li {line-height: 1.5;}

.reset-list-style,
.reset-list-style ul,
.reset-list-style ol {list-style: none;margin: 0;}

.reset-list-style li {margin: 0;}

dt,
dd {line-height: 1.5;}

dt {font-weight: 700;}

dt + dd {margin-top: 0.5rem;}

dd + dt {margin-top: 1.5rem;}

/* Quotes ------------------------------------ */

blockquote {
    border-style: solid;
    /*rtl:ignore*/
    border-width: 0 0 0 0.2rem;
    color: inherit;
    font-size: 1em;
    margin: 4rem 0;
    /*rtl:ignore*/
    padding: 0.5rem 0 0.5rem 2rem;
}

cite {
    color: #6d6d6d;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.25;
}

blockquote cite {
    display: block;
    margin: 2rem 0 0 0;
}

blockquote p:last-child {
    margin: 0;
}

/* Code -------------------------------------- */

code,
kbd,
pre,
samp {
    font-family: monospace;
    font-size: 0.9em;
    padding: 0.4rem 0.6rem;
}

code,
kbd,
samp {
    background: rgba(0, 0, 0, 0.075);
    border-radius: 0.2rem;
}

pre {
    border: 0.1rem solid #dcd7ca;
    line-height: 1.5;
    margin: 4rem 0;
    overflow: auto;
    padding: 3rem 2rem;
    text-align: left;
}

pre code {
    background: transparent;
    padding: 0;
}


/* Media ------------------------------------- */

figure {
    display: block;
    margin: 0;
}

iframe {
    display: block;
    max-width: 100%;
}

video {
    display: block;
}

svg,
img,
embed,
object {
    display: block;
    height: auto;
    max-width: 100%;
}

figcaption,
.wp-caption-text {
    color: #6d6d6d;
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 1.5rem;
}

figcaption a,
.wp-caption-text a {
    color: inherit;
}

blockquote.instagram-media,
iframe.instagram-media {
    margin: auto !important;
}

/* GALLERIES */

.gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 3em 0 3em -0.8em;
    width: calc(100% + 1.6em);
}

.gallery-item {
    margin: 0.8em 0;
    padding: 0 0.8em;
    width: 100%;
}

.gallery-caption {
    display: block;
    margin-top: 0.8em;
}

/* Inputs ------------------------------------ */

fieldset {
    border: 0.2rem solid #dcd7ca;
    padding: 2rem;
}

legend {
    font-size: 0.85em;
    font-weight: 700;
    padding: 0 1rem;
}

label {
    display: block;
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0;
}

label.inline,
input[type="checkbox"] + label {
    display: inline;
    font-weight: 400;
    margin-left: 0.5rem;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    top: 2px;
    display: inline-block;
    margin: 0;
    width: 1.5rem;
    min-width: 1.5rem;
    height: 1.5rem;
    background: #fff;
    border-radius: 0;
    border-style: solid;
    border-width: 0.1rem;
    border-color: #dcd7ca;
    box-shadow: none;
    cursor: pointer;
}

input[type="checkbox"]:checked::before {
    /* Use the "Yes" SVG Dashicon */
    content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23000000%27%2F%3E%3C%2Fsvg%3E");
    position: absolute;
    display: inline-block;
    margin: -0.1875rem 0 0 -0.25rem;
    height: 1.75rem;
    width: 1.75rem;
}

input,
textarea,
.faux-button,
.wp-block-button__link,
.wp-block-file__button {
    font-family: Helvetica;
    line-height: 1;
}

@supports ( font-variation-settings: normal ) {
    input,
    textarea,
    .faux-button,
    .faux-button.more-link,
    .wp-block-button__link,
    .wp-block-file__button {
        font-family: Helvetica;
    }
}

input,
textarea {
    border-color: #dcd7ca;
    color: #000;
}

code,
input[type="url"],
input[type="email"],
input[type="tel"] {
    direction: ltr;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="color"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    border-radius: 0;
    border-style: solid;
    border-width: 0.1rem;
    box-shadow: none;
    display: block;
    font-size: 1.6rem;
    margin: 0;
    max-width: 100%;
    padding: 1.5rem 1.8rem;
    width: 100%;
}

select {
    font-size: 1em;
}

textarea {
    height: 12rem;
    line-height: 1.5;
    width: 100%;
}

input::-webkit-input-placeholder {
    line-height: normal;
}

input:-ms-input-placeholder {
    line-height: normal;
}

input::-moz-placeholder {
    line-height: revert; /* Reset to the value from the user-agent stylesheet. */
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

button,
.button,
.faux-button,
.wp-block-button__link,
.wp-block-file .wp-block-file__button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
    opacity: 1;
    padding: 1.1em 1.44em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.15s linear;
}

button:focus,
button:hover,
.button:focus,
.button:hover,
.faux-button:focus,
.faux-button:hover,
.wp-block-button .wp-block-button__link:focus,
.wp-block-button .wp-block-button__link:hover,
.wp-block-file .wp-block-file__button:focus,
.wp-block-file .wp-block-file__button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover {
    text-decoration: underline;
}

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="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    border-color: currentColor;
}

input[type="search"]:focus {
    outline: thin dotted;
    outline-offset: -4px;
}

/* Tables ------------------------------------ */

table {
    border: 0.1rem solid #dcd7ca;
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    font-size: 1.6rem;
    margin: 4rem 0;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
}

.alignleft > table {
    margin: 0;
}

.alignright > table {
    margin: 0;
}

th,
td {
    border: 0.1rem solid #dcd7ca;
    line-height: 1.4;
    margin: 0;
    overflow: visible;
    padding: 10px;
}

caption {
    background: #dcd7ca;
    font-weight: 600;
    padding: 0.5em;
    text-align: center;
}

thead {
    vertical-align: bottom;
    white-space: nowrap;
}

th {
    font-weight: 700;
}


/* -------------------------------------------------------------------------- */

/*	3. Helper Classes
/* -------------------------------------------------------------------------- */


/* Layout ------------------------------------ */

.no-margin {
    margin: 0;
}

.no-padding {
    padding: 0;
}

.screen-height {
    min-height: 100vh;
}

.admin-bar .screen-height {
    min-height: calc(100vh - 32px);
}

@media (max-width: 782px) {

    .admin-bar .screen-height {
        min-height: calc(100vh - 46px);
    }
}

.screen-width {
    position: relative;
    left: calc(50% - 50vw);
    width: 100vw;
}

/* Sections ---------------------------------- */

section {
    padding: 5rem 0;
    width: 100%;
}
.section-inner {
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}


@media (min-width: 1024px) {
    .section-inner  {
        max-width: 1000px;
    }
}

@media (min-width: 1280px) {
    .section-inner {
        max-width: 1230px;
    }
}

.section-inner.max-percentage {
    width: 100%;
}

.section-inner.thin {
    max-width: 58rem;
}

.section-inner.small {
    max-width: 80rem;
}

.section-inner.medium {
    max-width: 100rem;
}

.section-inner.no-margin {
    margin: 0;
}

/* Toggles ----------------------------------- */

.toggle {
    -moz-appearance: none;
    -webkit-appearance: none;
    color: inherit;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    text-align: inherit;
    user-select: none;
}

button.toggle {
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    font-size: inherit;
    font-weight: 400;
    padding: 0;
    text-transform: none;
}

/* Hiding and Showing ------------------------ */

.js .show-js {
    display: block !important;
}

.js .hide-js {
    display: none !important;
}

.no-js .show-no-js {
    display: block !important;
}

.no-js .hide-no-js {
    display: none !important;
}


/* Typography -------------------------------- */

.font-size-xl {
    font-size: 1.25em;
}

.font-size-xs {
    font-size: 0.8em;
}

.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Colors ------------------------------------ */

/* COLOR */

.color-accent,
.color-accent-hover:focus,
.color-accent-hover:hover {
}

/* BACKGROUND COLOR */

.bg-accent,
.bg-accent-hover:focus,
.bg-accent-hover:hover {
}

/* BORDER COLOR */

.border-color-accent,
.border-color-accent-hover:focus,
.border-color-accent-hover:hover {

}

/* FILL COLOR */

.fill-children-accent,
.fill-children-accent * {
    /* 	fill: #cd2653; */
}

.fill-children-current-color,
.fill-children-current-color * {
    fill: currentColor;
}

/* Opacity ----------------------------------- */

.opacity-0 {
    opacity: 0;
}

.opacity-5 {
    opacity: 0.05;
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-15 {
    opacity: 0.15;
}

.opacity-20 {
    opacity: 0.2;
}

.opacity-25 {
    opacity: 0.25;
}

.opacity-30 {
    opacity: 0.3;
}

.opacity-35 {
    opacity: 0.35;
}

.opacity-40 {
    opacity: 0.4;
}

.opacity-45 {
    opacity: 0.45;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-55 {
    opacity: 0.55;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-65 {
    opacity: 0.65;
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-75 {
    opacity: 0.75;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-85 {
    opacity: 0.85;
}

.opacity-90 {
    opacity: 0.9;
}

.blend-mode-exclusion {
    mix-blend-mode: exclusion;
}

.blend-mode-hue {
    mix-blend-mode: hue;
}

.blend-mode-saturation {
    mix-blend-mode: saturation;
}

.blend-mode-color {
    mix-blend-mode: color;
}

.blend-mode-luminosity {
    mix-blend-mode: luminosity;
}


/* Image Classes ----------------------------- */

.bg-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-attachment-fixed {
    background-attachment: fixed;
}

@supports ( -webkit-overflow-scrolling: touch ) {

    .bg-attachment-fixed {
        background-attachment: scroll;
    }
}

@media ( prefers-reduced-motion: reduce ) {

    .bg-attachment-fixed {
        background-attachment: scroll;
    }
}

.wp-block-image.is-resized {
    margin-left: auto;
    margin-right: auto;
}

/* Search Form ------------------------------- */

.search-form {
    align-items: stretch;
    display: flex;
    flex-wrap: nowrap;
    margin: 0 0 -0.8rem -0.8rem;
}

.search-form .search-field,
.search-form .search-submit {
    margin: 0 0 0.8rem 0.8rem;
}

.search-form label {
    align-items: stretch;
    display: flex;
    font-size: inherit;
    margin: 0;
    width: 100%;
}

.search-form .search-field {
    width: 100%;
}

.search-form .search-submit {
    flex-shrink: 0;
}

.search-form .search-submit:focus,
.search-form .search-submit:hover {
    text-decoration: none;
}
.search-no-results .archive-header {display: none;}

/* Social Icons ------------------------------ */

ul.social-icons {
    display: flex;
    flex-wrap: wrap;
    margin: -0.9rem 0 0 -0.9rem;
    width: calc(100% + 0.9rem);
}

ul.social-icons li {
    margin: 0.9rem 0 0 0.9rem;
}

.social-icons a {
    align-items: center;

    border-radius: 50%;
    color: #fff;
    display: flex;
    height: 4.4rem;
    justify-content: center;
    padding: 0;
    text-decoration: none;
    transition: transform 0.15s ease-in-out;
    width: 4.4rem;
}

.social-icons a:focus,
.social-icons a:hover {
    transform: scale(1.1);
    text-decoration: none;
}


/* Cover Modals ------------------------------ */

.cover-modal {
    display: none;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
}

.cover-modal::-webkit-scrollbar {
    display: none !important;
}

.cover-modal.show-modal {
    display: block;
    cursor: pointer;
}

.cover-modal.show-modal > * {
    cursor: default;
}


/* -------------------------------------------------------------------------- */

/*	4.	Site Header
/* -------------------------------------------------------------------------- */

#site-header {position: fixed;top: 0;left: 0;right: 0;z-index: 2000;background: 0 0;transition: all .3s ease 0s;}
#site-header.floating {background: #FFFFFF !important;box-shadow: 0px -1px 25px rgba(0, 0, 0, 0.08);}
#site-header.floating .primary-menu >li>a,
#site-header.floating .primary-menu > li > .icon {color: #1D252D!important;}
#site-header.floating .normal-logo {display: none;}
#site-header.floating .floating-logo {display: block}

.header-inner .primary-menu a {font-size: 16px;line-height: 30px;position: relative;overflow: hidden;}
.header-inner .primary-menu >li>a, .header-inner .primary-menu .sub-menu>li>a {color: #fff !important;}
.header-inner .primary-menu a:before {content: '';position: absolute;width: 100%;bottom: 1px;left: 0;height: 2px;background-color: #C92933;transform: translateX(-101%);transition: none;}

.header-inner .primary-menu a:hover:before, .header-inner .primary-menu li.current-menu-item>a:before,
.header-inner .primary-menu li.current-menu-parent>a:before {content: ''; position: absolute;width: 100%;bottom: 1px;left: 0;height: 2px;transition: 500ms cubic-bezier(0.645,0.045,0.355,1);transform: translateX(0);}

.header-inner .primary-menu a:after {content: '';position: absolute;width: 100%;bottom: 1px;left: 0;height: 2px;background-color: #C92933;transition: transform 500ms cubic-bezier(0.645,0.045,0.355,1);transform: translateX(101%);}

.header-inner .primary-menu a:hover:after, .header-inner .primary-menu li.current-menu-item>a:after,
.header-inner .primary-menu li.current-menu-parent>a:after {content: '';position: absolute;width: 100%;bottom: 1px;left: 0;height: 2px;transition-delay: 490ms;transition-duration: 10ms;transform: translateX(0);}

.header-inner .primary-menu li:hover span.icon {transform: rotate(135deg);right: 0.2rem;}
.header-inner .floating-logo {display: none;}

.page-template-template-new-landing-page #site-header,
.page-id-3 #site-header, .search-results #site-header,
.page-id-955 #site-header,.category #site-header,
.page-id-5711 #site-header,.category #site-header,
.page-id-5713 #site-header,.category #site-header,
.page-template-template-CTA #site-header,
.search-no-results #site-header,
.error404 #site-header,
.post-template-template-Webinar #site-header {
    background: #FFFFFF;box-shadow: 0px -1px 25px rgb(0 0 0 / 8%);
    transition: all .3s ease 0s;
}

.page-template-template-new-landing-page #site-content,
.page-id-3 #site-content,
.page-id-955 #site-content,
.page-id-5711 #site-content,
.page-id-5713 #site-content,
.category #site-content, .search-results #site-content,
.page-template-template-CTA #site-content, .search-no-results #site-content, .error404  #site-content, .post-template-template-Webinar #site-content {margin-top: 70px;}

.page-template-template-new-landing-page .header-inner .primary-menu >li>a, .page-template-template-new-landing-page .primary-menu > li > .icon,
.page-id-3 .header-inner .primary-menu >li>a, .page-id-3 .primary-menu > li > .icon,
.page-id-955 .header-inner .primary-menu >li>a,
.page-id-955 .primary-menu > li > .icon,.search-results .header-inner .primary-menu >li>a,
.page-id-5711 .header-inner .primary-menu >li>a,
.page-id-5711 .primary-menu > li > .icon,.search-results .header-inner .primary-menu >li>a,
.page-id-5713 .header-inner .primary-menu >li>a,
.page-id-5713 .primary-menu > li > .icon,.search-results .header-inner .primary-menu >li>a,
.search-results .primary-menu > li > .icon,
.category .header-inner .primary-menu >li>a, .category .primary-menu > li > .icon,
.page-template-template-CTA .header-inner .primary-menu >li>a, .page-template-template-CTA .primary-menu > li > .icon,
.search-no-results .header-inner .primary-menu >li>a, .search-no-results .primary-menu > li > .icon, .error404 .header-inner .primary-menu >li>a, .error404 .primary-menu > li > .icon, .post-template-template-Webinar .header-inner .primary-menu >li>a, .post-template-template-Webinar .primary-menu > li > .icon
{color: #1D252D !important;}

.page-template-template-new-landing-page .header-inner .floating-logo,
.page-id-3 .header-inner .floating-logo,
.page-id-955 .header-inner .floating-logo,.search-results .header-inner .floating-logo,
.page-id-5711 .header-inner .floating-logo,.search-results .header-inner .floating-logo,
.page-id-5713 .header-inner .floating-logo,.search-results .header-inner .floating-logo,
.category .header-inner .floating-logo,
.page-template-template-CTA .header-inner .floating-logo,.error404 .header-inner .floating-logo,
.search-no-results .header-inner .floating-logo, .post-template-template-Webinar .header-inner .floating-logo {display: block}

.page-template-template-new-landing-page .header-inner .normal-logo,
.page-id-3 .header-inner .normal-logo,
.page-id-955 .header-inner .normal-logo,.search-results .header-inner .normal-logo,
.page-id-5711 .header-inner .normal-logo,.search-results .header-inner .normal-logo,
.page-id-5713 .header-inner .normal-logo,.search-results .header-inner .normal-logo,
.category .header-inner .normal-logo,
.page-template-template-CTA .header-inner .normal-logo,.error404 .header-inner .normal-logo,
.search-no-results .header-inner .normal-logo, .post-template-template-Webinar .header-inner .normal-logo {display: none}


/* .header-inner .primary-menu .sub-menu>li {padding: 4px 0;}
.header-inner .primary-menu li.current-menu-parent>a,
.header-inner .primary-menu li.current-menu-item>a,.header-inner .primary-menu li.current-menu-parent>.icon{color: #C92933 !important} */
/* Header Titles ----------------------------- */
body:not(.enable-search-modal) .header-titles-wrapper {
    justify-content: flex-start;
    padding-left: 0;
    text-align: left;
}

.site-title,
.site-logo,
.site-description {
    margin: 0;
}

.site-title {
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1;
}

.site-title a {
    color: inherit;
    display: block;
    text-decoration: none;
}

.site-title a:hover,
.site-title a:focus {
    text-decoration: underline;
}

.site-description {
    margin-top: 1rem;
    color: #6d6d6d;
    font-size: 1.8rem;
    font-weight: 500;
    display: none;
    transition: all 0.15s linear;
}

.site-logo a,
.site-logo img {
    display: block;
}

.header-titles .site-logo .site-logo {
    margin: 0;
}

.site-logo img {
    max-height: 6rem;
    margin: 0 auto;
    width: auto;
}

body:not(.enable-search-modal) .site-logo img {
    margin: 0;
}

/* Overlay Header ---------------------------- */

.overlay-header #site-header {
    background: transparent;
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
}

.overlay-header .header-inner {
    color: #fff;
}

.overlay-header .site-description,
.overlay-header .toggle {
    color: inherit;
}

.overlay-header .header-inner .toggle-wrapper::before {
    background-color: currentColor;
    opacity: 0.25;
}

.admin-bar.overlay-header #site-header {
    top: 32px;
}

@media (max-width: 782px) {

    .admin-bar.overlay-header #site-header {
        top: 46px;
    }
}

/* Header Navigation ------------------------- */

.header-navigation-wrapper {
    display: none;
}

/* Header Toggles ---------------------------- */

.header-toggles {
    display: none !important;
}
.header-inner .header-titles img {width: 195px;}
.header-inner .toggle {
    align-items: center;
    display: flex;
    overflow: visible;
    outline: none;
    width: 33px;
}

.header-inner .toggle svg {
    display: block;
    position: relative;
    z-index: 1;
}

.header-inner .toggle path {
    fill: currentColor;
}

.toggle-inner {
    display: flex;
    justify-content: center;
    position: relative;
    width: 33px;
    height: 24px;
}

.toggle-icon {
    display: block;
    overflow: hidden;
}

.toggle-inner .toggle-text {
    color: #6d6d6d;
    font-size: 1rem;
    font-weight: 600;
    position: absolute;
    top: calc(100% + 0.5rem);
    width: auto;
    white-space: nowrap;
    word-break: break-all;
}

.overlay-header .toggle-text {
    color: inherit;
}

.header-inner .toggle:focus .toggle-text,
.header-inner .toggle:hover .toggle-text {
    text-decoration: underline;
}
@media(max-width: 767px) {
    .header-inner .toggle {width: 22px;}
    .page-id-3 #site-content,
    .page-id-955 #site-content,
    .page-id-5711 #site-content,
    .page-id-5713 #site-content,
    .category #site-content, .search-results #site-content, .page-template-template-CTA #site-content, .error404 #site-content, .search-no-results  #site-content, .post-template-template-Webinar #site-content{ margin-top: 50px;}
}
/* Search Toggle ----------------------------- */

.search-toggle {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
}

.search-toggle .toggle-icon,
.search-toggle svg {
    height: 2.5rem;
    max-width: 2.3rem;
    width: 2.3rem;
}

/* Navigation Toggle ------------------------- */

.nav-toggle {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    left: 15px;
}

.nav-toggle .toggle-icon,
.nav-toggle svg {
    height: 0.8rem;
    width: 2.6rem;
}


/* Primary Menu ---------------------------- */

.primary-menu-wrapper {
    display: none;
}

ul.primary-menu {
    display: flex;
}

.primary-menu .icon {
    display: block;
    height: 7px;
    position: absolute;
    pointer-events: none;
    transform: rotate(-45deg);
    width: 7px;
    transition: ease all .3s;
}

.primary-menu .icon::before,
.primary-menu .icon::after {
    content: "";
    display: block;
    background-color: currentColor;
    position: absolute;
    bottom: calc(50% - 1px);
    left: 0;
}

.primary-menu .icon::before {
    height: 9px;
    width: 2px;
}

.primary-menu .icon::after {
    height: 2px;
    width: 9px;
}

.primary-menu > li {font-size: inherit;line-height: 22px;position: relative;padding: 20px 0;}

.primary-menu > li:not(:last-child) {margin: 0 28px 0 0;}

.primary-menu > li.menu-item-has-children > a {
    padding-right: 20px;
}

.primary-menu > li > .icon {
    right: 0;
    top: calc(50% - 3px);
    color: #fff !important;
}
.primary-menu .sub-menu>li {
    padding: 4px 0;
}
.primary-menu a {
    color: inherit;
    display: block;
    line-height: 25px;
    text-decoration: none;
    word-break: normal;
    word-wrap: normal;
}

.primary-menu a:hover,
.primary-menu a:focus,
.primary-menu .current_page_ancestor {
    text-decoration: none;
}

.primary-menu li.current-menu-item > a,
.primary-menu li.current-menu-item > .link-icon-wrapper > a {
    text-decoration: underline;
}

.primary-menu li.current-menu-item > a:hover,
.primary-menu li.current-menu-item > .link-icon-wrapper > a:hover,
.primary-menu li.current-menu-item > a:focus,
.primary-menu li.current-menu-item > .link-icon-wrapper > a:focus {
    text-decoration: none;
}

/* SUB MENU */

.primary-menu ul {background: #2F2E2D!important;box-shadow: 0px 0px 20px rgb(18 18 18 / 40%);border-radius: 2px;color: #1D252D;
    position: absolute;top: 56px;left: -20px;z-index: 1;padding: 8px 20px 10px;display: none;width: 212px;}

.primary-menu li.menu-item-has-children:hover > ul,
.primary-menu li.menu-item-has-children:focus > ul,
.primary-menu li.menu-item-has-children.focus > ul {
    display: block;
}

.primary-menu ul::before,
.primary-menu ul::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 100%;
    display: none;
}

.primary-menu ul::before {
    height: 2rem;
    left: 0;
    right: 0;
}

.primary-menu ul::after {
    border: 0.8rem solid transparent;
    border-bottom-color: #000;
    right: 1.8rem;
}

.primary-menu ul a {
    background: transparent;
    border: none;
    color: inherit;
    display: block;
    transition: background-color 0.15s linear;
    width: fit-content;
    width: -moz-fit-content;
}

.primary-menu ul li.menu-item-has-children > a {
    padding-right: 4.5rem;
}

.primary-menu ul li.menu-item-has-children .icon {
    position: absolute;
    right: 1.5rem;
    top: calc(50% - 0.5rem);
}

/* DEEP DOWN */

.primary-menu ul ul {
    top: -1rem;
}

.primary-menu ul li.menu-item-has-children:hover > ul,
.primary-menu ul li.menu-item-has-children:focus > ul,
.primary-menu ul li.menu-item-has-children.focus > ul {
    right: calc(100% + 2rem);
}

.primary-menu ul ul::before {
    bottom: 0;
    height: auto;
    left: auto;
    right: -2rem;
    top: 0;
    width: 2rem;
}

.primary-menu ul ul::after {
    border-bottom-color: transparent;

    /*rtl:ignore*/
    border-left-color: #000;
    bottom: auto;
    right: -1.6rem;
    top: 2rem;
}

.rtl .primary-menu ul ul::after {
    transform: rotate(180deg);
}


@media(max-width: 1279px) and (min-width: 1024px) {
    .header-inner .primary-menu a {
        font-size: 13px;
    }
    .primary-menu .sub-menu>li {padding: 0}
    .primary-menu > li:not(:last-child) {
        margin: 0 17px 0 0;
    }
    .primary-menu .icon {
        width: 4px;
        height: 4px;
    }
    .primary-menu > li > .icon {
        top: calc(50% - 0px);
        right: 4px;
    }
    .primary-menu .icon::before {height: 6px;}
    .primary-menu .icon::after {width: 6px;}
    .header-inner .header-titles img {width: 164px}
    .header-inner .primary-menu li:hover span.icon {right: 6px;}
}
@media(max-width: 1023px) {
    .menu-modal-inner .menu-wrapper {
        width: 100%;
    }
    .nav-toggle {
        left: 20px;
    }
}
/*
 * Enable nav submenu expansion with tapping on arrows on large-viewport
 * touch interfaces (e.g. tablets or laptops with touch screens).
 * These rules are supported by all browsers (>IE11) and when JS is disabled.
 */
@media (any-pointer: coarse) {
    .primary-menu ul li.menu-item-has-children > a {
        margin-right: 4.5rem;
        padding-right: 0;
        width: unset;
    }
}

/* Repeat previous rules for IE11 (when JS enabled for polyfill). */
body.touch-enabled .primary-menu > li.menu-item-has-children > a {
    padding-right: 0;
    margin-right: 20px;
}

body.touch-enabled .primary-menu ul li.menu-item-has-children > a {
    margin-right: 4.5rem;
    padding-right: 0;
    width: unset;
}

/* -------------------------------------------------------------------------- */

/*	5. Menu Modal
/* -------------------------------------------------------------------------- */


.menu-modal {
    background: 0 0;
    display: none;
    opacity: 0;
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed;
    bottom: 0;
    left: -99999rem;
    right: 99999rem;
    top: 0;
    z-index: 99;
}
.menu-modal.active {left: 0;opacity: 1;right: 0;background: #2F2E2D;top: 0;}

.menu-modal-inner {display: flex;justify-content: stretch;overflow: auto;-ms-overflow-style: auto; height: calc(100vh - 72px);}
@media(max-width: 767px) {
    .section-inner {padding: 0 16px;}
    .menu-modal-inner {
        height: calc(100vh - 50px);
    }
}

.menu-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

button.close-nav-toggle {
    align-items: center;
    display: flex;
    font-size: 1.6rem;
    font-weight: 500;
    justify-content: flex-end;
    padding: 3.1rem 0;
    width: 100%;
    display: none;
}

button.close-nav-toggle svg {
    height: 1.6rem;
    width: 1.6rem;
}

button.close-nav-toggle .toggle-text {
    margin-right: 1.6rem;
}

.menu-modal .menu-top {
    flex-shrink: 0;
}
.header-inner .mobile-nav-toggle.active .toggle-inner .toggle-icon:before {box-shadow: transparent 0 0 0 0;-webkit-transform: rotate(225deg);transform: rotate(225deg);transition: ease .8s;top: 10px;background: #fff;}
.header-inner .mobile-nav-toggle.active .toggle-inner .toggle-icon:after {
    top: 10px;-webkit-transform: rotate(315deg);transform: rotate(315deg);transition: ease .8s;background: #fff;}

/* Main Menu --------------------------------- */

.modal-menu {position: relative;}

.mobile-menu .modal-menu>li a {
    display: block;text-decoration: none;width: 100%;font-size: 18px;line-height: 26px;padding: 18px 0;
    color: #fff;font-weight: normal;text-align: left;}
.mobile-menu .modal-menu>li .sub-menu a {padding: 10px; }
.mobile-menu .modal-menu>li.current-menu-item a {color: #C92933;}
.menu-wrapper .sub-menu > li.current-menu-item a, .mobile-menu .current-page-ancestor>.ancestor-wrapper>a,
.mobile-menu .current-page-ancestor svg {color: #C92933;}
.modal-menu .ancestor-wrapper {display: flex;justify-content: space-between;width: 100%;position: relative;}
.mobile-menu .modal-menu>li:first-child {margin-top: 90px;}
.modal-menu a:focus,
.modal-menu a:hover,
.modal-menu li.current-menu-item > .ancestor-wrapper > a,
.modal-menu li.current_page_ancestor > .ancestor-wrapper > a {
    text-decoration: underline;
}
.modal-menu > li > .ancestor-wrapper > button.sub-menu-toggle {padding: 0;position: absolute;right: 0;
    width: 100%;display: flex;height: 55px;justify-content: flex-end;align-items: center;}
button.sub-menu-toggle {
    flex-shrink: 0;
    padding: 0 2.5rem;
    outline: 0;
}
button.sub-menu-toggle svg {
    height: 9.9px;
    width: 20px;
    color: #fff;
    transition: transform 0.15s linear;
}

button.sub-menu-toggle.active svg {
    transform: rotate(180deg);
}

.modal-menu ul {
    display: none;
    margin: 0;
    width: 100%;
}

.modal-menu ul li {
    border-left-width: 1rem;
}

.modal-menu ul li a {
    color: inherit;
    font-weight: 500;
}
@media(max-width: 767px) {
    .mobile-menu .modal-menu > li a {padding: 14px 0;}
}
/* Main menu animation ----------------------- */

.menu-wrapper .menu-item {
    position: relative ;
    transform: none !important;
    transition-duration: inherit !important;
}

.menu-wrapper .active {
    display: block;
}
.menu-wrapper .sub-menu.active {
    position: relative ;
    transform: none ;
}
.menu-button {
    padding-bottom: 38px;
    margin-top: 25px;
}
.menu-button .button {
    height: 50px;
    width: 100%;
}

@media(max-width: 767px) {
    .menu-button .button {
        height: 45px;
        width: 100%;
    }
}
@media (prefers-reduced-motion: reduce) {

    .menu-wrapper.is-animating .menu-item,
    .menu-wrapper.is-animating .toggling-target {
        transition-duration: 1ms !important;
    }

}

/* Expanded Menu ----------------------------- */

.expanded-menu {
    display: none;
}

.mobile-menu {
    display: block;
}


/* Menu Bottom ------------------------------- */

.menu-bottom {
    flex-shrink: 0;
    padding: 4rem 0;
}

.menu-bottom nav {
    width: 100%;
}

.menu-copyright {
    display: none;
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0;
}

.menu-copyright a:focus,
.menu-copyright a:hover {
    text-decoration: underline;
}

.menu-bottom .social-menu {
    justify-content: center;
}


/* -------------------------------------------------------------------------- */

/*	6. Search Modal
/* -------------------------------------------------------------------------- */


.search-modal {
    background: rgba(0, 0, 0, 0.2);
    display: none;
    opacity: 0;
    position: fixed;
    bottom: 0;
    left: -9999rem;
    top: 0;
    transition: opacity 0.2s linear, left 0s 0.2s linear;
    width: 100%;
    z-index: 999;
}

.admin-bar .search-modal.active {
    top: 32px;
}

@media (max-width: 782px) {

    .admin-bar .search-modal.active {
        top: 46px;
    }
}

.search-modal-inner {
    background: #fff;
    transform: translateY(-100%);
    transition: transform 0.15s linear, box-shadow 0.15s linear;
}

.search-modal-inner .section-inner {
    display: flex;
    justify-content: space-between;
    max-width: 168rem;
}

.search-modal.active {
    left: 0;
    opacity: 1;
    transition: opacity 0.2s linear;
}

.search-modal.active .search-modal-inner {
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.08);
    transform: translateY(0);
    transition: transform 0.25s ease-in-out, box-shadow 0.1s 0.25s linear;
}

button.search-untoggle {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    margin-right: -2.5rem;
    padding: 0 2.5rem;
}

.search-modal button.search-untoggle {
    color: inherit;
}

.search-modal.active .search-untoggle {
    animation: popIn both 0.3s 0.2s;
}

.search-untoggle svg {
    height: 1.5rem;
    transition: transform 0.15s ease-in-out;
    width: 1.5rem;
}

.search-untoggle:focus svg,
.search-untoggle:hover svg {
    transform: scale(1.15);
}


/* Modal Search Form ------------------------- */

.search-modal form {
    margin: 0;
    position: relative;
    width: 100%;
}

.search-modal .search-field {
    background: none;
    border: none;
    border-radius: 0;
    color: inherit;
    font-size: 2rem;
    height: 8.4rem;
    margin: 0 0 0 -2rem;
    max-width: calc(100% + 2rem);
    padding: 0 0 0 2rem;
    width: calc(100% + 2rem);
}

.search-modal .search-field::-webkit-input-placeholder {
    color: inherit;
}

.search-modal .search-field:-ms-input-placeholder {
    color: inherit;
}

.search-modal .search-field::-moz-placeholder {
    color: inherit;
    line-height: 4;
}

.search-modal .search-submit {
    position: absolute;
    right: -9999rem;
    top: 50%;
    transform: translateY(-50%);
}

.search-modal .search-submit:focus {
    right: 0;
}


/* -------------------------------------------------------------------------- */

/*	7a. Template: Cover Template
/* -------------------------------------------------------------------------- */


.cover-header {
    display: flex;
    overflow: hidden;
}

.cover-header-inner-wrapper {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
}

.cover-header-inner {
    padding: 10rem 0 5rem 0;
    width: 100%;
}

.cover-color-overlay,
.cover-color-overlay::before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}

.cover-color-overlay::before {
    background: currentColor;
    content: "";
    display: block;
}

.cover-header .entry-header {
    position: relative;
    width: 100%;
    z-index: 1;
}

.cover-header .entry-header * {
    color: #fff;
}

body.template-cover .entry-header {
    background: transparent;
    padding: 0;
}

.cover-header h1,
.cover-header h2,
.cover-header h3,
.cover-header h4,
.cover-header h5,
.cover-header h6,
.cover-header .faux-heading {
    color: inherit;
}

.cover-header .entry-header a {
    color: inherit;
}

/* To The Content ---------------------------- */

.to-the-content-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.5rem);
}

.to-the-content {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 4rem;
    text-decoration: none;
}

.to-the-content svg {
    height: 2rem;
    transition: transform 0.15s linear;
    transform: translateY(0);
    width: 1.767rem;
}

.to-the-content:focus svg,
.to-the-content:hover svg {
    transform: translateY(20%);
}


/* -------------------------------------------------------------------------- */

/*	7c. Template: Full Width
/* -------------------------------------------------------------------------- */


body.template-full-width .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide),
body.template-full-width [class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
    max-width: 120rem;
}

body.template-full-width .entry-content .alignleft,
body.template-full-width .entry-content .alignright {
    position: static;
}

body.template-full-width .entry-content .alignleft,
body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > .alignleft,
body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > p .alignleft,
body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > .wp-block-image .alignleft {

    /*rtl:ignore*/
    margin-left: 0;
    position: static;
}

body.template-full-width .entry-content > .alignleft,
body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignleft,
body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignleft,
body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft {

    /*rtl:ignore*/
    margin-left: 2rem;
    position: static;
}

body.template-full-width .entry-content .alignright,
body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > .alignright,
body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > p .alignright,
body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > .wp-block-image .alignright {

    /*rtl:ignore*/
    margin-right: 0;
    position: static;
}

body.template-full-width .entry-content > .alignright,
body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignright,
body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignright,
body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright {

    /*rtl:ignore*/
    margin-right: 2rem;
    position: static;
}


/* -------------------------------------------------------------------------- */

/*	8. Post: Archive
/* -------------------------------------------------------------------------- */


/* Archive Header ---------------------------- */

.reduced-spacing .archive-header {
    padding-bottom: 2rem;
}
.search-subtitle {display: flex;justify-content: space-between;margin-bottom: 36px;margin-top: 45px}

.archive-title {
    font-size: 18px;
    line-height: 26px;
    font-weight: bold;
}
.archive-title a {
    color: #1D252D !important;
    font-weight: normal;
}
.archive-title a:hover {
    color: #C92933 !important;
}
.archive-subtitle p:last-child {
    margin-bottom: 0;
}
@media(max-width: 1023px) {
    .search-subtitle {display: block; margin: 26px 0 32px;}
    .intro-text {margin-bottom: 26px;}
    .search-subtitle #searchform input {width: 100%;}
}

/* Posts ------------------------------------- */

body:not(.singular) main > article:first-of-type {
    padding: 4rem 0 0;
}


/* Search Results ---------------------------- */

.no-search-results-form {
    padding-top: 5rem;
    display: none;
}


/* -------------------------------------------------------------------------- */

/*	9. Post: Single
/* -------------------------------------------------------------------------- */


/* Post Header ------------------------------- */

.singular .entry-header {
    background-color: #fff;
    padding: 4rem 0;
    display: none;
}

.entry-categories {
    line-height: 1.25;
    margin-bottom: 2rem;
}

.entry-categories-inner {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    margin: -0.5rem 0 0 -1rem;
}

.entry-categories a {
    border-bottom: 0.15rem solid currentColor;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0.5rem 0 0 1rem;
    text-decoration: none;
    text-transform: uppercase;
}

.entry-categories a:focus,
.entry-categories a:hover {
    border-bottom-color: transparent;
}

h1.entry-title,
h2.entry-title {
    margin: 0;
}

.entry-title a {
    color: inherit;
    text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
    text-decoration: underline;
}

.intro-text {
    color: #1D252D;
    font-weight: bold;
    font-size: 24px;
    line-height: 34px;
}

.singular .intro-text {
    font-size: 2rem;
    line-height: 1.4;
}

/* POST META */

.post-meta-single-top .post-meta {
    justify-content: center;
}

.post-meta-wrapper {
    margin-top: 2rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 58rem;
    width: 100%;
}

.post-meta {
    color: #6d6d6d;
    display: flex;
    flex-wrap: wrap;
    font-size: 1.5rem;
    font-weight: 500;
    list-style: none;
    margin: -1rem 0 0 -2rem;
}

.post-meta li {
    flex-shrink: 0;
    margin: 1rem 0 0 2rem;
    max-width: calc(100% - 2rem);
}

.post-meta a {
    color: inherit;
    text-decoration: none;
}

.post-meta a:focus,
.post-meta a:hover {
    text-decoration: underline;
}

.post-meta .meta-wrapper {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
}

.post-meta .meta-icon {
    flex-shrink: 0;
    margin-right: 1rem;
}

.sticky .post-sticky {
    color: inherit;
}

.post-meta .post-author .meta-icon svg {
    width: 1.6rem;
    height: 1.8rem;
}

.post-meta .post-categories .meta-icon svg {
    width: 1.8rem;
    height: 1.7rem;
}

.post-meta .post-comment-link .meta-icon svg {
    width: 1.8rem;
    height: 1.8rem;
}

.post-meta .post-date .meta-icon svg {
    width: 1.7rem;
    height: 1.8rem;
}

.post-meta .post-edit .meta-icon svg {
    width: 1.8rem;
    height: 1.8rem;
}

.post-meta .post-sticky .meta-icon svg {
    width: 1.5rem;
    height: 1.8rem;
}

.post-meta .post-tags .meta-icon svg {
    width: 1.8rem;
    height: 1.8rem;
}

.post-meta svg * {
    fill: currentColor;
}


/* Featured Media ---------------------------- */

.featured-media {
    margin-top: 5rem;
    position: relative;
}

.singular .featured-media {
    margin-top: 0;
}

.singular .featured-media-inner {
    position: relative;
    left: calc(50% - 50vw);
    width: 100vw;
}

.singular .featured-media::before {
    background: #fff;
    content: "";
    display: block;
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    top: 0;
}

.featured-media img {
    margin: 0 auto;
}

.featured-media figcaption {
    margin: 1.5rem auto 0 auto;
    text-align: center;
    width: calc(100% - 5rem);
}

.reduced-spacing.missing-post-thumbnail .post-inner {
    padding-top: 0;
}

/* Post Footer ------------------------------- */

/* POST NAV LINKS */

.post-nav-links {
    border-radius: 0.4rem;
    display: flex;
    font-size: 0.9em;
    font-weight: 600;
    line-height: 1;
    margin: 3em auto 0 auto;
    padding: 0;
    width: calc(100% - 4rem);
    max-width: 58rem;
}

.post-nav-links > span.label {
    padding: 1em 0;
}

.post-nav-links > * {
    padding: 1em 0.75em;
}

/* POST META BOTTOM */

.post-meta-wrapper.post-meta-single-bottom {
    margin-top: 3rem;
}


/* Author Bio -------------------------------- */

.author-bio {
    margin-top: 4rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 58rem;
    width: 100%;
}

.hide-avatars .author-bio {
    padding-left: 0;
}

.author-bio .author-title-wrapper {
    align-items: center;
    display: flex;
    margin: 0 0 1rem 0;
}

.author-bio .avatar {
    border-radius: 50%;
    margin-right: 1.5rem;
    height: 5rem;
    width: 5rem;
}

.hide-avatars img.avatar {
    display: none;
}

.author-bio p:last-child {
    margin-bottom: 0;
}

.author-bio .author-title {
    margin: 0;
}

.author-bio .author-link {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 1em;
    text-decoration: none;
}

.author-bio .author-link:focus,
.author-bio .author-link:hover {
    text-decoration: underline;
}


/* Single Pagination ------------------------- */

.pagination-single {
    font-size: 1.8rem;
    margin-top: 5rem;
    display: none;
}

.pagination-single-inner {
    display: flex;
    flex-direction: column;
}

.pagination-single hr:first-child {
    margin: 0 0 2.8rem 0;
}

.pagination-single hr:last-child {
    margin: 2.8rem 0 0.8rem 0;
}

.pagination-single a {
    align-items: baseline;
    display: flex;
    font-weight: 600;
    text-decoration: none;
    flex: 1;
}

.pagination-single a + a {
    margin-top: 1rem;
}

.pagination-single a .arrow {
    margin-right: 1rem;
}

.pagination-single a:focus .title,
.pagination-single a:hover .title {
    text-decoration: underline;
}


/* -------------------------------------------------------------------------- */

/*	10. Blocks
/* -------------------------------------------------------------------------- */


/* Block Colors ------------------------------ */

.has-text-color a {
    color: inherit;
}

/* CUSTOM COLORS */

:root .has-accent-color {
    /* 	color: #cd2653; */
}

:root .has-accent-background-color {

    color: #fff;
}

:root .has-primary-color {
    color: #000;
}

:root .has-primary-background-color {
    background-color: #000;
    color: #f5efe0;
}

:root .has-secondary-color {
    color: #6d6d6d;
}

:root .has-secondary-background-color {
    background-color: #6d6d6d;
    color: #fff;
}

:root .has-subtle-background-color {
    color: #dcd7ca;
}

:root .has-subtle-background-background-color {
    background-color: #dcd7ca;
    color: #000;
}

:root .has-background-color {
    color: #f5efe0;
}

:root .has-background-background-color {
    background-color: #f5efe0;
    color: #000;
}


/* Block Typography Classes ------------------ */

.has-text-align-left {

    /*rtl:ignore*/
    text-align: left;
}

.has-text-align-center {
    text-align: center;
}

.has-text-align-right {
    text-align: right;
}

.has-drop-cap:not(:focus)::first-letter {

    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 5.1em;
    font-weight: 800;
    margin: 0.05em 0.1em 0 0;
}

.has-drop-cap:not(:focus)::first-letter::after {
    content: "";
    display: table;
    clear: both;
}

.has-drop-cap:not(:focus)::after {
    padding: 0;
}


/* Block Font Families ----------------------- */

.has-drop-cap:not(:focus)::first-letter,
.entry-content .wp-block-archives,
.entry-content .wp-block-categories,
.entry-content .wp-block-cover-image,
.entry-content .wp-block-latest-comments,
.entry-content .wp-block-latest-posts,
.entry-content .wp-block-pullquote,
.entry-content .wp-block-quote.is-large,
.entry-content .wp-block-quote.is-style-large {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
}

@supports ( font-variation-settings: normal ) {

    .has-drop-cap:not(:focus)::first-letter,
    .entry-content .wp-block-archives,
    .entry-content .wp-block-categories,
    .entry-content .wp-block-latest-posts,
    .entry-content .wp-block-latest-comments,
    .entry-content .wp-block-cover-image p,
    .entry-content .wp-block-pullquote {
        font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
    }
}

/* Block Font Sizes -------------------------- */

.entry-content .has-small-font-size {
    font-size: 0.842em;
}

.entry-content .has-normal-font-size,
.entry-content .has-regular-font-size {
    font-size: 1em;
}

.entry-content .has-medium-font-size {
    font-size: 1.1em;
    line-height: 1.45;
}

.entry-content .has-large-font-size {
    font-size: 1.25em;
    line-height: 1.4;
}

.entry-content .has-larger-font-size {
    font-size: 1.5em;
    line-height: 1.3;
}


/* Block: Base Margins ----------------------- */

*[class*="_inner-container"] > *:first-child {
    margin-top: 0;
}

*[class*="_inner-container"] > *:last-child {
    margin-bottom: 0;
}

.wp-block-archives:not(.alignwide):not(.alignfull),
.wp-block-categories:not(.alignwide):not(.alignfull),
.wp-block-code,
.wp-block-columns:not(.alignwide):not(.alignfull),
.wp-block-cover:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
.wp-block-embed:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
.wp-block-gallery:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
.wp-block-group:not(.has-background):not(.alignwide):not(.alignfull),
.wp-block-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
.wp-block-latest-comments:not(.aligncenter):not(.alignleft):not(.alignright),
.wp-block-latest-posts:not(.aligncenter):not(.alignleft):not(.alignright),
.wp-block-media-text:not(.alignwide):not(.alignfull),
.wp-block-preformatted,
.wp-block-pullquote:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
.wp-block-quote,
.wp-block-quote.is-large,
.wp-block-quote.is-style-large,
.wp-block-verse,
.wp-block-video:not(.alignwide):not(.alignfull) {
    margin-bottom: 3rem;
    margin-top: 3rem;
}


/* Block: Shared Nesting Alignment Resets ---- */

[class*="__inner-container"] .wp-block-group:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright),
[class*="__inner-container"] .wp-block-cover:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright) {
    margin-left: auto;
    margin-right: auto;
    max-width: 58rem;
}


/* Block: Shared Widget Styles --------------- */

.wp-block-archives,
.wp-block-categories,
.wp-block-latest-posts,
.wp-block-latest-comments {
    list-style: none;
    margin-left: 0;
}

.wp-block-archives ul,
.wp-block-categories ul,
.wp-block-latest-posts ul,
.wp-block-latest-comments ul {
    list-style: none;
}

.entry-content .wp-block-archives > li,
.entry-content .wp-block-categories > li,
.entry-content .wp-block-latest-posts > li,
.entry-content .wp-block-latest-comment > li {
    margin-left: 0;
}

.entry-content .wp-block-archives > li:last-child,
.entry-content .wp-block-categories > li:last-child,
.entry-content .wp-block-latest-posts > li:last-child,
.entry-content .wp-block-latest-comment > li:last-child {
    margin-bottom: 0;
}

.entry-content .wp-block-archives *,
.entry-content .wp-block-categories *,
.entry-content .wp-block-latest-posts *,
.entry-content .wp-block-latest-comments * {
    font-family: inherit;
}

.entry-content .wp-block-archives li,
.entry-content .wp-block-categories li,
.entry-content .wp-block-latest-posts li {
    color: #6d6d6d;
}

.wp-block-archives a,
.wp-block-categories a,
.wp-block-latest-posts a,
.wp-block-latest-comments a {
    font-weight: 700;
    text-decoration: none;
}

.wp-block-archives a:hover,
.wp-block-categories a:hover,
.wp-block-latest-posts a:hover,
.wp-block-latest-comments a:hover,
.wp-block-archives a:focus,
.wp-block-categories a:focus,
.wp-block-latest-posts a:focus,
.wp-block-latest-comments a:focus {
    text-decoration: underline;
}

.wp-block-latest-posts a,
.wp-block-latest-comments__comment-meta {
    font-weight: 700;
    line-height: 1.25;
}

.wp-block-latest-comments__comment-date,
.wp-block-latest-posts__post-date {
    color: #6d6d6d;
    font-size: 0.7em;
    font-weight: 600;
    margin-top: 0.15em;
}


/* Block: Shared Media Styles ---------------- */

.wp-block-embed figcaption,
.wp-block-image figcaption {
    color: #6d6d6d;
    font-size: 1.4rem;
    margin-bottom: 0;
    margin-top: 1.5rem;
}

/* Block: Audio ------------------------------ */

.wp-block-audio audio {
    width: 100%;
}

/* Block: Button ----------------------------- */

.wp-block-button {
    margin: 3rem 0;
}

.wp-block-button.is-style-outline {

}

.is-style-outline .wp-block-button__link:not(.has-text-color) {
    color: inherit;
}

.is-style-outline .wp-block-button__link {
    padding: calc(1.1em - 0.2rem) calc(1.44em - 0.2rem);
}

/* Block: Columns ---------------------------- */

.wp-block-columns.alignfull,
.alignfull:not(.has-background) .wp-block-columns {
    padding-left: 2rem;
    padding-right: 2rem;
}

.wp-block-column {
    margin-bottom: 3.2rem;
}

.wp-block-column > *:first-child {
    margin-top: 0;
}

.wp-block-column > *:last-child {
    margin-bottom: 0;
}

/* Block: Cover ------------------------------ */

.wp-block-cover-image .wp-block-cover__inner-container,
.wp-block-cover .wp-block-cover__inner-container {
    width: calc(100% - 4rem);
    padding: 2rem 0;
}

.wp-block-cover-image .wp-block-cover-image-text,
.wp-block-cover-image .wp-block-cover-text,
.wp-block-cover-image h2,
.wp-block-cover .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text,
.wp-block-cover h2 {
    max-width: 100%;
    padding: 0;
}

.wp-block-cover-image h2,
.wp-block-cover h2 {
    font-size: 3.2rem;
}

/* Block: Embed ------------------------------ */

/* Block: File ------------------------------- */

.wp-block-file {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.wp-block-file a:not(.wp-block-file__button) {
    font-weight: 700;
    text-decoration: none;
}

.wp-block-file a:not(.wp-block-file__button):not(:last-child) {
    margin-right: 1rem;
}

.wp-block-file a:not(.wp-block-file__button):focus,
.wp-block-file a:not(.wp-block-file__button):hover {
    text-decoration: underline;
}

.wp-block-file .wp-block-file__button {
    font-size: 1.5rem;
    padding: 1em 1.25em;
}

.wp-block-file a.wp-block-file__button:visited {
    opacity: 1;
}

.wp-block-file a.wp-block-file__button:active,
.wp-block-file a.wp-block-file__button:focus,
.wp-block-file a.wp-block-file__button:hover {
    opacity: 1;
    text-decoration: underline;
}


/* Block: Gallery ---------------------------- */

.wp-block-gallery ul {
    list-style: none;
    margin: 0 0 -1.6rem 0;
}

figure.wp-block-gallery.alignnone,
figure.wp-block-gallery.aligncenter {
    margin-bottom: 3rem;
    margin-top: 3rem;
}

figure.wp-block-gallery.alignleft {
    margin: 0.3rem 2rem 2rem 0;
}

figure.wp-block-gallery.alignright {
    margin: 0.3rem 0 2rem 2rem;
}

figure.wp-block-gallery.alignwide {
    margin-bottom: 4rem;
    margin-top: 4rem;
}

figure.wp-block-gallery.alignfull {
    margin-bottom: 5rem;
    margin-top: 5rem;
}

/* Block: Group ------------------------------ */

.wp-block-group.has-background {
    padding: 2rem;
    margin-bottom: 0;
    margin-top: 0;
}

.wp-block-group__inner-container {
    margin: 0 auto;
}

.wp-block-group__inner-container,
.entry-content .wp-block-group p {
    max-width: 100%;
}

.alignfull:not(.has-background) > .wp-block-group__inner-container > p:not(.has-background-color) {
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Block: Image ------------------------------ */

/* Block: Media And Text --------------------- */

.wp-block-media-text .wp-block-media-text__content {
    padding: 3rem 2rem;
}

.wp-block-media-text .wp-block-media-text__content p {
    max-width: none;
}

.wp-block-media-text__content > *:first-child {
    margin-top: 0;
}

.wp-block-media-text__content > *:last-child {
    margin-bottom: 0;
}

/* Block: Pullquote -------------------------- */

/* STYLE: DEFAULT */

.wp-block-pullquote {
    padding: 0;
    position: relative;
}

.wp-block-pullquote.alignleft,
.wp-block-pullquote.alignright {
    max-width: calc(100% - 4rem);
}

.wp-block-pullquote::before {
    background: #fff;
    border-radius: 50%;

    content: "”";
    display: block;
    font-size: 6.2rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 auto 1.5rem auto;
    text-align: center;
    height: 4.4rem;
    width: 4.4rem;
}

.reduced-spacing .wp-block-pullquote::before {
    border: 0.1rem solid currentColor;
    font-size: 5.9rem;
}

.wp-block-pullquote blockquote {
    border: none;
    margin: 0;
    padding: 0;
}

.wp-block-pullquote blockquote p {
    font-family: inherit;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.178571429;
    max-width: 100%;
}

.wp-block-pullquote p:last-of-type {
    margin-bottom: 0;
}

.wp-block-pullquote cite {
    color: #6d6d6d;
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 1.2rem;
}

.wp-block-pullquote.alignleft p,
.wp-block-pullquote.alignright p {
    font-size: 2.8rem;
}

.wp-block-pullquote.alignleft {
    text-align: left;
}

.wp-block-pullquote.alignright {
    text-align: right;
}

.wp-block-pullquote.alignleft::before {
    margin-left: 0;
}

.wp-block-pullquote.alignright::before {
    margin-right: 0;
}

/* STYLE: SOLID BACKGROUND COLOR */

.wp-block-pullquote.is-style-solid-color {
    padding: 3rem 2rem;
}

.wp-block-pullquote.is-style-solid-color::before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.wp-block-pullquote.is-style-solid-color.alignleft::before,
.wp-block-pullquote.is-style-solid-color.alignright::before {
    transform: translateY(-50%);
}

.wp-block-pullquote.is-style-solid-color.alignleft::before {
    left: 2rem;
}

.wp-block-pullquote.is-style-solid-color.alignright::before {
    left: auto;
    right: 2rem;
}

.wp-block-pullquote.is-style-solid-color blockquote {
    max-width: 100%;
    text-align: inherit;
}

.wp-block-pullquote.is-style-solid-color cite {
    color: inherit;
}

/* Block: Separator  ------------------------- */

hr.wp-block-separator {
    margin: 3rem 0;
}

/* STYLE: WIDE */

.wp-block-separator.is-style-wide {
    max-width: calc(100vw - 4rem);
    position: relative;
    width: 100%;
}

/* STYLE: DOTS */

.wp-block-separator.is-style-dots::before {
    background: none;
    color: inherit;
    font-size: 3.2rem;
    font-weight: 700;
    height: auto;
    padding-left: 1em;
    position: static;
    transform: none;
    width: auto;
}

.wp-block-separator.is-style-dots::after {
    content: none;
}


/* Block: Search ----------------------------- */

.wp-block-search .wp-block-search__input {
    width: auto;
}

/* Block: Table ------------------------------ */

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background: #dcd7ca;
}

figure.wp-block-table.is-style-stripes {
    border-bottom: none;
}

.wp-block-table.is-style-stripes table {
    border-collapse: inherit;
}

/* Block: Quote ------------------------------ */

.wp-block-quote p,
.wp-block-quote cite {
    text-align: inherit;
}

.wp-block-quote[style="text-align:center"] {
    border-width: 0;
    padding: 0;
}

.wp-block-quote[style="text-align:right"] {

    /*rtl:begin:ignore*/
    border-width: 0 0.2rem 0 0;
    padding: 0 2rem 0 0;

    /*rtl:end:ignore*/
}

/* STYLE: LARGE */

.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
    border: none;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
}

.wp-block-quote.is-large p,
.wp-block-quote.is-style-large p {
    font-family: inherit;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.285;
}

.wp-block-quote.is-large cite,
.wp-block-quote.is-large footer,
.wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large footer {
    font-size: 1.6rem;
    text-align: inherit;
}

/* Block: Widget Latest Comments ------------- */

.entry-content .wp-block-latest-comments li {
    margin: 2rem 0;
}

.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
    margin-left: 5.5rem;
}

.entry-content .wp-block-latest-comments a {
    text-decoration: none;
}

.entry-content .wp-block-latest-comments a:hover,
.entry-content .wp-block-latest-comments a:focus {
    text-decoration: underline;
}

.wp-block-latest-comments__comment {
    font-size: inherit;
}

.wp-block-latest-comments__comment-date {
    margin-top: 0.4em;
}

.wp-block-latest-comments__comment-excerpt p {
    font-size: 0.7em;
    margin: 0.9rem 0 2rem 0;
}

/* Block: Widget Latest Posts ---------------- */

.wp-block-latest-posts.is-grid li {
    border-top: 0.2rem solid #dcd7ca;
    margin-top: 2rem;
    padding-top: 1rem;
}

.wp-block-latest-posts.has-dates {
    list-style: none;
}

.wp-block-latest-posts.has-dates:not(.is-grid) li {
    margin-top: 1.5rem;
}

.wp-block-latest-posts.has-dates:not(.is-grid) li:first-child {
    margin-top: 0;
}


/* -------------------------------------------------------------------------- */

/*	11. Entry Content
/* -------------------------------------------------------------------------- */

.entry-content > * {
    margin-left: auto;
    margin-right: auto;
}

.entry-content > *:first-child {
    margin-top: 0;
}

.entry-content > *:last-child {
    margin-bottom: 0;
}

.read-more-button-wrap {
    margin-top: 1em;
    text-align: center;
}

.entry-content a:hover,
.entry-content a:focus {
    text-decoration: none;
}

/* .entry-content p,
.entry-content li {
	line-height: 1.4;
} */

.entry-content li img {
    display: inline-block;
}

.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul {
    margin-bottom: 1rem;
}

.entry-content hr {
    margin: 4rem auto;
}

.post-inner .entry-content > .wp-block-cover.alignwide:first-child,
.post-inner .entry-content > .wp-block-cover.alignfull:first-child {
    margin-top: 0;
}

/* Font Families ----------------------------- */

.entry-content {font-family: "Noto Serif";letter-spacing: normal;}


/* Alignment Classes ------------------------- */

.alignnone,
.aligncenter,
.alignleft,
.alignright,
.alignwide {
    margin-top: 4rem;
    margin-right: auto;
    margin-bottom: 4rem;
    margin-left: auto;
}

[class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright) {
    margin-left: auto;
    margin-right: auto;
}

/* Full */

.alignfull {
    margin-top: 5rem;
    margin-right: auto;
    margin-bottom: 5rem;
    margin-left: auto;
    max-width: 100vw;
    position: relative;
    width: 100%;
}

[class*="__inner-container"] > .alignfull {
    max-width: 100%;
}

/* Wide */

.alignwide {
    max-width: 120rem;
    position: relative;
    width: calc(100% - 4rem);
}

[class*="__inner-container"] > .alignwide {
    width: 100%;
}

/* Center */

.aligncenter,
.aligncenter img {
    margin-left: auto;
    margin-right: auto;
}

/* Left and right */

.alignleft,
.alignright {
    max-width: 50%;
}

.alignleft {

    /*rtl:ignore*/
    float: left;
    margin: 0.3rem 2rem 2rem 2rem;
}

.alignright {

    /*rtl:ignore*/
    float: right;
    margin: 0.3rem 2rem 2rem 2rem;
}

[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignleft,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignleft,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft {

    /*rtl:ignore*/
    margin-left: 2rem;
}

[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignright,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignright,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright {

    /*rtl:ignore*/
    margin-right: 2rem;
}

/* Entry Media ------------------------------- */

.alignfull > figcaption,
.alignfull > .wp-caption-text {
    margin-left: auto;
    margin-right: auto;
    max-width: 58rem;
    width: calc(100% - 4rem);
}


/* -------------------------------------------------------------------------- */

/*	12. Comments
/* -------------------------------------------------------------------------- */


/* Comment Headers ----------------------------- */

.comments-wrapper {
    margin-top: 5rem;
    display: none;
}

.comment-reply-title {
    margin: 0 0 4rem 0;
    text-align: center;
}


/* Comment Item ----------------------------- */

/* COMMENT HEADER */

.comments .comment,
.comments .pingback,
.comments .trackback,
.comments .review {
    padding-top: 3.5rem;
}

div.comment:first-of-type {
    margin-top: 3.5rem;
    padding-top: 0;
}

.comments .comments-header + div {
    margin-top: 0;
    padding-top: 0;
}

.comment-body {
    position: relative;
}

.comment .comment {
    padding-left: 5%;
}

.comment-meta {
    line-height: 1.1;
    margin-bottom: 1.5rem;
    min-height: 5rem;
    padding-left: 5rem;
    position: relative;
}

.hide-avatars .comment-meta {
    min-height: 0;
    padding-left: 0;
}

.comment-meta a {
    color: inherit;
}

.comment-author {
    font-size: 1.8rem;
    font-weight: 700;
}

.comment-author a {
    text-decoration: underline;
}

.comment-author a:hover,
.comment-author a:focus {
    text-decoration: none;
}

.comment-meta .avatar {
    height: 4rem;
    position: absolute;
    left: 0;
    top: 0;
    width: 4rem;
}

.comment-author .url {
    text-decoration: underline;
}

.comment-metadata {
    color: #6d6d6d;
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 0.6rem;
}

.comment-metadata a {
    text-decoration: none;
}

.comment-metadata a:focus,
.comment-metadata a:hover {
    text-decoration: underline;
}


/* COMMENT CONTENT */

.comment-content.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
    width: 100%;
}

.comment-content.entry-content .alignleft {

    /*rtl:ignore*/
    margin-left: 0;
}

.comment-content.entry-content .alignright {

    /*rtl:ignore*/
    margin-right: 0;
}

/* COMMENT FOOTER */

.comment-footer-meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    font-size: 1.2rem;
    font-weight: 600;
    justify-content: flex-start;
    line-height: 1;
    margin: 1.5rem 0 -1rem -1.5rem;
    text-transform: uppercase;
}

.comment-footer-meta > * {
    margin: 0 0 1rem 1.5rem;
}

.comment-reply-link {
    color: #fff;
    display: block;
    padding: 0.7rem;
}

.bypostauthor .comment-footer-meta .by-post-author {
    display: block;
}

.comment-footer-meta a {
    text-decoration: none;
}

.comment-footer-meta a:focus,
.comment-footer-meta a:hover {
    text-decoration: underline;
}

.footer-text {
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    margin-top: 10px;
}
.footer-widgets .widget_text:first-child img {
    width: 100px;
}
/* Pingbacks & Trackbacks ------------------------- */

.pingback .comment-meta,
.trackback .comment-meta {
    padding-left: 0;
}


/* Comments Pagination ---------------------------- */

.comments-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 6rem;
    text-align: center;
}

.comments-pagination.only-next {
    justify-content: flex-end;
}

.comments-pagination .page-numbers {
    display: none;
    text-decoration: none;
}

.comments-pagination .page-numbers:focus,
.comments-pagination .page-numbers:hover {
    text-decoration: underline;
}

.comments-pagination .prev,
.comments-pagination .next {
    display: block;
}

.comments-pagination .prev {
    left: 0;
}

.comments-pagination .next {
    right: 0;
    text-align: right;
}


/* Comment Respond ---------------------------- */

.comment-respond::after {
    clear: both;
    content: "";
    display: block;
}

.comment-respond .comment-notes,
.comment-respond .logged-in-as {
    color: #6d6d6d;
    font-size: 1.6rem;
    line-height: 1.4;
    margin: -3rem 0 4rem 0;
    text-align: center;
}

.comment-respond .comment-notes a,
.comment-respond .logged-in-as a {
    color: inherit;
    text-decoration: none;
}

.comment-respond .comment-notes a:focus,
.comment-respond .comment-notes a:hover,
.comment-respond .logged-in-as a:focus,
.comment-respond .logged-in-as a:hover {
    text-decoration: underline;
}

.comment-respond p {
    line-height: 1.1;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.comment-respond p:not(.comment-notes) {
    max-width: 58rem;
}

.comment-form-cookies-consent {
    align-items: baseline;
    display: flex;
}

.comment-respond > p:last-of-type {
    margin-bottom: 0;
}

.comment-respond label {
    display: block;
}

.comment-respond input[type="checkbox"] + label {
    font-size: 1.5rem;
    line-height: 1.25;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond textarea {
    margin-bottom: 0;
}

.comment-respond textarea {
    height: 15rem;
}

.comment-respond #submit {
    display: block;
}

.comment-respond .comments-closed {
    text-align: center;
}


/* Reply Respond ---------------------------- */

.comments .comment-respond {
    padding: 3rem 0 0;
}

.comments .comment-respond .comment-reply-title,
.comments .comment-respond .comment-notes,
.comments .comment-respond .logged-in-as {
    text-align: left;
}

.comment-reply-title small {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0.5rem 0 0 0;
    white-space: nowrap;
}

.comment-reply-title small a {
    text-decoration: none;
}

.comment-reply-title small a:focus,
.comment-reply-title small a:hover {
    text-decoration: underline;
}


/* -------------------------------------------------------------------------- */

/*	13. Site Pagination
/* -------------------------------------------------------------------------- */


.pagination .nav-links {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    font-size: 18px;
}

.pagination-separator {
    margin: 5rem 0;
}

.nav-links > * {
    margin: 1.5rem 0 0 2.5rem;
}

.nav-links .placeholder {
    display: none;
    visibility: hidden;
}

.pagination a {
    text-decoration: none;
}

.pagination a:focus,
.pagination a:hover {
    text-decoration: underline;
    color: #C92933;
}

.pagination .dots {
    transform: translateY(-0.3em);
    color: #6d6d6d;
}

.nav-short {
    display: none;
}

/* -------------------------------------------------------------------------- */

/*	14. Error 404
/* -------------------------------------------------------------------------- */


.error404-content {
    text-align: center;
}

.error404 #site-content .search-form {
    justify-content: center;
    margin-top: 3rem;
}


/* -------------------------------------------------------------------------- */

/*	15.	Widgets
/* -------------------------------------------------------------------------- */


/* Widget Base ------------------------------- */


.widget-content > div > *:first-child {
    margin-top: 0;
}

.widget-content > div > *:last-child {
    margin-bottom: 0;
}

.widget .widget-title {
    margin: 0 0 2rem;
}


.widget li:first-child,
.widget li > ul,
.widget li > ol {
    margin-top: 0;
}

.widget table,
.widget table * {
    border-color: #dedfdf;
}

.widget table caption {
    background-color: #dedfdf;
}

.widget .post-date,
.widget .rss-date {
    color: #6d6d6d;
    display: block;
    font-size: 0.85em;
    font-weight: 500;
    margin-top: 0.2rem;
}

.widget select {
    max-width: 100%;
}

/* Font Families ----------------------------- */

.widget_text p,
.widget_text ol,
.widget_text ul,
.widget_text dl,
.widget_text dt,
.widget-content .rssSummary {
    font-family: "Helvetica";
    letter-spacing: normal;
}

.widget-content cite,
.widget-content figcaption,
.widget-content .wp-caption-text {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
}

@supports ( font-variation-settings: normal ) {

    .widget-content cite,
    .widget-content figcaption,
    .widget-content .wp-caption-text {
        font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
    }
}

/* Base List Widget -------------------------- */

.widget_archive ul,
.widget_categories ul,
.widget_pages ul,
.widget_meta ul,
.widget_nav_menu ul,
.widget_recent_comments ul,
.widget_recent_entries ul,
.widget_rss ul {
    list-style: none;
    margin: 0;
}

.widget_archive li,
.widget_categories li,
.widget_pages li,
.widget_meta li {
    color: #6d6d6d;
    margin: 0.3rem 0;
}

.widget_archive li li,
.widget_categories li li,
.widget_pages li li,
.widget_meta li li  {
    margin-left: 2rem;
}

.widget_archive a,
.widget_categories a,
.widget_pages a,
.widget_meta a,
.widget_nav_menu a {
    font-weight: 700;
    text-decoration: none;
}

.widget_archive a:focus,
.widget_archive a:hover,
.widget_categories a:focus,
.widget_categories a:hover,
.widget_pages a:focus,
.widget_pages a:hover,
.widget_meta a:focus,
.widget_meta a:hover,
.widget_nav_menu a:focus,
.widget_nav_menu a:hover {
    text-decoration: underline;
}

/* Widget: Calendar -------------------------- */

.calendar_wrap {
    font-size: 2.4rem;
}

.calendar_wrap th,
.calendar_wrap td,
.wp-calendar-nav span {
    display: table-cell;
    font-size: 1em;
    font-weight: 500;
    line-height: 1;
    padding: 2.5% 2.5% 1.75% 2.5%;
    text-align: center;
}

.wp-calendar-table {
    margin-bottom: 0;
}

.wp-calendar-nav {
    display: table;
    width: 100%;
    font-size: 1.8rem;
}

.calendar_wrap tfoot td {
    border-bottom: none;
}

.calendar_wrap tfoot a,
.calendar_wrap .wp-calendar-nav a {
    text-decoration: none;
}

.calendar_wrap tfoot #prev,
.calendar_wrap .wp-calendar-nav-prev {
    text-align: left;
}

.calendar_wrap tfoot #next,
.calendar_wrap .wp-calendar-nav-next {
    text-align: right;
}

/* Widget: Image ----------------------------- */

/* Widget: Gallery --------------------------- */

.widget_media_gallery .gallery {
    margin: 0 -0.4em -0.8em -0.4em;
    width: calc(100% + 0.8em);
}

.widget_media_gallery .gallery-item {
    margin: 0 0 0.8em 0;
    padding: 0 0.4em;
}

/* Widget: Nav Menu -------------------------- */

.widget_nav_menu .widget-content > div > ul {
    margin-left: 0;
}

/* Widget: Recent Comments ------------------- */

.widget_recent_comments li {
    font-weight: 700;
}

.widget_recent_comments a {
    text-decoration: none;
}

.widget_recent_comments a:focus,
.widget_recent_comments a:hover {
    text-decoration: underline;
}

/* Widget: Recent Entries -------------------- */

.widget_recent_entries a {
    font-weight: 700;
    text-decoration: none;
}

.widget_recent_entries a:focus,
.widget_recent_entries a:hover {
    text-decoration: underline;
}

/* Widget: RSS ------------------------------- */

.widget_rss .widget-title a.rsswidget:first-of-type {
    display: none;
}

.widget_rss .rsswidget {
    font-weight: 700;
}

.widget_rss a {
    text-decoration: none;
}

.widget_rss a:focus,
.widget_rss a:hover {
    text-decoration: underline;
}

.widget_rss .rssSummary {
    margin-top: 0.5rem;
}

.widget_rss cite::before {
    content: "— ";
}
.post-meta-wrapper {
    display: none;
}
/* Widget: Search ---------------------------- */

.widget_search .search-field {
    border-color: #dedfdf;
}

/* Widget: Tag Cloud ------------------------- */

.widget_tag_cloud a {
    font-weight: 700;
    margin-right: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
}

.widget_tag_cloud a:focus,
.widget_tag_cloud a:hover {
    text-decoration: underline;
}

/* Widget: Text ------------------------------ */


/* -------------------------------------------------------------------------- */

/*	16. Site Footer
/* -------------------------------------------------------------------------- */


.footer-nav-widgets-wrapper {background-color: #2F2E2D;color: #fff !important;
    border-bottom: 1px solid rgba(255,255,255,0.3) !important;padding-top: 53px;}

.footer-top-hidden #site-footer {
    margin-top: 5rem;
}

.reduced-spacing.footer-top-visible .footer-nav-widgets-wrapper,
.reduced-spacing.footer-top-hidden #site-footer {
    border-top-width: 0.1rem;
}

.footer-top {
    padding: 3rem 0;
}


/* Footer Top -------------------------------- */

.footer-top {
    display: flex;
    border-bottom: 0.1rem solid #dedfdf;
    justify-content: space-between;
}

/* FOOTER MENU */

.footer-menu {
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-menu li {
    line-height: 1.25;
    margin: 0.25em 0 0 0;
}

.footer-menu a {
    text-decoration: none;
    word-break: normal;
    word-wrap: normal;
}

.footer-menu a:hover,
.footer-menu a:focus {
    text-decoration: underline;
}

/* FOOTER SOCIAL */

.footer-social-wrapper {
    margin: 0;
    width: 100%;
}

.has-footer-menu .footer-social-wrapper {
    flex-shrink: 0;
    margin-left: 1rem;
    width: 50%;
}

ul.footer-social {
    margin: -0.5rem 0 0 -0.5rem;
}

.has-footer-menu .footer-social {
    justify-content: flex-end;
}

ul.footer-social li {
    margin: 0.5rem 0 0 0.5rem;
}

.footer-social a {
    height: 3.6rem;
    width: 3.6rem;
}

.footer-social a::before {
    font-size: 1.6rem;
}

/* Footer Widgets ---------------------------- */
.footer-widgets {
    display: flex;
    flex-flow: wrap;
}
.footer-widgets .widget ul li a:hover {
    text-decoration: underline!important;
}
.footer-widgets .widget-title {font-weight: bold;font-size: 18px;line-height: 24px;margin-bottom: 25px; color: #817D8B; height: 48px;}
.footer-widgets .widget-content li {
    line-height: 19px;
}
.footer-widgets .widget-content li:not(:last-child) {
    margin-bottom: 15px;
}
.footer-widgets .widget-content a {color: #fff;font: normal 14px/19px "Helvetica";}
.footer-widgets .widget-content span {color: #fff;font: normal 14px/21px "Helvetica";}
.footer-widgets .widget-content .citem-text {color: #fff;font: normal 14px/21px "Helvetica";}
.footer-widgets .widget-content .citem {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.footer-widgets .widget-content .citem a:hover {
    text-decoration: underline!important;
}
.fa-contact-icon:after {
    content: "";
    background: url(/wp-admin/images/email.svg) no-repeat;
    width: 17px;
    height: 12px;
    background-size: 17px 12px;
    margin-right: 10px;
    display: inline-block;
}
.fa-phone-icon:after {
    content: "";
    background: url(/wp-admin/images/phone.svg) no-repeat;
    width: 17px;
    height: 17px;
    background-size: 17px 17px;
    margin-right: 10px;
    display: inline-block;
}

.fa-app-icon:after {
    content: "";
    background: url(/wp-admin/images/whatsapp.svg) no-repeat;
    width: 22px;
    height: 22px;
    background-size: 25px 25px;
    margin-right: 10px;
    display: inline-block;
}
.fa-address-icon:after {
    content: "";
    background: url(/wp-admin/images/address.svg) no-repeat;
    width: 20px;
    height: 20px;
    background-size: 18px 18px;
    margin-right: 10px;
    display: inline-block;
}

.fa-app-icon {
    margin-top: -2px;
}
.fa-app-icon, .fa-phone-icon, .fa-address-icon, .fa-contact-icon {
    display: inherit;
}
.footer-widgets .widget-content .textwidget .citem:nth-child(3) {
    margin-left: -4px;
}
.widget-follow {
    margin-top: 22px;
    display: flex;
    margin-bottom: 34px;
}
.widget-follow a {
    line-height: 0 !important;
    font-size: 0 !important;
    color: transparent !important;
}
.widget-follow a:before {
    content: "";
    display: inline-block;
    width: 27px;
    height: 27px;
    cursor: pointer;
}
.widget-follow a.tw-btn:before {
    background: url(/wp-admin/images/Twitter.svg) no-repeat;
    background-size: 27px 27px;
}
.widget-follow a.li-btn:before {
    background: url(/wp-admin/images/linkedin.svg) no-repeat;
    background-size: 27px 27px;
}
.widget-follow a.ins-btn:before {
    background: url(/wp-admin/images/ins.svg) no-repeat;
    background-size: 27px 27px;
}

.widget-follow a.face-btn:before {
    background: url(/wp-admin/images/facebook.svg) no-repeat;
    background-size: 27px 27px;
}
.widget-follow a.youtobe-btn:before {
    background: url(/wp-admin/images/youtube.svg) no-repeat;
    background-size: 27px 27px;
}

.widget-follow a{
    display: inline-block;
    width: 30px;
    height: 30px;
}
.widget-follow a:not(:last-child) {
    margin-right: 14px;
}
.email-description {
    font-size: 14px;
    line-height: 19px;
    color: #fff;
    margin-bottom: 19px;
}
/* .footer-widgets .widget-content .textwidget .email {
	display: flex;
	align-items: center;
	border-bottom: 0.5px solid #FFFFFF;
	border-radius: 2px;
	padding-bottom: 11px;
}

.footer-widgets .widget-content .textwidget .email input {
	background: none;
    border: 0;
    color: #fff;
    font-size: 16px;
    line-height: 21px;
    outline: none;
	padding: 0;
	height: 26px;
}
.footer-widgets .widget-content .textwidget .email input::placeholder {
	 opacity: 0.3;
     color: #fff;
}*/

.footer-widgets .widget-content .textwidget .email:after {
    content: "";
    display: inline-block;
    background: url(/wp-admin/images/white-arrow-right.svg) no-repeat;
    width: 13px;
    height: 10px;
    background-size: 13px 10px;
    cursor: pointer;
    margin-right: 3px;
}

#hsForm_ee2130a6-a0fb-4de4-ba69-34e106b11893 {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 2px;
    padding-bottom: 11px;
}
#hsForm_ee2130a6-a0fb-4de4-ba69-34e106b11893 .hs_email.hs-email {
    width: 100%;
}
.hbspt-form #hsForm_ee2130a6-a0fb-4de4-ba69-34e106b11893 .hs_submit.hs-submit {
    margin-top: 0;
    position: absolute;
    right: 0;
    width: 25px;
    height: 25px;
    top: 4px;

}
#label-email-ee2130a6-a0fb-4de4-ba69-34e106b11893 {
    display: none;
}
#email-ee2130a6-a0fb-4de4-ba69-34e106b11893 {background: none;border: 0;color: #fff!important;font-size: 16px;
    line-height: 21px;outline: none;padding: 0;	border-bottom: 0.5px solid #FFFFFF;padding-right: 28px;
    padding-bottom: 10px;background-color: transparent;}
#email-ee2130a6-a0fb-4de4-ba69-34e106b11893::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
#email-ee2130a6-a0fb-4de4-ba69-34e106b11893::-moz-placeholder {
    color: rgba(255, 255, 255, 0.3);
}
#email-ee2130a6-a0fb-4de4-ba69-34e106b11893::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.3);
}
#email-ee2130a6-a0fb-4de4-ba69-34e106b11893:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-inner .hbspt-form .submitted-message::before {
    background: url(/wp-admin/images/success.svg) no-repeat;
    background-size: 25px;
    width: 25px;
    height: 25px;
    top: -5px;
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
}
.footer-inner .hbspt-form .submitted-message {
    padding-left: 34px;
    font-size: 14px;
    line-height: 19px;
    overflow: inherit;
}
.hbspt-form #hsForm_ee2130a6-a0fb-4de4-ba69-34e106b11893 .hs_submit.hs-submit .hs-button {
    background-color: transparent;
    width: 25px;
    height: 25px;
    position: absolute;
    z-index: 1;
}
.hbspt-form #hsForm_ee2130a6-a0fb-4de4-ba69-34e106b11893 .hs_submit.hs-submit .hs-button:hover {
    border: 0;
    color: inherit;
}
.hbspt-form #hsForm_ee2130a6-a0fb-4de4-ba69-34e106b11893 .hs_submit.hs-submit .actions {
    position: absolute;
    right: 0;
    width: 25px;
    height: 25px;
}
.hbspt-form #hsForm_ee2130a6-a0fb-4de4-ba69-34e106b11893 .hs_submit.hs-submit .actions:after {
    content: "";
    display: inline-block;
    background: url(/wp-admin/images/white-arrow-right.svg) no-repeat;
    width: 25px;
    height: 25px;
    background-size: 13px 10px;
    cursor: pointer;
    position: absolute;
    top: 4px;
}
/* Footer Bottom ----------------------------- */

#site-footer {font-size: 12px;line-height: 16px;color: #fff;background-color: #2F2E2D;padding: 8px 0;}

#site-footer .section-inner {
    align-items: baseline;
    display: flex;
    justify-content: space-between;
}

#site-footer a {
    text-decoration: none;
}

#site-footer a:focus,
#site-footer a:hover {
    text-decoration: underline !important;
}
.footer-copyright {width: 100%;display: flex;justify-content: space-between;font-family: "Helvetica"}
.footer-copyright span a:not(:last-child) {
    margin-right: 10px;
}
.footer-copyright a,
.powered-by-wordpress a {
    color: inherit;
}

.powered-by-wordpress,
.to-the-top {
    color: #6d6d6d;
}

a.to-the-top > * {
    pointer-events: none;
}

.powered-by-wordpress {
    display: none;
    margin: 0 0 0 2.4rem;
}

.to-the-top-long {
    display: none;
}

/*  footer */
.footer-widgets .widget_text:first-child {
    width: 214px;
    margin-right: 45px;
}
.footer-widgets .widget_nav_menu:nth-child(2) {
    width: 127px;
    margin-right: 40px;
}
.footer-widgets .widget_nav_menu:nth-child(3) {
    width: 120px;
    margin-right: 40px;
}
.footer-widgets .widget_text:nth-child(4) {
    width: 125px;
    margin-right: 35px;
}
.footer-widgets .widget_nav_menu:nth-child(5) {
    width: 120px;
    margin-right: 61px;
}
.footer-widgets .widget_text:nth-child(6) {
    width: 272px;
}
.footer-widgets .widget_text:last-child {width: 100%;border-top: 1px solid rgba(255,255,255,0.3);padding-top: 20px;margin-top: 44px;}
.footer-widgets .widget_text:last-child h3 {
    font-weight: bold;
    font-size: 12px;
    line-height: 14px;
    color: #fff;
    margin-bottom: 8px;
}
.footer-widgets .widget_text:last-child p {
    font-size: 10px;
    line-height: 14px;
    color: #FFFFFF;
    opacity: 0.7;
    margin-bottom: 20px;
}
@media(min-width: 768px) {
    .fa-address-icon {margin-top: -20px;}
}
@media(max-width: 548px) {
    .fa-address-icon {margin-top: -20px;}
}
@media(max-width: 1279px)and (min-width: 1024px) {
    .footer-widgets .widget_text:nth-child(6) {
        margin-top: 30px;
    }
    .footer-widgets .widget_text:nth-child(6) .widget-title {height: auto;}
}
@media(max-width: 1023px) and (min-width: 768px) {
    .footer-widgets .widget_text:nth-child(6) {
        width: 260px;
        margin-top: 30px;
    }
    .footer-widgets .widget_nav_menu:nth-child(5) {
        margin-right: 0;
    }
}
@media(max-width: 1023px) {
    .footer-widgets .widget_text:first-child {width: 100%;margin-right: 0;     }
    .footer-widgets .widget-title {margin-bottom: 10px;}
    .footer-widgets .widget_text:first-child {margin-bottom: 30px;}
    .footer-widgets .widget_text:first-child .widget-title, .footer-widgets .widget_text:nth-child(6) .widget-title {height: auto;}
}
@media(max-width: 767px) {
    .footer-widgets {
        flex-flow: column;
    }
    .footer-widgets .widget_text:first-child,
    .footer-widgets .widget_nav_menu:nth-child(2),
    .footer-widgets .widget_nav_menu:nth-child(3),
    .footer-widgets .widget_text:nth-child(4),
    .footer-widgets .widget_nav_menu:nth-child(5),
    .footer-widgets .widget_text:nth-child(6){
        width: 100%;
    }
    .footer-widgets .widget_text:first-child,
    .footer-widgets .widget_nav_menu:nth-child(2),
    .footer-widgets .widget_nav_menu:nth-child(3),
    .footer-widgets .widget_text:nth-child(4),
    .footer-widgets .widget_nav_menu:nth-child(5) {
        margin-bottom: 34px;
    }
    .footer-nav-widgets-wrapper {
        padding: 40px 5px 10px 5px;;
    }
    .footer-widgets .widget-title {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 21px;height: auto;
    }
    .footer-widgets .widget-content li {
        line-height: 22px;

    }
    .footer-widgets .widget-content li:not(:last-child) {
        margin-bottom: 19px;
    }

    .footer-widgets .widget-content a, .footer-widgets .widget-content span {
        font-size: 16px;
    }
    .footer-widgets .widget_text {
        margin-top: 0;
    }
    .footer-widgets .widget:not(:last-child) {
        margin-right: 0 !important;
    }


    #site-footer {
        padding: 15px 5px;
    }
    .footer-copyright {
        flex-direction: column;
    }
    .footer-copyright span:first-child {
        margin-bottom: 4px;
    }
    .footer-widgets .widget_text:nth-child(6) {
        margin-top: 0;
    }
    .widget-follow {
        margin-top: 15px;
        margin-bottom: 30px;
    }
    .email-description {
        padding-right: 55px;
        margin-bottom: 12px;
    }
    .footer-widgets .widget_text:last-child {
        margin-top: 29px;
    }
    .footer-widgets .widget_text:last-child {
        width: 100%;
    }
}
/* -------------------------------------------------------------------------- */

/*	17. Media Queries
/* -------------------------------------------------------------------------- */

@media ( max-width: 479px ) {

    /* Blocks -------------------------------- */

    .wp-block-pullquote.alignleft,
    .wp-block-pullquote.alignright {
        float: none;
    }

    /* Entry Content ------------------------- */

    /* LISTS */


    /* Post Footer --------------------------- */

    /* POST NAV LINKS */

    .post-nav-links {
        margin: 3em 0 0 0;
    }
}

@media ( min-width: 480px ) {

    /* Blocks -------------------------------- */

    /* BLOCK: BASE ALIGNMENT WIDTH */

    .wp-block-pullquote.alignleft,
    .wp-block-pullquote.alignright,
    .wp-block-cover-image.alignleft,
    .wp-block-cover-image.alignright,
    .wp-block-cover.alignleft,
    .wp-block-cover.alignright,
    .wp-block-embed.alignleft,
    .wp-block-embed.alignright,
    .wp-block-gallery.alignleft,
    .wp-block-gallery.alignright {
        max-width: 26rem;
    }

    /* BLOCK: TABLE WIDTH */
    .wp-block-table.alignleft,
    .wp-block-table.alignright {
        max-width: 100%;
    }

    /* Entry Content ------------------------- */

    /* ALIGNMENT CLASSES */

    .alignleft,
    .alignright {
        max-width: 26rem;
    }

    /* Post Footer --------------------------- */

    /* POST NAV LINKS */

    .post-nav-links {
        margin: 3em 0 0 0;
    }
}

@media ( max-width: 599px ) {

    /* Blocks -------------------------------- */

    /* BLOCK: COLUMNS */

    /* While columns are stacked */
    .wp-block-column:last-child {
        margin-bottom: 0;
    }

    .wp-block-columns + .wp-block-columns {
        margin-top: 0.2rem;
    }

    .wp-block-columns.alignwide + .wp-block-columns.alignwide {
        margin-top: -0.8rem;
    }

    .wp-block-columns.alignfull + .wp-block-columns.alignfull {
        margin-top: -1.8rem;
    }

    /* Template -------------------------------- */

    /* TEMPLATE: COVER */

    .template-cover .post-inner .post-meta-wrapper,
    .template-cover .post-inner .author-bio {
        width: calc( 100% - 4rem );
    }

    /* Post Footer --------------------------- */

    /* POST NAV LINKS */

    .post-nav-links {
        margin: 3em 0 0 0;
    }
}

@media ( min-width: 600px ) {

    /* Blocks -------------------------------- */

    /* BLOCK: COLUMNS */

    .wp-block-columns.alignwide + .wp-block-columns.alignwide,
    .wp-block-columns.alignfull + .wp-block-columns.alignfull {
        margin-top: -4rem;
    }

    /* Post Footer --------------------------- */

    /* POST NAV LINKS */

    .post-nav-links {
        margin: 3em 0 0 0;
    }
}

@media ( min-width: 660px ) {

    /* Blocks -------------------------------- */

    /* BLOCK: GALLERY */

    figure.wp-block-gallery.alignleft {

        /*rtl:ignore*/
        margin-left: calc(( 100vw - 58rem - 8rem ) / -2);
    }

    figure.wp-block-gallery.alignright {

        /*rtl:ignore*/
        margin-right: calc(( 100vw - 58rem - 8rem ) / -2);
    }

    /* Entry Content ------------------------- */

    /* ALIGNMENT CLASSES */

    .entry-content > .alignleft {

        /*rtl:ignore*/
        margin-left: 4rem;
    }

    .entry-content > p .alignleft,
    .entry-content > .wp-block-image .alignleft {

        /*rtl:ignore*/
        margin-left: calc(( 100vw - 58rem - 8rem ) / -2);
    }

    [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .alignleft,
    [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > p .alignleft,
    [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .wp-block-image .alignleft {

        /*rtl:ignore*/
        margin-left: 0;
    }

    .entry-content > .alignright {

        /*rtl:ignore*/
        margin-right: 4rem;
    }

    .entry-content > p .alignright,
    .entry-content > .wp-block-image .alignright {

        /*rtl:ignore*/
        margin-right: calc(( 100vw - 58rem - 8rem ) / -2);
    }

    [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .alignright,
    [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > p .alignright,
    [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .wp-block-image .alignright {

        /*rtl:ignore*/
        margin-right: 0;
    }

    /* Post Footer --------------------------- */

    /* POST NAV LINKS */

    .post-nav-links {
        margin: 3em auto 0 auto;
    }
}

@media ( min-width: 768px ) {

    /* Element Base ------------------------- */


    pre {
        padding: 3rem;
    }

    hr {
        margin: 8rem auto;
    }

    /* VANILLA GALLERIES */

    .gallery-columns-2 .gallery-item {
        max-width: 50%;
    }

    .gallery-columns-3 .gallery-item {
        max-width: 33.33%;
    }

    .gallery-columns-4 .gallery-item {
        max-width: 25%;
    }

    .gallery-columns-5 .gallery-item {
        max-width: 20%;
    }

    .gallery-columns-6 .gallery-item {
        max-width: 16.66%;
    }

    .gallery-columns-7 .gallery-item {
        max-width: 14.28%;
    }

    .gallery-columns-8 .gallery-item {
        max-width: 12.5%;
    }

    .gallery-columns-9 .gallery-item {
        max-width: 11.11%;
    }

    /* TITLES */

    h1,
    .heading-size-1,
    h2,
    .heading-size-2,
    h3,
    .heading-size-3 {
        /* 		margin: 6rem auto 3rem; */
    }

    h4,
    .heading-size-4,
    h5,
    .heading-size-5,
    h6,
    .heading-size-6 {
        /* 		margin: 4.5rem auto 2.5rem; */
    }

    h1,
    .heading-size-1 {
        font-size: 4.8rem;
    }

    h2,
    .heading-size-2 {
        font-size: 3.6rem;
    }

    h3,
    .heading-size-3 {
        font-size: 4rem;
    }

    h4,
    .heading-size-4 {
        font-size: 3.2rem;
    }

    h5,
    .heading-size-5 {
        font-size: 2.4rem;
    }

    h6,
    .heading-size-6 {
        font-size: 1.8rem;
    }

    /* INPUTS */

    fieldset {
        padding: 3rem;
    }

    legend {
        padding: 0 1.5rem;
    }

    button,
    .button,
    .faux-button,
    .wp-block-button__link,
    input[type="button"],
    input[type="reset"],
    input[type="submit"] {
        font-size: 1.7rem;
    }

    /* MEDIA */

    figcaption,
    .wp-caption-text {
        margin-top: 1.8rem;
    }


    /* Helper Classes ------------------------- */

    /* SECTIONS */

    section {
        padding: 8rem 0;
    }

    /* 	.section-inner {
		width: calc(100% - 8rem);
	} */


    /* Site Header --------------------------- */

    .site-title {
        font-size: 2.4rem;
        font-weight: 700;
    }

    .site-description {
        display: block;
    }

    .site-logo img {
        max-height: 9rem;
        transition: height 0.15s linear, width 0.15s linear, max-height 0.15s linear;
    }

    /* HEADER TOGGLES */

    .toggle-inner .toggle-text {
        font-size: 1.2rem;
    }

    .search-toggle {
        left: 2rem;
    }



    /* Menu Modal ---------------------------- */

    button.close-nav-toggle {
        font-size: 1.8rem;
        padding: 4rem 0;
    }

    button.close-nav-toggle svg {
        height: 2rem;
        width: 2rem;
    }

    button.close-nav-toggle .toggle-text {
        margin-right: 2.1rem;
    }

    .modal-menu {
        left: auto;
        width: 100%;
    }

    .modal-menu > li > a,
    .modal-menu > li > .ancestor-wrapper > a, .mobile-menu .modal-menu>li .sub-menu a {
        font-size: 24px;
    }

    .modal-menu ul li {
        border-left-color: transparent;
    }

    .modal-menu > li > .ancestor-wrapper > button.sub-menu-toggle {
        padding: 0;
        position: absolute;
        right: 0;
        width: 100%;
        display: flex;
        height: 60px;
        justify-content: flex-end;
        align-items: center;
    }

    .modal-menu > li > .ancestor-wrapper > button.sub-menu-toggle svg {
        height: 9.9px;
        width: 20px;
    }

    .menu-bottom {
        align-items: center;
        display: flex;
        justify-content: space-between;
        padding: 4.4rem 0;
    }

    .menu-copyright {
        display: block;
        flex-shrink: 0;
        margin-right: 4rem;
    }

    /* Modal Search Form ------------------------- */

    .search-modal form {
        position: relative;
        width: 100%;
    }

    .search-untoggle svg {
        height: 2.5rem;
        width: 2.5rem;
    }

    .search-modal .search-field {
        border: none;
        font-size: 3.2rem;
        height: 14rem;
    }

    .search-modal .search-field::-moz-placeholder {
        line-height: 4.375;
    }

    /* Sub Page ------------------------------ */

    /* FEATURED MEDIA */

    .featured-media figcaption {
        margin: 2rem auto 0 auto;
        width: calc(100% - 8rem);
    }

    /* Template: Cover Template -------------- */

    .cover-header-inner {
        padding: 18rem 0 8rem 0;
    }

    .to-the-content-wrapper {
        top: calc(100% + 1.8rem);
    }

    .to-the-content {
        height: 6rem;
    }

    .to-the-content svg {
        height: 2.4rem;
        width: 2.12rem;
    }

    /* Template: Full Width ------------------ */

    body.template-full-width .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
        width: calc(100% - 8rem);
    }

    body.template-full-width .alignfull:not(.has-background) > .wp-block-group__inner-container > p:not(.has-background-color) {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
    body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
    body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft {

        /*rtl:ignore*/
        margin-left: 4rem;
    }

    body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
    body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
    body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {

        /*rtl:ignore*/
        margin-right: 4rem;
    }

    /* Post: Archive ------------------------- */

    .reduced-spacing .archive-header {
        padding-bottom: 3rem;
    }

    .archive-title {
        font-size: 16px;
        line-height: 22px;
    }

    body:not(.singular) main > article:first-of-type {
        padding: 8rem 0 0;
    }

    h2.entry-title {
        font-size: 6.4rem;
    }

    /* SEARCH RESULTS */

    .no-search-results-form {
        padding-top: 8rem;
    }

    /* Post: Single -------------------------- */

    /* POST HEADER */

    .singular .entry-header {
        padding: 8rem 0;
    }

    .entry-categories {
        margin-bottom: 3rem;
    }

    .entry-categories-inner {
        margin: -1rem 0 0 -2rem;
    }

    .entry-categories a {
        font-size: 1.5rem;
        margin: 1rem 0 0 2rem;
    }

    .singular .intro-text {
        font-size: 2.6rem;
    }

    .post-meta-wrapper {
        margin-top: 3rem;
    }

    .post-meta {
        font-size: 1.6rem;
        margin: -1.4rem 0 0 -3rem;
    }

    .post-meta li {
        margin: 1.4rem 0 0 3rem;
        max-width: calc(100% - 3rem);
    }

    .featured-media {
        margin-top: 6rem;
    }


    /* POST FOOTER */

    .post-meta-wrapper.post-meta-single-bottom {
        margin-top: 4rem;
    }

    /* AUTHOR BIO */

    .author-bio {
        margin-top: 8rem;
        min-height: 8rem;
        padding-left: 10rem;
        position: relative;
    }

    .author-bio .avatar {
        position: absolute;
        left: 0;
        top: 0;
        height: 8rem;
        width: 8rem;
    }

    /* SINGLE PAGINATION */

    .pagination-single {
        font-size: 2.4rem;
        margin-top: 8rem;
    }

    .pagination-single-inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .pagination-single.only-next .pagination-single-inner {
        justify-content: flex-end;
    }

    .pagination-single hr:first-child {
        margin: 0 0 4rem 0;
    }

    .pagination-single hr:last-child {
        margin: 4rem 0 0.8rem 0;
    }

    .pagination-single a + a {
        margin: 0 0 0 4rem;
    }

    .pagination-single a .arrow {
        margin: 0 2rem 0 0;
    }

    .pagination-single .next-post {
        flex-direction: row-reverse;
        text-align: right;
    }

    .pagination-single .next-post .arrow {
        margin: 0 0 0 2rem;
    }

    /* Blocks -------------------------------- */

    /* BLOCK: SHARED MEDIA STYLES */

    .wp-block-embed figcaption,
    .wp-block-image figcaption {
        font-size: 1.6rem;
    }

    /* BLOCK: BASE MARGINS */

    .wp-block-archives:not(.alignwide):not(.alignfull),
    .wp-block-categories:not(.alignwide):not(.alignfull),
    .wp-block-code,
    .wp-block-columns:not(.alignwide):not(.alignfull),
    .wp-block-cover:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
    .wp-block-embed:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
    .wp-block-gallery:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
    .wp-block-group:not(.has-background):not(.alignwide):not(.alignfull),
    .wp-block-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
    .wp-block-latest-comments:not(.aligncenter):not(.alignleft):not(.alignright),
    .wp-block-latest-posts:not(.aligncenter):not(.alignleft):not(.alignright),
    .wp-block-media-text:not(.alignwide):not(.alignfull),
    .wp-block-preformatted,
    .wp-block-pullquote:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
    .wp-block-quote,
    .wp-block-quote.is-large,
    .wp-block-quote.is-style-large,
    .wp-block-verse,
    .wp-block-video:not(.alignwide):not(.alignfull) {
        margin-bottom: 4rem;
        margin-top: 4rem;
    }

    /* BLOCK: COLUMNS */

    .wp-block-columns.alignwide + .wp-block-columns.alignwide,
    .wp-block-columns.alignfull + .wp-block-columns.alignfull {
        margin-top: -6rem;
    }

    .entry-content .wp-block-columns h1,
    .entry-content .wp-block-columns h2,
    .entry-content .wp-block-columns h3,
    .entry-content .wp-block-columns h4,
    .entry-content .wp-block-columns h5,
    .entry-content .wp-block-columns h6 {
        margin: 3.5rem 0 2rem;
    }

    /* BLOCK: COVER */

    .wp-block-cover-image .wp-block-cover__inner-container,
    .wp-block-cover .wp-block-cover__inner-container {
        width: calc(100% - 8rem);
    }

    .wp-block-cover-image h2,
    .wp-block-cover h2 {
        font-size: 4.8rem;
    }

    /* BLOCK: GALLERY */

    figure.wp-block-gallery.alignnone,
    figure.wp-block-gallery.aligncenter {
        margin-bottom: 4rem;
        margin-top: 4rem;
    }

    figure.wp-block-gallery.alignwide,
    figure.wp-block-gallery.alignfull {
        margin-bottom: 6rem;
        margin-top: 6rem;
    }

    /* BLOCK: GROUP */

    .wp-block-group.has-background {
        padding: 4rem;
        margin-top: 0;
        margin-bottom: 0;
    }

    .alignfull:not(.has-background) > .wp-block-group__inner-container > p:not(.has-background-color) {
        padding-left: 0;
        padding-right: 0;
    }

    /* BLOCK: MEDIA AND TEXT */

    .wp-block-media-text .wp-block-media-text__content {
        padding: 4rem;
    }

    /* BLOCK: PULLQUOTE */

    .wp-block-pullquote blockquote p {
        font-size: 3.2rem;
    }

    .wp-block-pullquote cite {
        margin-top: 2rem;
    }

    .wp-block-pullquote.alignfull:not(.is-style-solid-color) {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .wp-block-pullquote.alignwide::before,
    .wp-block-pullquote.alignfull::before {
        font-size: 11.272727272rem;
        height: 8rem;
        margin-bottom: 2rem;
        width: 8rem;
    }

    .wp-block-pullquote.alignwide blockquote p,
    .wp-block-pullquote.alignfull blockquote p {
        font-size: 4.8rem;
        line-height: 1.203125;
    }

    .wp-block-pullquote.alignleft p,
    .wp-block-pullquote.alignright p,
    .wp-block-pullquote.alignleft.is-style-solid-color blockquote p,
    .wp-block-pullquote.alignright.is-style-solid-color blockquote p {
        font-size: 3.2rem;
        line-height: 1.1875;
    }

    .wp-block-pullquote.is-style-solid-color.alignwide,
    .wp-block-pullquote.is-style-solid-color.alignfull {
        padding: 6rem 4rem 4rem;
    }

    .wp-block-pullquote.alignleft.is-style-solid-color blockquote p,
    .wp-block-pullquote.alignright.is-style-solid-color blockquote p {
        font-size: 2.6rem;
    }

    /* BLOCK: QUOTE */

    .wp-block-quote.is-large p,
    .wp-block-quote.is-style-large p {
        font-size: 2.8rem;
    }

    /* BLOCK: SEPARATOR */

    hr.wp-block-separator {
        margin: 6rem auto;
    }

    .wp-block-separator.is-style-wide {
        max-width: calc(100vw - 8rem);
    }

    /* Entry Content ------------------------- */

    .alignnone,
    .aligncenter {
        margin-bottom: 4rem;
        margin-top: 4rem;
    }

    .alignleft {

        /*rtl:ignore*/
        margin: 0.3rem 2rem 2rem 0;
    }

    .alignright {

        /*rtl:ignore*/
        margin: 0.3rem 0 2rem 2rem;
    }

    .entry-content > .alignwide:not(.wp-block-group.has-background),
    .entry-content > .alignfull:not(.wp-block-group.has-background) {
        margin-bottom: 6rem;
        margin-top: 6rem;
    }

    .entry-content > .alignwide {
        max-width: calc(100vw - 8rem);
        width: calc(100vw - 8rem);
    }

    [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignleft,
    [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignleft,
    [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft {

        /*rtl:ignore*/
        margin-left: 4rem;
    }

    [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignright,
    [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignright,
    [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright {

        /*rtl:ignore*/
        margin-right: 4rem;
    }

    .entry-content > .alignwide:first-child,
    .entry-content > .alignfull:first-child {
        margin-bottom: 8rem;
    }

    /* ENTRY MEDIA */

    .alignfull > figcaption,
    .alignfull > .wp-caption-text {
        width: calc(100% - 8rem);
    }

    /* Comments ------------------------------ */

    .comments-wrapper {
        margin-top: 8rem;
    }

    .comment-reply-title {
        margin-bottom: 4.6rem;
    }

    .comment-respond p.comment-notes,
    .comment-respond p.logged-in-as {
        font-size: 1.8rem;
        margin: -2.5rem 0 4.4rem 0;
    }

    .comments .comment,
    .comments .pingback,
    .comments .trackback,
    .comments .review {
        padding-top: 5rem;
    }

    div.comment:first-of-type {
        margin-top: 5rem;
    }

    .comment-meta {
        margin-bottom: 2rem;
        min-height: 6rem;
        padding: 0.3rem 0 0 7.5rem;
    }

    .comment-meta .avatar {
        display: block;
        height: 6rem;
        position: absolute;
        left: 0;
        top: 0;
        width: 6rem;
    }

    .comment-author {
        font-size: 2.4rem;
    }

    .comment-metadata {
        font-size: 1.6rem;
        margin-top: 0.8rem;
    }

    .comment-footer-meta {
        margin-top: 2.5rem;
    }

    .comments-pagination {
        margin-top: 8rem;
    }

    /* PINGBACKS & TRACKBACKS */

    .pingback .comment-body {
        padding: 0;
    }

    /* COMMENT RESPOND */

    .comment-respond p {
        margin-bottom: 2.5rem;
    }

    .comment-form p.logged-in-as {
        margin: -2.5rem 0 4.4rem 0;
    }

    .comment-respond .comment-form-author,
    .comment-respond .comment-form-email {
        float: left;
        width: calc(50% - 1rem);
    }

    .comment-respond .comment-form-email {
        margin-left: 2rem;
    }

    .comments .comment-respond {
        padding: 5rem 0 0;
    }

    .comment-reply-title small {
        display: inline;
        margin: 0 0 0 0.5rem;
    }

    /* Site Pagination ----------------------- */

    .pagination-separator {
        margin: 8rem 0;
    }

    /* Display the full text for Newer and Older Posts. */

    .nav-short {
        display: inline;
    }

    .nav-links > * {
        margin: 2.5rem 0 0 4rem;
    }

    /* Error 404 ----------------------------- */


    /* Widgets ------------------------------- */


    /* Site Footer --------------------------- */

    .footer-top-hidden #site-footer {
        margin-top: 8rem;
    }

    /* FOOTER TOP */

    .footer-top {

        padding: 3.7rem 0;
    }

    .footer-menu {
        font-size: 2.4rem;
        margin: -0.8rem 0 0 -1.6rem;
    }

    .footer-menu li {
        margin: 0.8rem 0 0 1.6rem;
    }

    .has-footer-menu .footer-social-wrapper {
        flex: 1;
        margin-left: 4rem;
        width: auto;
    }

    /* FOOTER WIDGETS */

    .footer-widgets + .footer-widgets {
        margin-top: 0;
    }


    /* FOOTER BOTTOM */

    .footer-credits {
        display: flex;
    }

    .powered-by-wordpress {
        display: block;
    }

    .to-the-top-long {
        display: inline;
    }

    .to-the-top-short {
        display: none;
    }

}

@media (min-width: 782px) {

    /* Blocks -------------------------------- */

    /* BLOCK: COLUMNS */

    .wp-block-column {
        margin-bottom: 0;
    }

    .wp-block-columns.alignwide + .wp-block-columns.alignwide,
    .wp-block-columns.alignfull + .wp-block-columns.alignfull {
        margin-top: -2.8rem;
    }
}

@media ( min-width: 1024px ) {


    /* Document Setup ------------------------ */

    /* Helper Classes ------------------------ */

    /* Site Header --------------------------- */

    #site-header {
        z-index: 2000;
    }

    /* 	.header-titles-wrapper {
		margin-right: 4rem;
		max-width: 50%;
		padding: 0;
		text-align: left;
	} */

    .header-titles {
        align-items: baseline;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    /*
	.header-titles .site-title,
	.header-titles .site-logo,
	.header-titles .site-description {
		margin: 1rem 0 0 2.4rem;
	} */

    .wp-custom-logo .header-titles {
        align-items: center;
    }

    /* HEADER NAVIGATION */

    .header-navigation-wrapper {
        align-items: center;
        display: flex;
    }

    .primary-menu-wrapper {
        display: block;
        width: 100%;
    }

    /* HEADER TOGGLES */

    .mobile-search-toggle,
    .mobile-nav-toggle {
        display: none !important;
    }

    .primary-menu-wrapper + .header-toggles {
        margin-left: 3rem;
    }

    .header-toggles {
        display: flex;
        flex-shrink: 0;
        margin-right: -3rem;
    }

    .header-inner .toggle {
        height: 4.4rem;
        padding: 0 3rem;
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        top: auto;
        width: auto;
    }

    .header-inner .toggle-wrapper {
        position: relative;
    }

    .header-inner .toggle-wrapper::before {
        background: #dedfdf;
        content: "";
        display: block;
        height: 2.7rem;
        position: absolute;
        left: 0;
        top: calc(50% - 1.35rem);
        width: 0.1rem;
    }

    .header-inner .toggle-wrapper:first-child::before {
        content: none;
    }

    .header-inner .primary-menu-wrapper + .header-toggles .toggle-wrapper:first-child::before {
        content: "";
    }

    .nav-toggle-wrapper:not(.has-expanded-menu) {
        display: none;
    }

    .toggle-inner {
        position: static;
    }

    .toggle-inner .toggle-text {
        left: 0;
        right: 0;
        text-align: center;
        top: calc(100% - 0.3rem);
        width: auto;
    }

    .header-toggles:only-child .nav-toggle .toggle-inner {
        padding-top: 0;
    }

    .header-toggles:only-child .toggle-inner {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }

    .header-toggles:only-child .toggle-inner .svg-icon {
        order: 1;
    }

    .header-toggles:only-child .toggle-inner .toggle-text {
        position: static;
        padding-right: 20px;
        font-size: 15px;
        color: inherit;
    }

    /* Menu Modal ---------------------------- */

    .menu-modal {
        opacity: 1;
        justify-content: flex-end;
        padding: 0;
        transition: background-color 0.3s ease-in, left 0s 0.3s, right 0s 0.3s;
    }

    .menu-modal.cover-modal {
        display: none;
    }

    .menu-wrapper.section-inner {
        width: calc(100% - 8rem);
    }



    .mobile-menu {
        display: none;
    }

    .expanded-menu {
        display: block;
    }

    .menu-bottom {
        padding: 6rem 0;
    }

    .menu-bottom .social-menu {
        justify-content: flex-start;
    }

    /* Sub Page ------------------------------ */

    /* FEATURED MEDIA */

    .featured-media figcaption {
        width: 100%;
    }

    /* Template: Full Width ------------------ */

    .template-full-width .wp-block-image .alignleft {

        /*rtl:ignore*/
        margin-right: 2rem;
    }

    .template-full-width .wp-block-image .alignright {

        /*rtl:ignore*/
        margin-left: 2rem;
    }

    /* Post: Archive ------------------------- */

    /* Post: Single -------------------------- */

    .singular .intro-text {
        font-size: 2.8rem;
    }

    /* Blocks -------------------------------- */

    /* BLOCK: COLUMNS */

    .wp-block-columns.alignwide + .wp-block-columns.alignwide,
    .wp-block-columns.alignfull + .wp-block-columns.alignfull {
        margin-top: -4.8rem;
    }

    /* BLOCK: GALLERY */

    figure.wp-block-gallery.alignwide,
    figure.wp-block-gallery.alignfull {
        margin-bottom: 8rem;
        margin-top: 8rem;
    }

    /* BLOCK: GROUP */

    .entry-content > .wp-block-group.alignwide.has-background,
    .entry-content > .wp-block-group.alignfull.has-background {
        padding: 8rem 4rem;
        margin-bottom: 0;
        margin-top: 0;
    }

    /* BLOCK: IMAGE */

    .wp-block-image .alignleft {

        /*rtl:ignore*/
        margin-right: 0;
    }

    .wp-block-image .alignright {

        /*rtl:ignore*/
        margin-left: 0;
    }

    .wp-block-image .aligncenter figcaption {
        text-align: center;
    }

    /* BLOCK: SEPARATOR */

    hr.wp-block-separator {
        margin: 8rem auto;
    }

    /* Entry Content ------------------------- */

    /* ALIGNMENT CLASSES */

    .entry-content > .alignleft,
    .entry-content > p .alignleft,
    .entry-content > .wp-block-image .alignleft {
        position: absolute;

        /*rtl:ignore*/
        right: calc((100vw - 58rem) / 2 + 58rem + 2rem);
        max-width: calc((100% - 58rem) / 2 - 6rem);
    }

    [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .alignleft,
    [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > p .alignleft,
    [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .wp-block-image .alignleft {
        position: relative;

        /*rtl:ignore*/
        right: inherit;
        max-width: inherit;
    }

    [class*="wp-block"].alignwide [class*="__inner-container"] > .alignleft,
    [class*="wp-block"].alignwide [class*="__inner-container"] > p .alignleft,
    [class*="wp-block"].alignwide [class*="__inner-container"] > .wp-block-image .alignleft,
    [class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
    [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
    [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft {
        position: absolute;

        /*rtl:ignore*/
        right: calc((100% - 58rem) / 2 + 58rem + 4rem);
        max-width: calc((100% - 58rem) / 2 - 4rem);
    }

    [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .alignleft,
    [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > p .alignleft,
    [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .wp-block-image .alignleft {

        /*rtl:ignore*/
        right: calc((100% - 58rem) / 2 + 58rem);
    }

    [class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
    [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
    [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft {

        /*rtl:ignore*/
        margin-left: 4rem;
    }

    .entry-content > .alignright,
    .entry-content > p .alignright,
    .entry-content > .wp-block-image .alignright,
    [class*="__inner-container"] > .alignright {
        position: absolute;

        /*rtl:ignore*/
        left: calc((100vw - 58rem) / 2 + 58rem + 2rem);
        max-width: calc((100% - 58rem) / 2 - 6rem);
    }

    [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .alignright,
    [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > p .alignright,
    [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .wp-block-image .alignright {
        position: relative;

        /*rtl:ignore*/
        left: inherit;
        max-width: inherit;
    }

    [class*="wp-block"].alignwide [class*="__inner-container"] > .alignright,
    [class*="wp-block"].alignwide [class*="__inner-container"] > p .alignright,
    [class*="wp-block"].alignwide [class*="__inner-container"] > .wp-block-image .alignright,
    [class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
    [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
    [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
        position: absolute;

        /*rtl:ignore*/
        left: calc((100% - 58rem) / 2 + 58rem + 4rem);
        max-width: calc((100% - 58rem) / 2 - 4rem);
    }

    [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .alignright,
    [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > p .alignright,
    [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .wp-block-image .alignright {

        /*rtl:ignore*/
        left: calc((100% - 58rem) / 2 + 58rem + 4rem);
    }

    [class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
    [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
    [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {

        /*rtl:ignore*/
        margin-right: 4rem;
    }

    .entry-content > .alignwide:not(.wp-block-group.has-background),
    .entry-content > .alignfull:not(.wp-block-group.has-background) {
        margin-bottom: 8rem;
        margin-top: 8rem;
    }

    /* ENTRY MEDIA */

    .alignfull > figcaption,
    .alignfull > .wp-caption-text {
        width: calc(100% - 10rem);
    }

    /* Comments ------------------------------ */

    .comment-meta {
        padding-left: 0;
    }

    .comment-meta .avatar {
        left: -8rem;
    }

    /* Site Pagination ----------------------- */

    .pagination .nav-links {
        justify-content: center;
        margin: 0;
        width: 100%;
    }

    .nav-links > * {
        margin: 0 2rem;
    }

    .pagination .next,
    .pagination .prev {
        display: block;
    }



    /*
	.pagination .prev {
		margin: 0 auto 0 0;
	}
 .pagination .next {
		text-align: right;
		margin: 0 0 0 auto;
	} */

    /* Site Footer --------------------------- */

    /* FOOTER TOP */

    .footer-top {
        align-items: center;
    }

    .footer-menu {
        align-items: baseline;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        font-size: 2.1rem;
        margin: -1.2rem 0 0 -2.4rem;
    }

    .footer-menu li {
        margin: 1.2rem 0 0 2.4rem;
    }
}


@media ( min-width: 1220px ) {

    /* Element Base -------------------------- */

    /* TITLES */

    h1,
    .heading-size-1 {
        font-size: 8.4rem;
    }

    /* Helper Classes ------------------------ */

    /* Site Header --------------------------- */

    /* PRIMARY MENU */


    /* HEADER TOGGLES */

    .primary-menu-wrapper + .header-toggles {
        margin-left: 4rem;
    }

    .header-toggles {
        margin-right: -4rem;
    }

    .header-toggles .toggle {
        padding: 0 4rem;
    }

    /* Menu Modal ---------------------------- */

    /* Search Modal -------------------------- */

    /* Sub Page ------------------------------ */

    /* Template: Cover Template -------------- */

    .cover-header + .post-inner {
        padding-top: 10rem;
    }

    /* Post: Archive ------------------------- */

    /* Post: Single -------------------------- */

    .singular .intro-text {
        font-size: 3.2rem;
        line-height: 1.375;
    }

    /* Blocks -------------------------------- */

    /* BLOCK: COLUMNS */

    .wp-block-columns.alignfull + .wp-block-columns.alignfull {
        margin-top: -6rem;
    }

    /* BLOCK: GALLERY */

    figure.wp-block-gallery.alignfull {
        margin-bottom: 10rem;
        margin-top: 10rem;
    }

    /* BLOCK: GROUP */

    .entry-content > .wp-block-group.alignwide.has-background,
    .entry-content > .wp-block-group.alignfull.has-background {
        padding: 8rem 6rem;
        margin-bottom: 0;
        margin-top: 0;
    }

    /* BLOCK: PULLQUOTE */

    .wp-block-pullquote.alignwide blockquote p,
    .wp-block-pullquote.alignfull blockquote p {
        font-size: 6.4rem;
    }

    .wp-block-pullquote.is-style-solid-color.alignwide,
    .wp-block-pullquote.is-style-solid-color.alignfull {
        padding: 9rem 4rem 8rem;
    }

    /* Entry Content ------------------------- */

    /* ALIGNMENT CLASSES */

    .entry-content > .alignfull {
        margin-bottom: 10rem;
        margin-top: 10rem;
    }

    [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .alignleft,
    [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > p .alignleft,
    [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .wp-block-image .alignleft {

        /*rtl:ignore*/
        right: calc((100% - 58rem) / 2 + 58rem - 2rem);
    }

    [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .alignright,
    [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > p .alignright,
    [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .wp-block-image .alignright {

        /*rtl:ignore*/
        left: calc((100% - 58rem) / 2 + 58rem + 6rem);
    }

    /* Comments ------------------------------ */

    .comment-reply-title {
        font-size: 5.6rem;
        line-height: 1.2;
        margin-bottom: 6rem;
    }

    .comment-respond p.comment-notes,
    .comment-respond p.logged-in-as {
        margin: -4rem 0 6rem 0;
    }

    .comments .comment-respond .comment-reply-title {
        font-size: 4.8rem;
    }

    .comments .comment-respond p.comment-notes,
    .comments .comment-respond p.logged-in-as {
        margin: -4.5rem 0 4rem 0;
    }

    /* Site Pagination ----------------------- */

    /* Widgets ------------------------------- */

    /* Site Footer --------------------------- */

    .footer-menu {
        font-size: 2.4rem;
        margin: -1.5rem 0 0 -3rem;
    }

    .footer-menu li {
        margin: 1.5rem 0 0 3rem;
    }

    ul.footer-social {
        margin: -1rem 0 0 -1rem;
    }

    ul.footer-social li {
        margin: 1rem 0 0 1rem;
    }

    .footer-social a {
        height: 4.4rem;
        width: 4.4rem;
    }

    .footer-social a::before {
        font-size: 2rem;
    }

}

@media ( min-width: 1240px ) {


    /* Blocks -------------------------------- */

    body.template-full-width .entry-content > .alignleft {

        /*rtl:ignore*/
        margin-left: calc(( 100vw - 120rem ) / 2);
    }

    body.template-full-width .entry-content > .alignright {

        /*rtl:ignore*/
        margin-right: calc(( 100vw - 120rem ) / 2);
    }

}

@media ( min-width: 1280px ) {

    /* Blocks -------------------------------- */

    /* BLOCK: GALLERY */

    figure.wp-block-gallery.alignleft {

        /*rtl:ignore*/
        margin-left: -31rem;
    }

    figure.wp-block-gallery.alignright {

        /*rtl:ignore*/
        margin-right: -31rem;
    }

    /* BLOCK: SEPARATOR */

    .wp-block-separator.is-style-wide {
        max-width: 120rem;
        width: 120rem;
    }

    /* Entry Content ------------------------- */

    /* ALIGNMENT CLASSES */

    .entry-content > .alignleft,
    .entry-content > p .alignleft,
    .entry-content > .wp-block-image .alignleft {

        /*rtl:ignore*/
        right: calc((100vw - 58rem) / 2 + 58rem + 4rem);

        /*rtl:ignore*/
        margin-left: -31rem;
    }

    .entry-content > .alignright,
    .entry-content > p .alignright,
    .entry-content > .wp-block-image .alignright {

        /*rtl:ignore*/
        left: calc((100vw - 58rem) / 2 + 58rem + 4rem);

        /*rtl:ignore*/
        margin-right: -31rem;
    }

    .entry-content > .alignwide {
        max-width: 120rem;
        width: 120rem;
    }

    [class*="__inner-container"] > .alignwide {
        max-width: 120rem;
        width: 100%;
    }

    .alignleft,
    .alignright,
    .entry-content > .alignleft,
    .entry-content > p .alignleft,
    .entry-content > .wp-block-image .alignleft,
    .entry-content > .alignright,
    .entry-content > p .alignright,
    .entry-content > .wp-block-image .alignright,
    [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .alignleft,
    [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > p .alignleft,
    [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft,
    [class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
    [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
    [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft,
    [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .alignright,
    [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > p .alignright,
    [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright,
    [class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
    [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
    [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
        max-width: 25rem;
    }

    /* Template: Full Width ------------------ */

    body.template-full-width .alignfull:not(.has-background) > .wp-block-group__inner-container > p:not(.has-background-color) {
        padding-left: 0;
        padding-right: 0;
    }

    body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft {

        /*rtl:ignore*/
        margin-left: 0;
    }

    body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {

        /*rtl:ignore*/
        margin-right: 0;
    }

}

@media ( min-width: 1330px ) {


    /* Entry Content ------------------------- */

    /* ALIGNMENT CLASSES */

    .alignleft,
    .alignright,
    .entry-content > .alignleft,
    .entry-content > p .alignleft,
    .entry-content > .wp-block-image .alignleft,
    .entry-content > .alignright,
    .entry-content > p .alignright,
    .entry-content > .wp-block-image .alignright,
    [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .alignleft,
    [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > p .alignleft,
    [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft,
    [class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
    [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
    [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft,
    [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .alignright,
    [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > p .alignright,
    [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright,
    [class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
    [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
    [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
        max-width: 29rem;
    }

    /* Blocks -------------------------------- */

    /* BLOCK: PULLQUOTE */

    .wp-block-pullquote.is-style-solid-color.alignleft::before,
    .wp-block-pullquote.is-style-solid-color.alignright::before {
        top: 0;
    }
}
/*
common style */
.jet-container {
    position: relative;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}
.testimonial_rotator_wrap {
    margin: 0;
    padding: 0;
}
.testimonial_rotator_slide_title {
    display: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;

}
ul li {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none !important;
    cursor: pointer;
}

.buttons a.common-button {
    width: 220px;
    height: 50px;
    transition: ease all 0.3s;
}
.cp-btn {
    width: 250px !important;
}
.two-buttons.buttons {
    display: flex;
}
.two-buttons.buttons a.common-button {
    width: 220px;
    height: 50px;
    transition: ease all 0.3s;
}
@media (min-width: 320px) {
    .jet-container {
        max-width: 100%;
        position: relative;
    }
}

@media (min-width: 768px) {
    .jet-container {
        max-width: 750px;
    }
}

@media (min-width: 1024px) {
    .jet-container {
        max-width: 1000px;
    }
}

@media (min-width: 1280px) {
    .jet-container {
        max-width: 1230px;
    }
}
.header-inner .toggle-inner .toggle-icon:before {
    box-shadow: #fff 0 10px 0 0;
    position: absolute;
    top: 0;
    background: #fff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    content: "";
    height: 2px;
    left: 0;
    width: 33px;
    transition: ease .8s;
}
.header-inner .toggle-inner .toggle-icon:after {
    background: #fff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    content: "";
    height: 2px;
    left: 0;
    width: 33px;
    transition: ease .8s;
    position: absolute;
    top: 20px;
}

#site-header.floating .toggle-inner .toggle-icon:before,
.page-template-template-new-landing-page .header-inner .toggle-inner .toggle-icon:before,
.page-id-3 .header-inner .toggle-inner .toggle-icon:before,
.page-id-955 .header-inner .toggle-inner .toggle-icon:before, .search-results .header-inner .toggle-inner .toggle-icon:before,.search-no-results .header-inner .toggle-inner .toggle-icon:before,
.page-id-5711 .header-inner .toggle-inner .toggle-icon:before, .search-results .header-inner .toggle-inner .toggle-icon:before,.search-no-results .header-inner .toggle-inner .toggle-icon:before,
.page-id-5713 .header-inner .toggle-inner .toggle-icon:before, .search-results .header-inner .toggle-inner .toggle-icon:before,.search-no-results .header-inner .toggle-inner .toggle-icon:before,
.category .header-inner .toggle-inner .toggle-icon:before,
.page-template-template-CTA .header-inner .toggle-inner .toggle-icon:before, .error404 .header-inner .toggle-inner .toggle-icon:before, .post-template-template-Webinar .header-inner .toggle-inner .toggle-icon:before {
    box-shadow: #1D252D 0 10px 0 0;
    background: #1D252D;
}
#site-header.floating .toggle-inner .toggle-icon:after,
.page-template-template-new-landing-page .header-inner .toggle-inner .toggle-icon:after,
.page-id-3 .header-inner .toggle-inner .toggle-icon:after,
.page-id-955 .header-inner .toggle-inner .toggle-icon:after, .search-results .header-inner .toggle-inner .toggle-icon:after, .search-no-results .header-inner .toggle-inner .toggle-icon:after,
.page-id-5711 .header-inner .toggle-inner .toggle-icon:after, .search-results .header-inner .toggle-inner .toggle-icon:after, .search-no-results .header-inner .toggle-inner .toggle-icon:after,
.page-id-5713 .header-inner .toggle-inner .toggle-icon:after, .search-results .header-inner .toggle-inner .toggle-icon:after, .search-no-results .header-inner .toggle-inner .toggle-icon:after,
.category .header-inner .toggle-inner .toggle-icon:after,
.page-template-template-CTA .header-inner .toggle-inner .toggle-icon:after, .error404 .header-inner .toggle-inner .toggle-icon:after, .post-template-template-Webinar .header-inner .toggle-inner .toggle-icon:after{
    background: #1D252D;
}
.header-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 70px;
}
.jet-banner .banner-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.banner-box {padding: 45px 32px 42px 45px; max-width: 100%;background-color: rgba(255, 255, 255, 0.95);box-shadow: 0px 3px 25px rgba(25, 32, 56, 0.08);border-radius: 4px;margin: -64px auto 40px; color: #1D252D;
}
.banner-box h2 {font-weight: bold;font-size: 36px;line-height: 48px;}

.banner-box p {margin: 20px 0 34px;font: 18px/26px "Helvetica";}

.common-button {
    background: #C92933 !important;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    padding: 0;
    border-radius: 2px;
    text-transform: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}
.common-button:hover {
    background: #AB0E18 !important;
}

.homepage-stories {
    margin: 76px 0;
    position: relative;
}
.homepage-stories .jet-container {
    display: flex;
}

.homepage-stories .StoryHorizontal, .homepage-stories .StoryVertical {
    width: 50%;
}
.homepage-stories .StoryVertical {
    display: flex;
    flex-direction: column;
}
.homepage-stories .StoryHorizontal .Story {
    background-color: #fff;
    box-shadow: 0px 2px 26px rgba(166, 172, 183, 0.2);
    border-radius: 2px;
    display: flex;
    margin: 0 0 24px 0;
    overflow: hidden;
    padding: 10px;
    width: 100%;
    position: relative;
    min-height: 330px;
}
.homepage-stories .StoryHorizontal .Story:first-child {
    margin: 0 10px 0 0;
}
.homepage-stories .StoryHorizontal .Story:last-child {
    margin: 0 0 0 10px;
}
.homepage-stories .StoryHorizontal .StoryFrame {
    max-width: calc(50% - 20px);
    max-height: 310px;
    margin-right: 20px;
    overflow: hidden;
}
.homepage-stories .StoryContent h2:hover {
    text-decoration: underline;
}
.homepage-stories .StoryHorizontal .StoryContent h2 {
    margin-bottom: 6px;
    max-height: inherit;
}
.StoryFrame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.homepage-stories .StoryHorizontal .Story .StoryContent {
    padding: 17px 10px 0 0;
    max-width: calc(50% - 10px);
    position: relative;
}
.StoryContent h3 { font: bold 12px "Helvetica"; color: #ADB3BC; text-transform: uppercase;}
.StoryContent h2 {font-weight: bold;font-size: 18px;line-height: 24px;color: #1D252D;margin-top: 7px;margin-bottom: 25px;overflow: hidden;max-height: 48px;}
.StoryContent h2 a{
    color: #1D252D;
}
.homepage-stories .StoryContent p {
    font: 14px/19px "Helvetica";
    color: #1D252D;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
}

.homepage-stories .StoryHorizontal .StoryLink {bottom: 17px;left: 0;}
.StoryLink {position: absolute; bottom: 7px;}
.homepage-stories .StoryVertical .Story {display: flex;padding: 10px;background-color: #fff;box-shadow: 0px 2px 26px rgba(166, 172, 183, 0.2);border-radius: 2px;width: 100%;min-height: 155px;position: relative; }
.StoryFrame {max-width: calc(27% - 19px);max-height: 135px;margin-right: 15px;}
.StoryContent {max-width: calc(73% - 10px);position: relative;padding: 5px 10px 0 0;}
.homepage .sprk-c-Stepper__slider--active .sprk-c-Stepper__step-content--has-description {background-color: transparent;
    box-shadow: none;padding-top: 6px;padding-bottom: 0;}
.homepage .sprk-c-Stepper__step-heading {font-size: 20px;line-height: 24px;}
.homepage .sprk-c-Stepper__slider--active .sprk-c-Stepper__step-heading {font-size: 30px;line-height: 40px;}
.homepage .sprk-o-Stack.sprk-o-Stack--center-column {height: auto;justify-content: space-between; position: relative;}
/* .homepage .sprk-c-Stepper__step-content {margin-bottom: 24px;margin-top: 15px;} */
.homepage .sprk-c-Stepper__step--last .sprk-c-Stepper__step-content {margin-bottom: 0;}
.homepage .sprk-c-Stepper {width: 625px;max-width: inherit;}
.homepage .sprk-c-Stepper__slider--active .sprk-c-Stepper__step-icon, .homepage .sprk-c-Stepper__step--selected .sprk-c-Stepper__step-icon {width: 25px;height: 25px;top: 13px;left: -54px;}
.homepage .sprk-b-TypeBodyTwo { font: 18px/26px "Helvetica";max-width: 480px;text-align: left;	}
.homepage .sprk-b-TypeBodyTwo.first-spacing {margin-bottom: 24px;}
.homepage .sprk-c-Stepper__step--has-slider.sprk-c-Stepper__step--first::before,
.homepage .sprk-c-Stepper__step--has-slider.sprk-c-Stepper__step--last::before,
.homepage .sprk-c-Stepper__step--first::before, .sprk-c-Stepper__step--last::before {height: 60%;}
.homepage .sprk-b-TypeBodyTwo br {display: none;}
@media(min-width: 1024px) {
    .homepage .sprk-b-TypeBodyTwo br {display: block;}
}StoryLink
@media(min-width: 55rem) {
    .homepage .c-Carousel__frame {max-width: 342px;}
    .homepage .sprk-o-Stack__item--flex\@m {flex: inherit;}
}
@media(max-width: 1024px) {
    .homepage .c-Carousel__frame {margin-top: 0;}
    .homepage .sprk-c-Stepper--has-carousel .sprk-c-Stepper__step-content {margin-left: 60px;padding: 10px 0;margin-bottom: 18px;}
    .homepage .sprk-c-Stepper__slider--active .sprk-c-Stepper__step-icon,
    .homepage .sprk-c-Stepper__step--selected .sprk-c-Stepper__step-icon {
        top: 22px;
    }
    .homepage .sprk-c-Stepper__step-icon {
        left: -49px;
    }
    .homepage .sprk-c-Stepper {max-width: 656px;width: auto;}
    .homepage .sprk-c-Stepper__step::before {left: 18px;}
    .homepage .sprk-c-Stepper__step-content {margin-top: 5px;}
    .homepage .sprk-c-Stepper__slider--active .sprk-c-Stepper__step-heading{font-size: 26px; line-height: 34px;}
}
@media(max-width: 1023px){ .StoryLink {position: relative; bottom: 0;}}
@media(max-width: 879px) {
    .homepage .sprk-c-Carousel__dots {
        margin-top: 0;
    }
    .homepage .sprk-c-Stepper--has-carousel .sprk-c-Stepper__step-content {
        padding: 0;
        text-align: center;
        margin-left: 0;
        margin-bottom: 0;
    }
    .homepage .sprk-c-Stepper__slider--active .sprk-c-Stepper__step-heading {
        font-size: 20px;
        line-height: 24px;
    }
    .homepage .sprk-b-TypeBodyTwo {
        font-size: 16px;
        line-height: 22px;
        text-align: center;
    }
}
@media(max-width: 500px) {
}
/* middle banner */
.middle-content {
    display: flex;
    align-items: center;
    padding: 54px 0;
}
.middle-content .common-title {
    width: 423px;
    margin-right: 10.5%;
}
.middle-content .middle-image {width: 620px;display: flex;justify-content: space-between;align-items: center;
    flex-flow: wrap;margin-top: 20px;}
.middle-content .middle-image img {width: 22.5%;}

/* mortgage starts */
.mortgage-starts {
    display: flex;
    padding: 71px 0 84px;
    align-items: center;
}
.mortgage-starts .starts-left {
    max-width: 569px;
    margin-right: 13.8%;
}
.mortgage-starts .starts-left h2 {
    margin-bottom: 22px;
}
.mortgage-starts .starts-left p {
    margin-bottom: 50px;
    max-width: 528px;
}
.mortgage-starts .starts-right {
    max-width: 401px;
}

.homepage-text {padding: 28px 0 34px;}
.homepage-text .jet-container {display: flex;}
.homepage-text img {width: 200px;margin-right: 58px;}
.homepage-text p { font: 16px/22px "Helvetica";max-width: 950px;color: #1D252D;}
/* Our clients are all over the world */
.our-clients {padding: 90px 0; background-color: #2F2E2D; color: #fff;}
.our-clients .common-description {margin: 25px 0 77px; }
.our-clients .clients-data {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
}

.our-clients .clients-data li {padding-left: 20px; border-left: 2px solid #C92933;cursor: default;  position: relative;}
.our-clients .clients-data li:first-child {width: 260px;}
.our-clients .clients-data li:nth-child(2) {width: 284px;}
.our-clients .clients-data li:nth-child(3) {width: 239px;}
.our-clients .clients-data li:last-child {width: 341px;}
.our-clients .clients-data li h3 {font-weight: bold;font-size: 28px;line-height: 40px;height: 83px;text-transform: uppercase;}
.our-clients .clients-data li p.small-text { font: 18px/26px "Helvetica"; margin: 20px 0 5px;}

.homepage .our-clients .clients-data li .clients-detail {
    background: rgba(247, 248, 251, 0.9);
    display: none;
}
.our-clients .clients-data li .clients-detail {
    padding: 35px 0;
    position: absolute;
    top: 0;
    opacity: 0;
    transition: ease .3s;
    width: 100%;
    height: 100%;

}
.our-clients .clients-data li .clients-detail>div {
    width: 268px;
    background: #446097;
    box-shadow: 0px 2px 26px rgba(166, 172, 183, 0.2);
    border-radius: 2px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 21px;
    padding: 15px 20px;
}
/* .our-clients .clients-data li:hover .clients-detail{
	opacity: 1;
} */
@media (max-width: 1279px) {
    .our-clients .clients-data li {
        width: 45% !important;
    }
    .our-clients .clients-data li:first-child, .our-clients .clients-data li:nth-child(2){
        margin-bottom: 80px;
    }
    .our-clients .clients-data li h3 {
        height: 80px;
    }
    .our-clients .clients-data li .clients-detail {
        padding: 14px 0;
    }
}
@media (max-width: 1023px) {
    .our-clients .clients-data {
        flex-direction: column;
    }
    .our-clients .clients-data li {
        width: 100% !important;
    }
    .our-clients .clients-data li:not(:last-child) {
        margin-bottom: 41px;
    }
    .our-clients .clients-data li h3 {
        height: auto;
    }
    .our-clients .clients-data li h3 br {
        display: none;
    }
    .our-clients .clients-data li .clients-detail {
        position: relative;
        opacity: 1;
        background: transparent;
        padding: 0;
    }
    .our-clients .clients-data li .clients-detail>div {
        background: transparent;
        color: #656C77;
        width: 100%;
        box-shadow: none;
        padding: 0;
    }
    .our-clients .clients-data li p.small-text {
        margin: 14px 0;
        font-size: 20px;
        line-height: 28px;
    }
    .our-clients .top-box .main-title {
        text-align: center;
    }
    .our-clients .common-description {
        text-align: center;
    }
    .homepage-stories .StoryHorizontal .StoryContent h2 {
        margin-bottom: 10px;
    }
    .StoryContent {
        max-width: 100%;
    }
    .middle-content .common-title {	margin-bottom: 20px;margin-right: 0;}
}
@media(max-width: 767px) {

    .header-inner .header-titles img {width: 153px;}
    .homepage-text .jet-container {
        flex-direction: column;
    }
    .homepage-text img {
        width: 194px;
        margin-bottom: 22px;
    }
    .homepage-text p {
        font-size: 14px;
        line-height: 19px;
    }

    .homepage-stories .StoryVertical .StoryContent h2 {
        max-height: inherit;
    }
    .homepage-text {padding: 39px 0 44px}
}
@media(max-width: 680px) {
    .our-clients {
        padding: 40px 1px 66px;
    }
    .our-clients .common-title {font-size: 36px; line-height: 45px;}
    .our-clients .common-description {
        margin: 14px 0 47px;
    }
    .our-clients .clients-data li h3 {
        font-size: 28px;
        line-height: 42px;
    }
    .our-clients .clients-data li p.small-text {margin: 14px 0 0;}
    .our-clients .clients-data li:not(:last-child) {
        margin-bottom: 35px;
    }
    .our-clients .clients-data li .clients-detail>div {
        font-size: 14px;
        line-height: 19px;
    }
    .middle-content .common-title {width: 100%;}
}
/* Our clients are all over the world end*/


/* Our simple process */
.truly-content .swiper-container {width: 100%;height: 100%; overflow: inherit;position: initial}
.truly-content .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 148px !important;
}
.truly-content .swiper-pagination-bullets {height: 0px; bottom: 0 !important;}
.truly-content .swiper-pagination-bullet {background: #2F2E2D; opacity: 0.4;}
.truly-content .swiper-pagination-bullet-active {opacity: 1;}
.simple-process {padding: 80px 0 40px;background: url(/wp-content/uploads/2021/03/home-mask1.png) no-repeat center center/cover;}
.simple-process p.common-description {margin: 17px 0 10px; max-width: 674px;color: #4C5158;}
@media( max-width: 767px) {.truly-content .swiper-pagination-bullets { bottom: -10px!important;}}
.simple-process .all-process {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.simple-process .web-process {
    width: calc((1200/1440)*100vw);
    max-width: 1200px;
}
.simple-process .process-img {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    margin-bottom: 20px;
}
.simple-process .web-process .process-img {
    background-image: url(/wp-content/uploads/2020/12/process-image.png);
    width: calc((1100/1440)*100vw);
    height: calc((104/1440)*100vw);
    max-width: 1100px;
    max-height: 104px;
}
.simple-process .process {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.simple-process .process>div{
    font-weight: 400;
    text-align: center;

}
.simple-process .web-process .process>div {
    width: calc((180/1440)*100vw);
    max-width: 180px;
}
.simple-process .process>div h4 {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    color: #1D252D;
    margin-bottom: 12px;
    position: relative;
}
.simple-process .process>div h4 span {
    position: relative;
}


@media(max-width: 1279px) {
    .simple-process {
        padding: 80px 0;
    }
}
@media(max-width: 1023px) {

    .simple-process h2, .simple-process p {
        text-align: center;
    }
    .simple-process p.common-description {
        margin: 10px 15px;
    }
    .homepage-stories .StoryHorizontal .StoryFrame {
        max-width: 100%;
        max-height: 386px;
    }
}
@media(max-width: 800px) {
    .truly-content .swiper-slide {height: 211px!important;}
}
@media(max-width: 680px) {
    .simple-process {
        padding: 52px 0 59px;
    }
}
/* Our simple process end*/
@media(min-width: 1024px) {
    .jet-banner {
        min-height: 600px;
        position: relative;
    }
    .jet-banner .banner-image {
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        padding: 0;
        position: absolute;
        min-height: inherit;
    }

    .banner-box {max-width: 709px;position: absolute;top: 133px;margin: 0}
    .homepage-stories .StoryVertical {
        margin: 0 0 0 10px;
    }
    .homepage-stories .StoryHorizontal {
        margin: 0 0 0 10px;
    }
    .homepage-stories .StoryVertical .Story:first-child {
        margin-bottom: 20px;
    }

}
@media(max-width: 1023px) {
    .header-inner {
        justify-content: center;
        height: 70px;
    }
    .section-inner {
        padding: 0 20px;
    }

    /* 	stories */
    .homepage-stories {
        margin: 40px 0 46px 0;
    }
    .homepage-stories .jet-container {
        flex-flow: column;
    }
    .homepage-stories .StoryHorizontal {
        margin-top: 15px;
    }
    .homepage-stories .StoryHorizontal, .homepage-stories .StoryVertical {
        width: 100%;
    }
    .homepage-stories .StoryVertical {
        flex-direction: row;
        justify-content: space-between;
    }
    .homepage-stories .StoryVertical .Story {
        min-height: 330px;
        width: 48.4%;
        flex-direction: column;
        padding: 10px 10px 15px 10px;
    }
    .StoryFrame {
        position: relative;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        max-height: 184px;
        margin-right: 0;
    }
    .StoryContent {
        padding: 16px 5px 0 5px;
    }

    .homepage-stories .StoryHorizontal .StoryLink {
        bottom: 0;
        left: 0;
    }
    .StoryContent h2 {
        margin-bottom: 25px;
    }
    .homepage-stories .StoryHorizontal .Story:first-child, .homepage-stories .StoryHorizontal .Story:last-child {
        margin: 0;
        margin-bottom: 20px;
    }
    .mortgage-starts .starts-left {
        margin-right: 0;
        max-width: 100%;
        padding-left: 5px;
        padding-right: 5px;
        text-align: center;
        width: 100%;
    }
    .mortgage-starts .starts-left p {
        margin: 0 auto 59px;
    }
    .mortgage-starts .starts-left  h2 {
        padding-left: 25px;
        padding-right: 25px;
    }
    .mortgage-starts .starts-right {
        display: none;
    }
    .mortgage-starts .starts-left .buttons {
        justify-content: center;
    }
    .homepage-stories .StoryContent p {
        margin-bottom: 25px;
        height: inherit;
        -webkit-line-clamp: unset;
    }
    .homepage-stories .StoryHorizontal .Story {
        flex-direction: column;
    }
    .homepage-stories .StoryHorizontal .StoryFrame {
        margin-right: 0;
    }
    .homepage-stories .StoryHorizontal .Story .StoryContent {
        max-width: 100%;
        padding: 16px 5px 0 5px;
    }
    .middle-content {
        height: auto;
        padding: 50px 5px 70px;
        flex-flow: column;
    }
}
@media(max-width: 767px) {
    .nav-toggle {
        left: 1.5rem;
    }
    .header-inner {
        padding: 0 15px;
        height: 50px;
    }
    .header-inner .toggle-inner .toggle-icon:before, .header-inner .toggle-inner .toggle-icon:after {
        width: 19px;
    }
    .header-inner .toggle-inner .toggle-icon:before {
        box-shadow: #fff 0 6px 0 0
    }
    #site-header.floating .toggle-inner .toggle-icon:before,
    .page-id-3 .header-inner .toggle-inner .toggle-icon:before,
    .page-template-template-new-landing-page .header-inner .toggle-inner .toggle-icon:before,
    .page-id-955 .header-inner .toggle-inner .toggle-icon:before,
    .page-id-5711 .header-inner .toggle-inner .toggle-icon:before,
    .page-id-5713 .header-inner .toggle-inner .toggle-icon:before,
    .search-results .header-inner .toggle-inner .toggle-icon:before,
    .category .header-inner .toggle-inner .toggle-icon:before,
    .page-template-template-CTA .header-inner .toggle-inner .toggle-icon:before, .error404 .header-inner .toggle-inner .toggle-icon:before,
    .search-no-results  .header-inner .toggle-inner .toggle-icon:before, .post-template-template-Webinar .header-inner .toggle-inner .toggle-icon:before{
        box-shadow: #1D252D 0 6px 0 0;
    }
    .header-inner .toggle-inner .toggle-icon:after {
        top: 12px;
    }
    .toggle-inner {
        width: 22px;
        height: 10px;
    }
    .homepage-stories .StoryVertical {
        flex-direction: column;
    }
    .homepage-stories .StoryHorizontal .Story, .homepage-stories .StoryVertical .Story {
        width: 100%;
    }
    .StoryFrame {
        max-height: 386px;
    }
    .homepage-stories .StoryHorizontal .StoryFrame {
        max-width: 100%;
        overflow: hidden;
    }

    .StoryContent h2 {
        margin-bottom: 15px;
    }
    .homepage-stories .StoryHorizontal .Story:first-child, .homepage-stories .StoryHorizontal .Story:last-child, .homepage-stories .StoryVertical .Story:first-child{
        margin-bottom: 15px;
    }
    .homepage-stories .StoryContent p {
        margin-bottom: 15px;
    }

    .mortgage-starts {
        padding: 46px 0 46px;
    }
}
@media(min-width: 681px) {
    .banner-box p {
        max-width: 510px;
    }
}
@media(max-width: 680px) {
    .banner-box {
        padding: 20px;
    }
    .banner-box h2 {
        font-size: 24px;
        line-height: 30px;
    }
    .banner-box p {
        font-size: 16px;
        line-height: 21px;
        margin: 15px 0 25px;
        max-width: 100%;
    }
    .mortgage-starts .starts-left h2 {
        margin-bottom: 10px;
    }
    .mortgage-starts .starts-left p {
        margin-bottom: 38px;
    }
    .middle-content .middle-image {
        width: 100%;
    }
    .middle-content {padding: 50px 5px 73px}
}
@media(max-width: 580px) {
    .two-buttons.buttons {
        display: initial;

    }
}
@media(max-width: 480px) {
    .jet-banner .banner-image {
        height: 180px;
    }
    .middle-content .middle-image img {
        width: 120px;
    }
    .middle-content .middle-image {
        width: 260px;
    }
}
/* homepage end */


/* contact *****/

/* contact banner *****/
.contact .common-banner {
    background-image: url(/wp-content/uploads/2021/01/contact-background-scaled.jpg);
    padding: 182px 0 184px;
}
.contact .common-banner p {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px;
    color: #fff;
}
.contact .common-banner h2 {
    font-weight: bold;
    font-size: 48px;
    line-height: 56px;
    max-width: 857px;
    color: #fff;
}
/* .contact .our-promise {
	background-color: #F7F8FB;
	color: #1D252D;
	font-weight: bold;
	font-size: 48px;
	line-height: 56px;
	text-align: center;
}
 .contact .our-promise .jet-container>div {
    padding: 83px 0 81px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
}
.contact .our-promise img {
	width: 36.32px;
}
.contact .our-promise img.first-image {
	margin-top: -62px;
	margin-right: 8px;
}
.contact .our-promise img.last-image {
	margin-top: 62px;
	margin-left: 8px;
} */
.contact .contact-info {
    background: rgba(143,172,216, 0.4);
    padding: 50px 0 54px;
    color: #1D252D;
}
.contact .contact-info .jet-container {
    display: flex;
    justify-content: space-between;
}
.contact .contact-info .item-list h3 {
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
}
.contact .contact-info .item-list h3 img {
    width: 40px;
    margin-left: 25px;
}
.contact .contact-info .item-list p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
}
.contact .contact-info .item-list a {
    background: #D6001C;
    border-radius: 2px;
    width: 172px;
    height: 50px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    margin-top: 37px;
    display: flex;
    justify-content: center;
    align-items: center;

}
.contact .contact-info .item-list a:hover {
    background: #FFFFFF;
    border: 1px solid #D6001C;
    color: #D6001C;
}
.contact .contact-info .item-list.line1 {
    width: 203px;
}
.contact .contact-info .item-list.line2 {
    width: 205px;
}
.contact .contact-info .item-list.line3 {
    width: 235px;
}
.contact-form {

}
.contact-form .main-description {
    font-size: 22px;
    line-height: 28px;
    margin: 14px 0 36px;
    opacity: 0.7;
}

.contact-form .form-right .talk-joinUs .citem {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.ninzio-gap.inline-ninzio-clearfix {
    height: 40px;
}
.contact-form .form-right .talk-joinUs span{
    font-weight: bold;
    font-size: 24px;
    line-height: 34px;
    color: #446097;
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
    display: block;
}
.contact-form .form-right .talk-joinUs a, .contact-form .form-right .talk-joinUs label  {
    font-size: 18px;
    line-height: 22px;
    color: #1D252D;
    display: inline-block;
}

.contact-form .form-right .talk-joinUs a:hover {
    text-decoration: underline!important;
}
.contact-form .form-right .contact-follow a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-top: 30px;
    cursor: pointer;
}
.contact-form .form-right .contact-follow .li-btn {
    margin-right: 11px;
}
.contact-form .form-right .contact-follow .li-btn:before {
    content: "";
    display: inline-block;
    background: url(/wp-admin/images/ins-blank.svg) no-repeat;
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s;
}
.contact-form .form-right .contact-follow .tw-btn:before {
    content: "";
    display: inline-block;
    background: url(/wp-admin/images/twitter-blank.svg) no-repeat;
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s;
}
.contact-form .form-right .contact-follow .li-btn:hover:before {
    background: url(/wp-admin/images/ins-blue.svg) no-repeat;
    background-size: 28px 28px;
}
.contact-form .form-right .contact-follow .tw-btn:hover:before {
    background: url(/wp-admin/images/twitter-blue.svg) no-repeat;
    background-size: 28px 28px;
}
.contact-form .hbspt-form .input input.hs-input,
.contact-form .hbspt-form .hs-fieldtype-textarea textarea,
.contact-form .hubspot-form .input input.hs-input,
.contact-form .hubspot-form .hs-fieldtype-textarea textarea {
    background: transparent;
}
.hbspt-form fieldset,
.hubspot-form fieldset {
    max-width: 100% !important;
}

.hbspt-form .input input.hs-input,
.hbspt-form .input select.hs-input,
.hubspot-form .input input.hs-input,
.hubspot-form .input select.hs-input {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #E3E5E9;
    outline: 0;
    font-size: 18px;
    line-height: 22px;
    color: #1D252D;
    -webkit-appearance: none;
    white-space: nowrap;
}
.hbspt-form .input,
.hubspot-form .input {
    margin-right: 0 !important;
}
.hbspt-form .input>input.hs-input,
.hubspot-form .input>input.hs-input {
    padding: 0 0 10px 0;
    width: 100% !important;
    margin-top: 10px;
}

.hbspt-form .input>input.hs-input.invalid,
.hbspt-form .input select.hs-input.invalid,
.hbspt-form .hs-fieldtype-intl-phone.hs-input input.invalid,
.hubspot-form .input>input.hs-input.invalid,
.hubspot-form .input select.hs-input.invalid,
.hubspot-form .hs-fieldtype-intl-phone.hs-input input.invalid {
    border-bottom: 1px solid #FF4444;
}

.hbspt-form .input select.hs-input,
.hubspot-form .input select.hs-input {
    width: 100% !important;
    padding: 0 0 10px 0;
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    background: url(/wp-admin/images/contact-arrow-down.svg) no-repeat scroll right center transparent;
    margin-top: 31px;
}

.hbspt-form .hs-fieldtype-text label span {
    opacity: 0;
    transition: all 0.3s;
}
.hbspt-form .hs-fieldtype-select label span {
    display: none;
}
.hbspt-form .form-columns-2>div:first-child {
    padding-right: 12.5px;
}
.hbspt-form .form-columns-2>div:last-child {
    padding-left: 12.5px;
}
.hbspt-form .form-columns-3>div {width: 33.33% !important;}
.hbspt-form .form-columns-3>div:first-child {padding-right: 12.5px; }
.hbspt-form .form-columns-3>div:nth-child(2) {padding:0 6px;}
.hbspt-form .form-columns-3>div:last-child {padding-left: 12.5px;}
#hsForm_fb14f23d-3b0e-4502-b4f0-7875131debd1 .hs-fieldtype-radio .multi-container {
    display: flex;
    margin-top: 35px;
}
.hs-fieldtype-radio ul.multi-container li:not(:last-child) {
    margin-right: 42px;
}
.hs-fieldtype-radio ul.multi-container li label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.hs-fieldtype-radio ul.multi-container li label input {
    width: 18px !important;
    height: 18px;
    margin: 0;
}
#contact-form .hs-fieldtype-radio ul.multi-container li label span {
    font-weight: bold;
    font-size: 18px;
}
.hbspt-form .hs-fieldtype-textarea>label { font: 18px/26px "Helvetica";color: #4C5158;margin-top: 45px;}
.hbspt-form .hs-fieldtype-textarea textarea {
    border: 1px solid #E3E5E9;
    border-radius: 4px;
    margin-top: 23px;
    width: 100%!important;
    outline: 0;
    font-size: 18px;padding: 14px 21px;
}
#phone_ext-fb14f23d-3b0e-4502-b4f0-7875131debd1, .hs-fieldtype-intl-phone>select {
    padding-right: 14px !important;
}
.hbspt-form .hs-fieldtype-intl-phone.hs-input select {
    width: 47% !important;
    color: #ADB3BC;
}
.hbspt-form .hs-fieldtype-intl-phone.hs-input input {
    width: 47% !important;
    padding: 32px 0 10px 0;
}
.hbspt-form .hs-fieldtype-intl-phone.hs-input {
    width: 100% !important;
}
.hbspt-form .hs-fieldtype-intl-phone.hs-input select:focus {
    color: #000;
}
.hbspt-form  .hs-form-required {
    display: none;
}
.hbspt-form .hs_submit.hs-submit {
    margin-top: 45px;
}
.hbspt-form .hs_submit.hs-submit .hs-button, .hubspot-form .hs-submit .hs-button {
    font: 600 16px/24px "Noto Serif";
    background-color: #C92933;
    border-radius: 2px;
    color: #fff;
    width: 240px;
    height: 50px;
    padding: 0;
    text-transform: inherit;
    text-decoration: none;
    outline: 0;
}
.hbspt-form input[type="radio"].hs-input {
    display: inline-block;
    width: 18px !important;
    height: 18px;
    border: 1px solid #ADB3BC !important;
    border-radius: 30px;
    position: relative;
}
.hbspt-form input[type="radio"].hs-input:checked:after {
    position: absolute;
    left: -1px;
    top: -1px;
    width: 20px;
    height: 20px;
    border-radius: 15px;
    background-color: #fff;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 1px solid white;
    box-shadow: 0 0 0 5px #003da5 inset;

}
.hbspt-form input[type="radio"].hs-input:checked {
    border: 0 !important;
}

.hbspt-form .hs-error-msg,
.hubspot-form .hs-error-msg {
    font: 12px/20px "Helvetica";
    color: #FF4444;
    margin-top: 6px;
    margin-bottom: 0;
}
.hbspt-form .hs_error_rollup {
    display: none;
}
.hbspt-form .submitted-message {
    position: relative;
    padding-left: 53px;
}

.hbspt-form select:required:invalid {
    color: #ADB3BC;
}

.hbspt-form .input input.hs-input::placeholder {
    color: #ADB3BC ;
}
.hbspt-form .input input.hs-input::-moz-placeholder {
    color: #ADB3BC ;
}
.hbspt-form .input input.hs-input::-webkit-input-placeholder {
    color: #ADB3BC ;
}
.hbspt-form .input input.hs-input:-ms-input-placeholder {
    color: #ADB3BC ;
}
.hbspt-form .hs-fieldtype-textarea textarea::placeholder{
    color: #ADB3BC ;
}
.hbspt-form .hs-fieldtype-textarea textarea::-moz-placeholder {
    color: #ADB3BC ;
}
.hbspt-form .hs-fieldtype-textarea textarea::-webkit-input-placeholder {
    color: #ADB3BC ;
}
.hbspt-form .hs-fieldtype-textarea textarea::-ms-input-placeholder {
    color: #ADB3BC ;
}
@media(max-width: 1279px) {
    .contact .our-promise img.first-image {
        margin-top: -115px;
    }
    .contact .our-promise img.last-image {
        margin-top: 115px;
    }
}
@media(max-width: 1023px) {
    .contact .common-banner {
        padding: 119px 0 116px;
    }
    .contact .common-banner h2 {
        font-size: 36px;
        line-height: 45px;
    }
    #contact-form {
        flex-direction: column;
        margin-bottom: 40px;
    }
    .contact-form .form-right, .contact-form .form-left {
        width: 100%;
    }
    .contact-form .form-right {
        margin-top: 42px;
    }
}
@media(max-width: 767px) {
    .contact .common-banner {
        padding: 55px 51px 39px 5px;
    }
    .contact .common-banner p {
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 12px;
    }
    .contact .common-banner h2 {
        font-size: 24px;
        line-height: 30px;
    }
    .contact .our-promise {
        font-size: 20px;
        line-height: 24px;
    }
    .contact .our-promise .jet-container>div {
        padding: 32px 0 22px;
    }
    .contact .our-promise img {
        width: 22px;
    }
    .contact .our-promise img.first-image {
        margin-top: -32px;
    }
    .contact .our-promise img.last-image {
        margin-top: 32px;
    }
    .contact .contact-info {
        padding: 40px 0;
    }
    .contact .contact-info .jet-container {
        flex-direction: column;
        align-items: center;
    }
    .contact .contact-info .item-list h3 {
        margin-bottom: 13px;
        justify-content: center;
    }
    .contact .contact-info .item-list h3 img {
        width: 30px;
        margin-left: 13px;
    }
    .contact .contact-info .item-list p {
        font-size: 16px;
        line-height: 21px;
        text-align: center;
    }
    .contact .contact-info .item-list:not(:last-child) {
        margin-bottom: 30px;
    }
    .contact .contact-info .item-list a {
        margin: 30px auto 0;
    }
    .contact-form .common-title {
        font-size: 24px;
        line-height: 30px;
    }
    .contact-form .main-description {
        font-size: 16px;
        line-height: 21px;
        margin: 9px 0 20px;
    }
    .contact-form .form-left, .contact-form .form-right {
        width: 100%;
    }
    #contact-form {
        flex-direction: column;
    }
    .contact-form .form-right .talk-joinUs span {
        font-size: 18px;
        line-height: 24px;
    }
    .ninzio-gap.inline-ninzio-clearfix {
        height: 24px;
    }
    .contact-form .form-right .contact-follow a {
        width: 40px;
        height: 40px;
    }
    .contact-form .form-right .contact-follow .li-btn:before, .contact-form .form-right .contact-follow .tw-btn:before {
        background-size: 38px 38px;
        width: 38px;
        height: 38px;
    }
    .contact-form .form-right .contact-follow .li-btn:hover:before, .contact-form .form-right .contact-follow .tw-btn:hover:before {
        background-size: 38px 38px;
    }
}
@media(max-width: 680px) {
    .hbspt-form .form-columns-2 .hs-form-field {
        float: none !important;
        width: 100% !important;
    }
    .hbspt-form .form-columns-2>div:first-child {
        padding-right: 0;
    }
    .hbspt-form .form-columns-2>div:last-child {
        padding-left: 0;
    }
    /* 	.hbspt-form .hs-fieldtype-radio .multi-container {
		margin-top: 35px;
	} */
    .hbspt-form .hs-fieldtype-textarea textarea {
        margin-top: 15px;
    }
    .hbspt-form .hs_submit.hs-submit {
        margin-top: 31px;
    }
    .hbspt-form .hs_submit.hs-submit .hs-button {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .hbspt-form .form-columns-3>div {width: 100% !important; padding: 0 !important;}
}
/* purchase a home ******/
/**** common button******/

.consectetur {
    padding: 69px 0 52px;
    text-align: center;
}
.consectetur p {
    font-size: 36px;
    line-height: 45px;
    color: #1D252D;
    font-weight: bold;
    max-width: 1070px;
    margin: 0 auto 40px
}
.consectetur .buttons a.common-button {
    margin: auto;
    transition: ease all .3s;
}

.purchase.landing-page .banner-box p {
    max-width: 500px;
}

.buy-home {
    padding: 100px 0 90px;
}

.buy-home .home-content {
    display: flex;
    justify-content: space-between;
    margin-top: 76px;
}
.buy-home .home-content .list-item.cols-3 {
    width: 373px;
    min-height: 445px;
}
.buy-home .home-content .list-item.cols-3.cols-2 {
    min-height: 560px;
}

.buy-home .home-content .list-item {
    box-shadow: 0px 2px 26px rgba(166, 172, 183, 0.2);
    border-radius: 2px;
    color: #1D252D;
    padding: 10px 10px 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.buy-home .home-content .list-item .StoryContent h2 {
    font-weight: bold;
    font-size: 24px;
    line-height: 34px;
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
    max-height: initial;
    margin-bottom: 10px;
}
.buy-home .home-content .list-item .StoryContent {
    padding-top: 20px;
    text-align: center;
    padding: 30px 7% 0;
    max-width: 350px;
}

.buy-home .home-content .list-item .StoryContent p {
    font-size: 18px;
    line-height: 24px;
    margin: 10px auto 26px;
}
.buy-home .home-content .list-item .StoryContent .list-list {
    text-align: left;
    color: #1D252D;
    margin-top: 17px;
}
.buy-home .home-content .list-item .StoryContent .list-list li {
    font-size: 18px;
    line-height: 26px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}
.buy-home .home-content .list-item .StoryContent .list-list li:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ADB3BC;
    border-radius: 30px;
    position: absolute;
    left: 0;
    top: 7px;
}
.buy-home .home-content .list-item .StoryContent .list-list li span {
    display: inline-block;
}

.buy-home .home-content .list-item .StoryFrame {
    width: 100%;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
    margin-right: 0;

}
.buy-home .home-content .list-item .StoryFrame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.buy-home .StoryLink {
    position: absolute;
    bottom: 45px;
}
.purchase .our-clients .clients-data li .clients-detail {
    background: rgba(255, 255, 255, 0.9);
}
.how-we-work {
    padding: 70px 0 84px;
}
.how-we-work .common-title {
    margin-bottom: 75px;
}
.refinance .banner-box {
    top: 76px;
}

.learning-hub {
    padding: 77px 0 90px;
}
.hub-list {
    margin-top: 50px;
    --grid-column-gap: 56px;
    --grid-row-gap: 40px;
}

.hub-list>div {
    display: grid;
    grid-column-gap: var(--grid-column-gap);
    grid-row-gap: var(--grid-row-gap);
    grid-template-columns: repeat(3,1fr);
}
.hub-list .cols-3 {
    padding: 10px 10px 20px 10px;
    transition: ease all .3s;
}
.hub-list .cols-3:hover {
    background: #FFFFFF;
    box-shadow: 0px 2px 26px rgb(166 172 183 / 20%);
    border-radius: 2px;
}
.hub-list .feature-image {
    max-height: 193px;
}
.hub-list .feature-image img {
    display: initial;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hub-list h2.post-title {
    font-size: 18px;
    margin-bottom: 6px;
}
/* .hub-list ul li {
	position: relative;
}
.hub-list ul li a {
	position: absolute;
    z-index: 200;
    left: 0;
    right: 0;
	bottom: 0;
    top: 35%;
    background: linear-gradient(
180deg
, rgba(23, 30, 51, 0) 0%, #171E33 100%);
	transition: all 0.3s;
}
.hub-list ul li:hover a {
	top: 0;
	background: linear-gradient(
180deg
, rgba(23, 30, 51, 0) 0%, #171E33 100%);
	transition: all 0.3s;
}
.hub-list ul li h2 {
	position: absolute;
	bottom: 36px;
	font-size: 18px;
	line-height: 26px;
	color: #FFFFFF;
	left: 20px;
	right: 20px;
	font-weight: normal;
	max-height: 49px;
	overflow: hidden;
	word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.hub-list ul li img {
	display: initial;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hub-list ul li label {
	position: absolute;
	bottom: 12px;
	left: 20px;
	right: 20px;
	font-size: 14px;
	line-height: 19px;
	color: #E3E5E9;
	margin-bottom: 0;
}
.hub-list ul li label span {
	color: #ADB3BC;
} */
@media(max-width: 1279px) {
    .buy-home .StoryLink {
        bottom: 28px;
    }
}
@media(max-width: 1024px) {
    .hub-list .cols-3 {
        background: #FFFFFF;
        box-shadow: 0px 2px 26px rgb(166 172 183 / 20%);
        border-radius: 2px;
    }
}
@media(max-width: 1023px) {
    .buy-home {
        padding: 64px 0 90px;
    }
    .buy-home .home-content {
        flex-direction: column;
    }
    .buy-home .home-content .list-item.cols-3, .buy-home .home-content .list-item.cols-3.cols-2 {
        width: 100%;
        min-height: auto;
    }
    .buy-home .home-content .list-item:not(:last-child) {
        margin-bottom: 30px;
    }
    .buy-home .home-content .list-item a {
        position: initial;
    }
    .buy-home .home-content .list-item .StoryContent {
        padding: 16px 5px 0 5px;
    }
    .buy-home .home-content .list-item .StoryContent .list-list {
        margin-bottom: 26px;
    }
    .buy-home .common-title {
        text-align: center;
    }
    .hub-list>div {
        grid-template-columns: repeat(1,1fr);
    }
    .hub-list .feature-image {
        max-height: 373px;
    }
    .learning-hub .common-title {
        text-align: center;
    }

}
@media(max-width: 879px) {
    .how-we-work .common-title {
        text-align: center;
    }
}

@media(max-width: 680px) {
    .buy-home {
        padding: 40px 0 26px;
    }
    .buy-home .common-title {
        max-width: 305px;
        margin: auto;
    }
    .buy-home .home-content {
        margin-top: 20px;
    }
    .buy-home .home-content .list-item .StoryContent .list-list li {
        font-size: 16px;
        line-height: 22px;
    }
    .buy-home .home-content .list-item {
        padding: 10px 10px 20px;
    }
    .buy-home .home-content .list-item:not(:last-child) {
        margin-bottom: 15px;
    }
    .buy-home .home-content .list-item .StoryContent {
        padding: 16px 0 0;
        max-width: 296px;
    }
    .buy-home .home-content .list-item .StoryContent p {
        margin: 8px auto 18px;
        font-size: 16px;
        line-height: 22px;
    }
    .buy-home .home-content .list-item .StoryContent h2 {
        font-size: 18px;
        line-height: 24px;
    }
    .how-we-work {
        padding: 49px 0 52px
    }
    .how-we-work .common-title {
        max-width: 285px;
        margin: 0 auto 46px;
    }
    .learning-hub {
        padding: 50px 0 60px;
    }
    .hub-list {
        margin-top: 20px;
        --grid-row-gap: 20px;
    }
    .hub-list h2.post-title {
        margin-bottom: 13px;
    }

    .consectetur {
        padding: 40px 11px 40px;
    }
    .consectetur p {font-size: 20px;line-height: 28px;max-width: 323px;margin: 0 auto 30px;}
    .consectetur .buttons {padding: 0 8px;}
    .landing-info {
        padding: 40px 0;
    }
    .landing-info .info {
        font-size: 20px;
        line-height: 28px;
    }
    .landing-info .info.uk {
        padding: 0 10px;
    }
    .landing-info .info.france {padding: 0;}
    .landing-info .info-name {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 2px;
    }
    .landing-info .info-sub {
        font-size: 12px;
        line-height: 16px;
    }
}
@media(max-width: 580px) {
    .common-button {
        width: 100% !important;
        height: 45px !important;
    }
    .cp-btn {
        width: 100% !important;
    }
}
/* case study *****/
p.study-title {
    font-weight: bold;
    font-size: 48px;
    line-height: 56px;
    max-width: 1009px;
    color: #fff;
    margin: 16px 0 50px;
}
.case-study .jet-banner {
    background: url(/wp-content/uploads/2021/03/resources-banner.jpg) center center/cover;
}
.main-page .jet-banner {
    padding: 180px 0 127px;
    min-height: auto;
}

.banner-box2 label {
    font-size: 22px;
    line-height: 28px;
    color: #E3E5E9;
    text-transform: uppercase;
}

.case-study .homepage-text {
    display: none;
}
.case-study .pt-cv-content-item {
    padding: 10px 10px 19px;
}
.pt-cv-view .pt-cv-ifield {
    position: relative;
}
.pt-cv-view .pt-cv-ifield>a {
    position: relative;
    display: block;
    max-height: 226px;
    overflow: hidden;
}
.pt-cv-title a {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #1D252D;
}
.pt-cv-content {
    font-size: 16px;
    line-height: 22px;
    color: #656C77;
}
.case-study .pt-cv-view .pt-cv-ifield>a img {
    height: 226px;
    width: 100%;
}
@media(max-width: 767px) {
    .banner-box2 {
        padding: 0 5px;
    }
}
@media(max-width: 680px) {
    .banner-box2 label {
        font-size: 16px;
        line-height: 22px;
    }
    p.study-title {
        font-size: 24px;
        line-height: 34px;
        margin: 12px 0 50px;
    }
    .main-page .jet-banner {
        padding: 81px 0 25px;
    }

}
@media(max-width: 480px) {
    .main-page .jet-banner {
        padding: 70px 0 60px;
    }
}

/* case study category */
.color-accent, .category .homepage-text {
    display: none;
}
.category-detail {
    background-color: #f2f2f2;
    padding: 45px 0 81px;
}
.category-detail .jet-container {
    --grid-column-gap: 30px;
    --grid-row-gap: 41px;
}
.category-detail .category-detail-main {
    display: grid;
    grid-column-gap: var(--grid-column-gap);
    grid-row-gap: var(--grid-row-gap);
    grid-template-columns: repeat(3,1fr);
}
.category-detail .category-detail-main .type-post {
    padding: 10px 10px 20px 10px;
}
.category-detail .category-detail-main .type-post:hover {
    background: #FFFFFF;
    box-shadow: 0px 2px 26px rgba(166, 172, 183, 0.2);
    border-radius: 2px;
}

.category-title {
    color: #1D252D;
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    margin-top: 45px;
    margin-bottom: 40px;
}
.search .homepage-text {
    background: #fff;
}
.search .no-result {
    font-weight: bold;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    color: #000000;
    margin-top: 60px;
    margin-bottom: 40px;
}
.result-spacing {
    height: 60px;
}
.no-result #searchform {
    max-width: 370px;
    margin: auto;
    padding: 0 10px;
}
@media(max-width:1024px) {
    .category-detail .category-detail-main .type-post {background: #FFFFFF;box-shadow: 0px 2px 26px rgb(166 172 183 / 20%); border-radius: 2px;}
}
@media(max-width:1023px) {
    .category-detail .category-detail-main {
        grid-template-columns: repeat(2,1fr);
    }
}
@media(max-width:767px) {
    .category-detail {
        padding: 40px 0 50px;
    }
    .category-detail .category-detail-main {
        grid-template-columns: repeat(1,1fr);
    }
    .category-detail .jet-container {
        --grid-row-gap: 15px;
    }
    .archive-title {
        font-size: 16px;
        line-height: 22px;
    }
    .category-title {
        margin-top: 34px;
        margin-bottom: 30px;
    }
    .search .no-result {
        font-size: 18px;
        line-height: 24px;
        margin-top: 0;
        margin-bottom: 0;
    }
    .result-spacing {
        height: 45px;
    }
}
/* case study detail */
.article-p {
    margin-top: 30px;
}
.article-p a {
    font-size: 18px;
    line-height: 26px;
    color: #1D252D;
    margin-bottom: 30px;
}
.article-p a:hover {
    text-decoration: underline !important;
}

.post-template-default.single-post .feature-image {
    display: none;
}
.case-study-detail .jet-banner {
    padding: 152px 0 35px;

}
.case-study-detail1 p.study-title, .case-study-detail3 p.study-title  {
    max-width: 857px;
}
.case-study-detail2 p.study-title {
    max-width: 740px;
}
.case-study-detail.case-study-detail1 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/01/homepage-case-2.jpg) center center/cover;
}
.case-study-detail.case-study-detail2 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/01/homepage-case-1.jpg) center center/cover;
}
.case-study-detail.case-study-detail3 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/01/homepage-case-3.jpg) center center/cover;
}
.case-study-detail.case-study-detail4 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/1-1-min-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail5 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/1-2-min-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail6 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/1-3-min-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail7 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/1-4-min-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail8 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/1-5-min-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail9 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/2-3-min-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail10 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/2-4-min-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail11 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/2-5-min-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail12 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/2-6-min-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail13 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/01/c1-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail14 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/01/C2-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail15 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/C3-min.jpg) center center/cover;
}
.case-study-detail.case-study-detail16 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/C4.jpg) center center/cover;
}
.case-study-detail.case-study-detail17 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/01/c5-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail18 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/01/c7-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail19 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/01/c8-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail20 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/01/c10-scaled.jpg) center center/cover;
}

.case-study-detail.case-study-detail21 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/01/c11-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail22 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/Canada.jpg) center center/cover;
}
.case-study-detail.case-study-detail23 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/London.jpg) center center/cover;
}
.case-study-detail.case-study-detail24 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/Sydney-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail26 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/c12-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail27 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/c13-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail28 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/c14-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail29 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/c15-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail30 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/c16-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail31 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/c17-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail32 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/c18-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail33 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/c19-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail34 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/c20-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail35 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/c21.jpg) center center/cover;
}
.case-study-detail.case-study-detail36 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/c22-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail37 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/C23.jpg) center center/cover;
}
.case-study-detail.case-study-detail38 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/c24-scaled.jpg) center center/cover;
}
.case-study-detail.case-study-detail39 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/c25-scaled.jpg) center center/cover;
}

.case-study-detail.article-detail2 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/a1-1-scaled.jpg) center center/cover;
}
.case-study-detail.article-detail3 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/a1-2-scaled.jpg) center center/cover;
}
.case-study-detail.article-detail4 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/a1-3-scaled.jpg) center center/cover;
}
.case-study-detail.article-detail5 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/a1-4-scaled.jpg) center center/cover;
}
.case-study-detail.article-detail6 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/a6-scaled.jpg) center center/cover;
}
.case-study-detail.article-detail7 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/a7-scaled.jpg) center center/cover;
}
.case-study-detail.article-detail8 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/a8-scaled.jpg) center center/cover;
}
.case-study-detail.article-detail9 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/a9-scaled.jpg) center center/cover;
}
/* .case-study-detail.article-detail10 .jet-banner {
	background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/a10.png) center center/cover;
} */
.case-study-detail.article-detail11 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/a11-scaled.jpg) center center/cover;
}
.case-study-detail.article-detail12 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/a12-scaled.jpg) center center/cover;
}
.case-study-detail.article-detail13 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/a13-scaled.jpg) center center/cover;
}
.case-study-detail.article-detail14 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/a14-scaled.jpg) center center/cover;
}
.case-study-detail.article-detail15 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/a15-scaled.jpg) center center/cover;
}
.case-study-detail.article-detail16 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/a16-scaled.jpg) center center/cover;
}
.case-study-detail.article-detail17 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/a17-scaled.jpg) center center/cover;
}
.case-study-detail.article-detail18 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/a18-scaled.jpg) center center/cover;
}
.case-study-detail.article-detail19 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/a19-scaled.jpg) center center/cover;
}
.case-study-detail.mortgage-iq-detail1 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/m1-scaled.jpg) center center/cover;
}
.case-study-detail.mortgage-iq-detail2 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/m2-scaled.jpg) center center/cover;
}
.case-study-detail.mortgage-iq-detail3 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/m3-scaled.jpg) center center/cover;
}
.case-study-detail.mortgage-iq-detail4 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/m4-scaled.jpg) no-repeat center center/cover;
}
.case-study-detail.mortgage-iq-detail5 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/m5-scaled.jpg) center center/cover;
}
.case-study-detail.mortgage-iq-detail10 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/m1-1-scaled.jpg) center center/cover;
}
.case-study-detail.mortgage-iq-detail11 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/m2-1-scaled.jpg) center center/cover;
}
.case-study-detail.mortgage-iq-detail12 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/m3.jpg) center center/cover;
}
.case-study-detail.mortgage-iq-detail13 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/m4-1-scaled.jpg) center center/cover;
}
.case-study-detail.mortgage-iq-detail14 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/m5-1-scaled.jpg) center center/cover;
}
.case-study-detail.mortgage-iq-detail15 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/m6-scaled.jpg) center center/cover;
}
.case-study-detail.mortgage-iq-detail16 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/m7-scaled.jpg) center center/cover;
}
.case-study-detail.mortgage-iq-detail17 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/m8-scaled.jpg) center center/cover;
}
.case-study-detail.mortgage-iq-detail18 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/m9-1.jpg) center center/cover;
}
.case-study-detail.mortgage-iq-detail19 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/m10-scaled.jpg) center center/cover;
}
.case-study-detail.mortgage-iq-detail20 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/m11-scaled.jpg) center center/cover;
}
.case-study-detail.mortgage-iq-detail21 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/m12-scaled.jpg) center center/cover;
}
.case-study-detail.mortgage-iq-detail22 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/m13-scaled.jpg) center center/cover;
}
.case-study-detail.mortgage-iq-detail23 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/m14-scaled.jpg) center center/cover;
}
.case-study-detail.mortgage-iq-detail24 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/02/m15-scaled.jpg) center center/cover;
}
.case-study-detail.picture1 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/sbri-banner.jpg) center center/cover;
}
.banner-box3 .top-label {
    display: flex;
    flex-flow: wrap;
}
.banner-box3 .top-label:nth-child(2) {margin-top: 10px;}
.case-study-detail.france1 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/france-1.jpg) center center/cover;
}
.case-study-detail.france2 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/france-2.jpg) center center/cover;
}
.case-study-detail.france3 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/france-3.jpg) center center/cover;
}
.case-study-detail.uk1 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/uk-1.jpg) center center/cover;
}
.case-study-detail.uk2 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/uk-2.jpg) center center/cover;
}
.case-study-detail.uk3 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/uk-3.jpg) center center/cover;
}
.case-study-detail.canada1 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/canada-1.jpg) center center/cover;
}
.case-study-detail.canada2 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/canada2.jpeg) center center/cover;
}
.case-study-detail.canada3 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/canada-3.jpg) center center/cover;
}
.case-study-detail.as1 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/as-1.jpg) center center/cover;
}
.case-study-detail.as2 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/as-2.jpg) center center/cover;
}
.case-study-detail.as3 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/as-3.jpg) center center/cover;
}
.case-study-detail.sa1 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/sa-1.jpg) center center/cover;
}
.case-study-detail.sa2 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/sa-2.jpg) center center/cover;
}
.case-study-detail.sa3 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/sa-3.jpg) center center/cover;
}

.banner-box3 .top-label label {font: 14px/19px "Helvetica";background-color: rgba(201,41,51,0.6);color: #EFF2F6;border-radius: 17px;margin-right: 10px;padding: 2px 7px;}
.banner-box3 .bottom-label {
    margin-top: 40px;
    margin-bottom: 17px;
    display: flex;
}
.banner-box3 .bottom-label label { font: 16px/22px "Helvetica";color: #EFF2F6;}
.banner-box3 .bottom-label label:first-child {
    border-right: 1px solid #EFF2F6;
    margin-right: 8px;
    padding-right: 8px;
}
.banner-box3 .detail-icon a {
    display: inline-block;
    margin-right: 12px;
}
.banner-box3 .detail-icon .li-btn:before{
    content: "";
    display: inline-block;
    background: url(/wp-admin/images/transparent-in.svg);
    background-size: 32px 32px;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.banner-box3 .detail-icon .tw-btn:before{
    content: "";
    display: inline-block;
    background: url(/wp-admin/images/transparent-twitter.svg);
    background-size: 32px 32px;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.post-template-default .featured-media {
    display: none;
}
.posts-info {
    display: flex;
}
.posts-info .info-left {
    width: 69%;
    margin-right: 50px;
    color: #1D252D;
    margin-top: 62px;
}
.Webinar {padding-top: 48px;}
.video-title {font-weight: bold; font-size: 24px; line-height: 34px; color: #1D252D;margin-top: 20px;}
.video-label {display: flex; margin: 8px 0 14px; }
.video-label label {color: #ADB3BC; font: 14px/19px "Helvetica";}
.video-label label:first-child {border-right: 1px solid #ADB3BC; margin-right: 9px; padding-right: 9px; }
.video-description { color: #4C5158; font: 16px/22px "Helvetica";}
.Webinar .posts-info .info-right {width: 325px;}
.Webinar .posts-info .info-left {margin-top: 0;}
.Webinar .other-case {margin-top: 80px;}

.posts-info .info-left .left-list p:not(:last-child) {margin-bottom: 26px;}
.posts-info .info-left .left-list:not(:last-child) {margin-bottom: 38px;}
.posts-info .info-left .left-list ul {font: 18px/26px "Helvetica";margin:0 0 26px 20px; }
.posts-info .info-left .left-list ul li {position: relative;padding-left: 20px;}
.posts-info .info-left .left-list ul li:before {content: "";display: inline-block;width: 6px;height: 6px;background-color: #000;border-radius: 30px;position: absolute;left: 0;top: 10px;}

.posts-info .info-left .left-list h3 {font-weight: bold;font-size: 24px;line-height: 30px;margin-bottom: 6px;}
.posts-info .info-left .left-list h4 {font-weight: bold;font-size: 26px;line-height: 34px;margin-bottom: 6px;}
.posts-info .info-left .left-list p {font: 18px/26px "Helvetica";}
.posts-info .info-left .left-list table {
    margin-top: 10px;
    margin-bottom: 22px;
    border: 1px solid #E3E5E9;
    overflow: auto;
}

.posts-info .info-left .left-list table tr td {
    border: 0;
    border-bottom: 1px solid #E3E5E9;
    word-break: initial;
}
.posts-info .info-left .left-list table.mobile-table {
    display:none;
}
.posts-info .info-left .left-list table.mobile-table tr td:first-child,
.posts-info .info-left .left-list table.other-table tr td:first-child,
.posts-info .info-left .left-list table.list-table tr td:first-child {
    font-size: 14px;
    line-height: 19px;
    color: #656C77;
}
.posts-info .info-left .left-list table.mobile-table tr td:last-child,
.posts-info .info-left .left-list table.other-table tr td:last-child,
.posts-info .info-left .left-list table.list-table tr td:last-child {
    font-size: 16px;
    line-height: 22px;
    color: #1D252D;
    text-align: right;
}
.posts-info .info-left .left-list a {color: #2955B4;}

.posts-info .info-left .left-list .table-left, .posts-info .info-left .left-list .table-right {
    width: 48%; float:left;
}
.posts-info .info-left .left-list .table-left {
    margin-right: 2%;
}
.left-list table .first-line {
    font-size: 16px;
    line-height: 22px;
    color: #656C77;
}
.left-list table .second-line {
    font-size: 18px;
    line-height: 26px;
}

.posts-detail-content .posts-info .info-right {
    width: 325px;
    margin-top: -60px;
}
.info-right .related-articles {
    background: #E6DABC;
    box-shadow: 0px 2px 26px rgba(166, 172, 183, 0.2);
    border-radius: 2px 2px 0 0;
    padding: 18px 25px;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #1D252D;
}
.info-right .wp-block-group {
    margin: 0!important;
    background: #FFFFFF;
    box-shadow: 0px 2px 26px rgba(166, 172, 183, 0.2);
    border-radius: 2px;
}
.info-right .wp-block-latest-posts {
    margin-top: 0px!important;
    margin-bottom: 0 !important;
    padding: 30px 25px;
    background: #FFFFFF;
    box-shadow: 0px 2px 26px rgba(166, 172, 183, 0.2);
    border-radius: 0 0 2px 2px;
}
.info-right .wp-block-latest-posts li:not(:last-child) {
    border-bottom: 1px solid #EFF2F6;
    padding-bottom: 15px;
    margin-bottom: 18px;
}
.info-right .wp-block-latest-posts li {
    line-height: 22px;
}

.info-right .wp-block-latest-posts li a {
    font-size: 16px;
    line-height: 22px;
    color: #1D252D;
    margin-bottom: 4px;
    font-weight: normal;
}
.info-right .wp-block-latest-posts li .wp-block-latest-posts__post-date {
    font-size: 14px;
    line-height: 19px;
    color: #656C77;
    font-weight: normal;
}
.cameron {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F7F8FB;
    padding: 42px 0 37px;
    color: #1D252D;
    text-align: center;
    margin-top: 60px;
}
.cameron.cameron2 {
    display: none;
}
.cameron .cameron-line1 {
    max-width: 776px;
    font-size: 22px;
    line-height: 28px;
    padding: 0 23px;
}
.cameron .cameron-line2 {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    margin: 24px 0 6px;
}
.cameron .cameron-line3 {
    font-size: 14px;
    line-height: 19px;
    color: #656C77;
}
.other-case {
    background-color: #F2F2F2;
    padding: 62px 0 73px;
    margin-top: 58px;
}
.case-title {
    font-weight: bold;
    font-size: 36px;
    line-height: 45px;
    color: #1D252D;
}
.other-case .other-case-item ul{
    display: grid;
    grid-column-gap: var(--grid-column-gap);
    grid-row-gap: var(--grid-row-gap);
    grid-template-columns: repeat(2,1fr);
    margin-top: 37px;
}
.other-case .other-case-item  {
    --grid-column-gap: 20px;
    --grid-row-gap: 20px;
}

.other-case-item ul li {
    display: flex;
    padding: 10px;
    border-radius: 2px;
    width: 100%;
    min-height: 155px;
    position: relative;
    background-color: #fff;
}
.other-case-item ul li:hover {
    box-shadow: 0px 2px 26px rgba(166, 172, 183, 0.2);
}
.find-more {
    padding: 49px 0 50px;
}
.find-more .jet-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.find-more .more-left p {
    font-size: 22px;
    line-height: 28px;
    color: #656C77;
    max-width: 620px;
    margin-top: 12px;
}
.more-button a {
    width: 220px;
    height: 50px;
    background: #D6001C;
    border-radius: 2px;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    padding: 0;
    border-radius: 2px;
    text-transform: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    cursor: pointer;
}
.more-button a:hover {
    background: #FFFFFF;
    border: 1px solid #D6001C;
    color: #D6001C;
}
@media (min-width: 1024px) {
    .case-study-detail .jet-banner {
        min-height: 460px;
    }
}
@media(max-width: 1023px) {
    .posts-info {
        flex-direction: column;
        padding: 0 5px;
    }
    .posts-detail-content .posts-info .info-right {
        margin-top: 40px;
        width: 100%;
    }
    .Webinar .posts-info .info-right {margin-top: 50px; width: 100%;}
    .other-case-item ul li {
        flex-direction: column;
        padding-bottom: 15px;
    }
    .posts-info .info-left {
        margin-right: 0;
        width: 100%;
    }
}
@media(max-width: 767px) {
    .case-study-detail .jet-banner {
        padding: 100px 0 13px;
    }
    .article-p {
        margin-top: 20px;
    }
    .article-p a {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 17px;
    }
    .banner-box3 {
        padding: 0 5px;
    }
    .banner-box3 .top-label:nth-child(2) {
        margin-top: 5px;
    }
    .banner-box3 .top-label label {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 5px;
    }
    .banner-box3 .bottom-label {
        margin-top: 23px;
        margin-bottom: 7px;
    }
    .case-title {
        font-size: 24px;
        line-height: 30px;
    }
    .other-case .other-case-item ul {
        grid-template-columns: repeat(1,1fr);
        margin-top: 20px;
    }
    .posts-info .info-left {
        margin-top: 30px;
    }
    .posts-info .info-left .left-list h3 {font-size: 20px;line-height: 24px;}
    .posts-info .info-left .left-list h4 {font-size: 22px;line-height: 28px;}
    .posts-info .info-left .left-list p {
        font-size: 16px;
        line-height: 22px;
    }
    .posts-info .info-left .left-list:not(:last-child) {
        margin-bottom: 25px;
    }
    .posts-detail-content .posts-info .info-right {
        margin-top: 36px;
    }
    .info-right .related-articles {
        font-size: 18px;
        line-height: 24px;
    }
    .info-right .wp-block-latest-posts {
        padding: 30px 25px 37px;
    }
    .other-case-item ul li {
        background-color: #fff;
        box-shadow: 0px 2px 26px rgba(166, 172, 183, 0.2);
    }
    .other-case {
        padding: 35px 0;
        margin-top: 40px;
    }
    .find-more {
        padding: 28px 0 48px;
    }
    .find-more .jet-container {
        flex-direction: column;
        text-align: center;
        padding: 0 44px;
    }
    .more-button a {
        width: 172px;
        margin-top: 20px;
    }
    .posts-info .info-left .left-list table.web-table, .cameron.cameron1 {
        display: none;
    }
    .posts-info .info-left .left-list table.mobile-table {
        display: inline-table;
    }
    .cameron.cameron2 {
        display: flex;
    }
    .cameron {
        margin-top: 36px;
        padding: 23px 0 13px;
    }
    .cameron .cameron-line1 {
        font-size: 19px;
        line-height: 26px;
    }
    .cameron .cameron-line3 {
        font-size: 12px;
        line-height: 16px;
    }
    .find-more .more-left p {
        font-size: 18px;
        line-height: 26px;
    }
    .case-study-detail1 p.study-title, .case-study-detail3 p.study-title, .case-study-detail2 p.study-title{
        max-width: 700px;
    }

    .Webinar {padding-top: 20px;}
    .video-title {font-size: 20px;line-height: 28px;margin-top: 13px;}
    .video-label {margin: 10px 0 18px}
    .video-label label {font-size: 14px;line-height: 19px;}
    .video-description {font-size: 16px;line-height: 22px;}
    .Webinar .other-case {margin-top: 30px;}
    .posts-info .info-left .left-list .table-left, .posts-info .info-left .left-list .table-right {
        width: 100%; float:none;
    }
    .posts-info .info-left .left-list .table-left {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

.post-separator {
    display: none;
}
.case-study .banner-box2 {
    max-width: 1102px;
}
.study-main {
    padding-top: 72px;
    padding-bottom: 80px;
    background-color: #f2f2f2;
}
.study-main .main-content {
    display: flex;
    width: 100%;
}
.study-main .main-left {
    margin-right: 45px;
    --grid-column-gap: 41px;
    --grid-row-gap: 41px;
}
.main-left .main-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 23px;
    padding: 0 10px;
}
.main-left .main-bottom {
    display: grid;
    grid-column-gap: var(--grid-column-gap);
    grid-row-gap: var(--grid-row-gap);
    grid-template-columns: repeat(2,1fr);
}

.main-left .main-top h2, .main-right h2 {
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    color: #1D252D;
}
.main-left .cols-2 {
    padding: 10px 10px 20px 10px;
    position: relative;
    transition: ease all .3s;
}

.main-left .cols-2:hover {
    background: #FFFFFF;
    box-shadow: 0px 2px 26px rgba(166, 172, 183, 0.2);
    border-radius: 2px;
}
.feature-image {
    position: relative;
    display: block;
    max-height: 226px;
    overflow: hidden;
}
.feature-image .video-play {
    position: absolute;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    z-index: 100;
}
.feature-image .video-play img {
    width: auto;
}
.feature-image img {
    width: 100%;
}
.feature-image .post-category {
    position: absolute;
    top: 10px;
    right: 15px;
    background-color: rgba(20,40,103,0.7);
    border-radius: 17px;
    padding: 2px 8px;
    margin-bottom: 0;
}
.feature-image .post-category a {
    font-size: 14px;
    line-height: 19px;
    color: #fff;
}
.feature-image .mask {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    top: 35%;
    background: linear-gradient( 180deg , rgba(0,0,0, 0) 10%, #000 100%);
    transition: all 0.3s;
}
.feature-image .post-arthur { font: 14px/19px "Helvetica";
    position: absolute;
    bottom: 10px;
    color: #E3E5E9;
    left: 15px;
    margin-bottom: 0;
    z-index: 2;
}
.feature-image .post-arthur span {
    color: #ADB3BC;
}
h2.post-title  {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    height: 50px;
    overflow: hidden;
}
h2.post-title a {
    color: #1D252D;
    cursor: pointer;
}
div.post-excerpt p {font: 16px/22px "Helvetica";color: #656C77;margin: 8px 0 15px;height: 42px;overflow: hidden;}

.feature-content {
    padding: 16px 10px 0;
}
.study-main .main-right .all-category {margin-top: 40px;background-color: #fff;padding: 11px 27px 13px;font: 16px/22px "Helvetica";}

.main-right .all-category a { color: #1D252D; display: block; padding: 7.5px 0;}
.main-right .all-category a:hover {
    color: #C92933;
}
.category-line {
    border-bottom: 0.5px solid #E3E5E9;
    padding-bottom: 15px !important;
}
.page-id-18 .homepage-text {
    background-color: #fff;
}
#searchform {
    width: 42%;
}
#searchform>div{
    display: flex;
    border-bottom: 0.5px solid #ADB3BC;
    padding-bottom: 11px;padding-right: 10px;
}

#searchform input {
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0;
    font: 16px/22px "Helvetica";
}
#searchform input::placeholder {color: #ADB3BC;}
#searchform input:::-webkit-input-placeholder {color: #ADB3BC;}

#searchform input::-ms-input-placeholder {color: #ADB3BC;}

#searchform input:::-moz-placeholder {color: #ADB3BC;}
#searchform div p {
    position: relative;
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0;
}

#searchform div p:after {
    display: inline-block;
    content: "";
    background: url(/wp-admin/images/magnifier.svg) no-repeat;
    background-size: 17px;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
#searchsubmit {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
/*
category select */
.select_box {
    color: #1D252D;
    position: relative;
    cursor: default;
    width: 100%;
    font: 18px/26px "Helvetica";
    border: 1px solid #817D8B;
    box-sizing: border-box;
    border-radius: 4px;
    background-color: rgba(255,255,255,0.5);
    margin-bottom: 28px;
    padding: 18px 22px 14px 16px;
}

.selet_open {
    display: block;
    height: 10px;
    pointer-events: none;
    transform: rotate(-45deg);
    width: 12px;
    position: absolute;
    right: 23px;
    top: 26px;
}

.selet_open::before, .selet_open::after {
    content: "";
    display: block;
    position: absolute;
    bottom: calc(50% - 0.1rem);
    left: 0;
    background-color: #656C77;
}
.selet_open::before {
    height: 10px;
    width: 2px;
}
.selet_open::after {
    height: 2px;
    width: 10px;
}
.option {
    background: #FFFFFF;
    box-shadow: 0px 2px 26px rgba(166, 172, 183, 0.2);
    border-radius: 4px;
    position: absolute;
    top: 59px;
    left: -1px;
    z-index: 3;
    overflow: hidden;
    display: none;
    width: 100%;
    padding: 16px 17px 20px;
}
.option a {display: block;font: 18px/26px "Helvetica";color: #1D252D;}
.option a:not(:last-child) {
    margin-bottom: 10px;
}
.option a:hover {
    color: #C92933;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}
.pagination .current {
    width: 35px;
    height: 35px;
    background-color: #2F2E2D;
    border-radius: 38px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    margin: 0 14px;
    font: 18px "Helvetica";
}
.pagination a {
    font: 18px "Helvetica";
    color: #2F2E2D;
    margin: 0 14px;
    outline: 0;
}
.pagination .prev {
    display: inline-block;
    height: 10px;
    cursor: pointer;
    transform: rotate(45deg);
    width: 10px;
    position: relative;
}
.pagination .prev:before,  .pagination .prev:after,  .pagination .next:after, .pagination .next:before {
    content: "";
    display: inline-block;
    background-color: currentColor;
    bottom: calc(50% - 0.1rem);
    left: 0;
    position: absolute;
    bottom: 0;
}
.pagination .prev:before, .pagination .next:before{
    height: 10px;
    width: 2px;
}

.pagination .prev:after, .pagination .next:after {
    width: 10px;
    height: 2px;
}
.pagination .next {
    display: inline-block;
    height: 10px;
    cursor: pointer;
    transform: rotate(-135deg);
    width: 10px;
    position: relative;
}
.search-results .homepage-text {
    display: none;
}
@media(min-width: 1024px) {
    .mobile-category {
        display: none;
    }
}
@media(min-width: 768px) {
    .study-main .main-left {
        width: 76.9%;
    }
    .study-main .main-right {
        width: 15.4%;
    }
}
@media (max-width: 1279px) {
    .feature-image {
        max-height: 177px;
    }
}
@media (max-width: 1024px) {
    .main-left .cols-2 {
        background: #FFFFFF;
        box-shadow: 0px 2px 26px rgba(166, 172, 183, 0.2);
        border-radius: 2px;
    }
}
@media (max-width: 1023px) {
    .study-main .main-content {
        flex-direction: column;
    }
    .study-main .main-left {
        width: 100%;
    }
    .study-main .main-right{
        display: none;
    }
}
@media(max-width: 767px) {
    .study-main {
        padding: 22px 0 61px;
    }
    .main-left .main-bottom {
        grid-template-columns: repeat(1,1fr);
    }
    .feature-image {
        max-height: 373px;
    }
    .study-main .main-left {
        --grid-row-gap: 15px;
    }
    .main-left .main-top {
        flex-flow: column;
        padding: 0;
        margin-bottom: 32px;
    }
    .main-left .main-top h2 {
        margin-bottom: 28px;
    }

    div.post-excerpt p {
        margin: 12px 0 15px;
    }
    .pagination {
        margin-top: 40px;
    }
    #searchform {
        width: 100%;
    }
}
@media(max-width: 480px) {
    .pagination a {margin: 0 8px;font-size: 15px;}
    .pagination .current {width: 26px;height: 26px; margin: 0 8px;font-size: 15px;}
}
/* case study serach */


/*
about page */

.about .jet-banner {
    background: url(/wp-content/uploads/2022/04/AMGMG-01-min-1-1size.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 150px 0 150px;
}
.about .our-company {
    padding: 50px 0 79px;
    background: url(/wp-content/uploads/2021/03/story-backImage.png) center center/cover;
}

.h2-title {
    font-weight: bold;
    font-size: 36px;
    line-height: 45px;
    color: #1D252D;
    margin-bottom: 20px;
}
.our-company .our-company-content {
    max-width: 766px;
}
.h2-description {font: 16px/22px "Helvetica";color: #1D252D;	}
.about .h2-description{
    margin-top: 24px;
}
.about .jet-container {
    display: flex;
    flex-direction: column;
}
.about p.study-title {
    max-width: 737px;
    font-size: 36px;
    line-height: 45px;
}

.our-story {
    padding: 100px 0 100px;
    font-size: 36px;
    line-height: 45px;
}
.our-story .our-story-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.our-story .our-story-content .content-left {
    width: 502px;
    margin-right: 98px;
}
@media(min-width: 1024px) {
    .our-story .our-story-content .content-left .mobile-image {
        display: none;
    }
}
.our-story .our-story-content .content-right {
    width: 600px;
}
.our-story-content .h2-title {
    margin-bottom: 30px;
}
.page-id-19 .homepage-text {
    background-color: #fff;
}
.our-founders {
    padding: 55px 0 84px;
}
.our-founders .common-title {
    text-align: center;
}
.our-founders small {
    font-weight: normal;font: 22px/28px "Helvetica";
    color: #656C77;
    margin: 16px 0 54px;
    text-align: center;
}
.our-founders .our-founders-content {
    display: grid;
    grid-column-gap: var(--grid-column-gap);
    grid-row-gap: var(--grid-row-gap);
    grid-template-columns: repeat(2, 1fr);
    --grid-column-gap: 34px;
    --grid-row-gap: 64px;
    text-align: left;
}
.our-founders .our-founders-content>div {
    background-color: #fff;
    font-size: 18px;
    line-height: 26px;
    color: #1D252D;
    padding: 25px 40px 74px;
}
.our-founders-content .founder-top {
    display: flex;
}
.our-founders-content .founder-top .founder-image {
    width: 33%;
    margin-top: -57px;
}
.our-founders-content .founder-top .founder-info {
    margin-left: 39px;
    margin-bottom: 20px;
}
.our-founders-content .founder-top .founder-info h3 {
    font-weight: bold;
    font-size: 24px;
    line-height: 34px;
}
.our-founders-content .founder-top .founder-info p { font: 16px/22px "Helvetica";
    color: #656C77;
    margin: 4px 0 18px;
}
.our-founders-content .founder-top .founder-contact {
    display: flex;
    width: 86px;
    justify-content: space-between;
}
.founder-top .founder-contact .icon-in:after {
    display: block;
    content: "";
    background: url(/wp-admin/images/founder-linkedin.svg) no-repeat;
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: ease all 0.3s;
}
.founder-top .founder-contact .icon-email:after {
    display: block;
    content: "";
    background: url(/wp-admin/images/founder-email.svg) no-repeat;
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: ease all 0.3s;
}
.founder-top .founder-contact .icon-in:hover:after, .founder-top .founder-contact .icon-email:hover:after {
    opacity: 0.5;
}
@media(max-width: 1023px) {
    .our-story .our-story-content .content-left .mobile-image {margin: auto;}
    .our-story .our-story-content {flex-direction: column;}
    .our-story .our-story-content .content-left {margin-bottom: 30px;margin-right: 0;width: 100%;}
    .our-story .our-story-content .content-right {width: 100%;}
    .our-founders .our-founders-content {grid-template-columns: repeat(1, 1fr)}
    .our-story {padding: 80px 0;}
    .our-story .our-story-content .content-left .web-image {display: none;}
    .about .our-company {background: url(/wp-content/uploads/2021/03/story-backImage2.png) center center/cover;}
    .about .jet-banner {background:url(/wp-content/uploads/2022/04/AMGMG-01-min-1-1size.png) center center/cover;}
}
@media(max-width: 680px) {
    .about .our-company {
        padding: 35px 0 40px;
    }
    .h2-title {
        font-weight: bold;
        font-size: 24px;
        line-height: 34px;
    }
    .our-story {
        padding: 46px 0 50px;
    }

    .about .our-company-content, .our-story .our-story-content .content-right {
        margin: 0 5px;
    }
    .our-founders {
        padding: 35px 0 40px;
    }
    .our-founders small {
        font-size: 18px;
        margin: 6px 0 30px;
    }
    .our-founders-content .founder-top .founder-image {
        width: 80px;
        margin-top: -9px;
    }
    .our-founders-content .founder-top {
        flex-flow: column;
        align-items: center;
    }
    .our-founders .our-founders-content>div {
        padding: 0 20px 20px;
    }
    .our-founders-content .founder-top .founder-info h3 {
        font-size: 18px;
        line-height: 24px;
        margin-top: 16px;
        text-align: center;
    }
    .our-founders-content .founder-top .founder-info p {
        margin: 6px 0 7px;
        text-align: center;
    }
    .our-founders-content .founder-top .founder-info {
        margin-left: 0;
        margin-bottom: 16px;
    }
    .our-founders-content .founder-top .founder-contact {
        margin: auto;
    }
    .about .h2-description {
        margin-top: 15px;
    }
    .about p.study-title {
        font-size: 20px;
        line-height: 24px;
    }
    .about .jet-banner {padding: 109px 0 43px;}
}


/***** service ********/
.bridge .banner-box {
    top: 83px;
}
.center-module {padding: 60px 0;}
.center-module .center-module-list {
    display: flex;
    justify-content: space-between;
    color: #1D252D;
}
.center-module .center-module-list a {color: #1D252D; text-decoration: underline!important; font-style: italic;font-weight: 600}
.single-page .center-module-list .list-content {width: 45%}
.sub-page .center-module-list .list-content {width: 50%;}

.center-module-list .list-image {width: 44.3%;}
.center-module-list .list-image img {width: 100%;}
.center-module-list .list-content h3 {font-weight: bold;font-size: 36px;line-height: 45px;margin-bottom: 24px;}
.center-module .center-module-info-text {
    font-family: 'Helvetica';
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #4C5158;
    margin-top: 15px;
}

.web-loans .h2-description, .pad-loans .h2-description {margin-bottom: 25px;}
.web-loans, .pad-loans {display: flex;justify-content: space-between;margin-top: 40px;}
.web-loans>div {width: 540px;}
.loans-list {color: #4C5158; border-bottom: 1px solid #E3E5E9; padding: 10px 0; font-family: "Helvetica"; display: flex;}
.loans-list li { line-height: 22px;width: 90px;}
.loans-list li:not(:last-child) {margin-right: 22px;}
.loans-right .loans-list .loans1 {width: 135px;margin-right: 49px;}
.loans-right .loans-list .loans2 {width: 112px; margin-right: 26px;}
.loans-right .loans-list .loans3 {margin-right: 35px;}

.list-content .h2-description:not(:last-child) {
    margin-bottom: 24px;
}
.center-module-line {
    margin: 70px 0;
}
.center-module-line .mobile {
    display: none;
    width: 100%;
}
.center-module-list .list-content .list-list {
    margin-bottom: 15px;
}
.center-module-list .list-content .list-list li {font: 16px/22px "Helvetica";position: relative;padding-left: 20px;margin-bottom: 5px;}
.center-module-list .list-content .list-list li:before {content: "";display: inline-block;width: 8px;height: 8px;background-color: #817D8B;border-radius: 30px;position: absolute;left: 0;top: 6px;}
.center-module-list .list-content .list-list li span {
    display: inline-block;
}
.center-module-list .list-content .spacing {height: 35px;}
.center-module-list .list-content .highlight-description {
    font-size: 12px;
    line-height: 19px;
    color: #656C77;
    margin-top: 4px;
    font-style: italic;
}
.center-module-list .list-content .highlight-description span {
    display: inline-block;
    vertical-align: middle;
    margin-top: 4px;
    margin-right: 4px;
}
.pad-loans {display: none;}
@media(max-width: 1279px) {
    .web-loans {display: none}
    .pad-loans {display: flex;padding: 0 10px;}
    .loans-list {justify-content: space-between;}
    .loans-right .loans-list .loans1 {width: 129px; margin-right: 54px;}
    .loans-right .loans-list .loans2 {width: 100px; margin-right: 0;}
}
@media(min-width: 1024px) {.center-module .center-module-list .list-image .mobile-image{display: none;}}
@media(max-width: 1023px) {
    .center-module .center-module-list {
        flex-direction: column;
    }
    .center-module .center-module-list.layer-one {
        flex-direction: column-reverse;
    }
    .center-module .center-module-list .list-image {
        width: 100%;
        padding: 0 10px;
        margin-bottom: 24px;
    }
    .center-module-list .list-content {
        width: 100% !important;
        padding: 0 10px;
    }
    .center-module-list .list-content h3 {
        text-align: center;
    }
    .pad-loans>div {width: 48%;}
}

@media(max-width: 680px) {
    .pad-loans {flex-flow: column; margin-top: 25px;}
    .pad-loans>div {width: 100%;}
    .pad-loans .h2-description {margin-bottom: 10px;}
    .pad-loans .loans-left {margin-bottom: 30px;}
    .center-module {
        padding: 40px 0;
    }
    .center-module-list .list-content h3 {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 12px;
        text-align: center;
    }
    .center-module-line {
        margin: 47px 0;
        padding: 0 10px;
    }
    .center-module-list .list-content .h2-title {
        text-align: center;
    }
    .center-module-list .list-content .list-list {
        padding: 0 10px;
    }
    .center-module-list .list-content .highlight-description {
        padding: 0 10px;
    }
    .center-module-list .list-content .spacing {height: 20px;}
    .center-module .center-module-info-text {
        padding: 0 10px;
    }
}
@media(max-width: 500px) {
    .center-module-line .web {
        display: none;
    }
    .center-module-line .mobile {
        display: block;
    }
}
@media(max-width: 400px) {
    .loans-right .loans-list .loans1 {width: 160px;}
    .loans-right .loans-list .loans1 {margin-right: 20px;}
}
/* Expat */
.single-page .banner-box {top: 154px;max-width: 620px};

@media(min-width: 1024px) {
    .center-module-list .list-image .mobile-image {display: none;}
    .single-page .jet-banner {min-height: 606px;}
    .hub-list ul li {
        max-height: 220px;
    }
    .foreign .banner-box {
        max-width: 685px;
    }
}
@media(min-width: 681px) {
    .foreign .banner-box p {
        max-width: 530px;
    }
}
@media(max-width: 1023px) {
    .center-module-list .list-image .web-image {display: none;}
    .hub-list ul li {
        max-height: 379px;
    }
}
@media(max-width: 480px) {
    .hub-list ul li {
        max-height: 185px;
    }
}

/* privacy policy */
.privacy-spacing {
    height: 40px;
}
.Privacy-policy {
    padding: 85px 0 90px;
    color: #1D252D;
}
.Privacy-policy a {
    font-size: 16px;
    line-height: 22px;
    color: #1D252D !important;
}
.Privacy-policy .common-title {
    margin-bottom: 19px;
}
.Privacy-policy .main-description { font: 22px/28px "Helvetica";color: #656C77;}
.Privacy-policy .main-description {
    margin-bottom: 26px;
}

.Privacy-policy h3 {
    font-weight: bold;
    font-size: 24px;
    line-height: 34px;
    background: #F3F4F7;
    border-radius: 2px;
    padding: 23px 37px 23px 77px;
    position: relative;
    cursor: pointer;
}
.Privacy-policy h3 .icon {
    display: block;
    height: 0.9rem;
    position: absolute;
    pointer-events: none;
    transform: rotate(-45deg);
    width: 0.9rem;
    top: 32px;
    left: 37px;
    transition: all 0.3s;
}
.Privacy-policy .description-box {
    margin-bottom: 60px;
}
.privacy-list {
    margin-top: 5px;
}
.privacy-list .privacy-content {
    border: 1px solid #EFF2F6;
    padding: 18px 15px 24px;
    display: none;
}
.privacy-list .privacy-content .privacy-description:not(:last-child) {
    margin-bottom: 26px;
}
.Privacy-policy h3.active .icon {
    transform: rotate(135deg);
}
.Privacy-policy h3 .icon:before {
    height: 9px;
    width: 2px;
}
.Privacy-policy h3 .icon:after {
    height: 2px;
    width: 9px;
}
.Privacy-policy h3 .icon:before, .Privacy-policy h3 .icon:after {
    content: "";
    display: block;
    background-color: currentColor;
    position: absolute;
    bottom: calc(50% - 0.1rem);
    left: 0;
}
.Privacy-policy .privacy-description {font: 16px/ 22px "Helvetica"}

/* cta landing  */
.cta-landing {
    display: flex;
    flex-direction: row;
    -webkit-box-pack: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    min-height: 938px;
    position: relative;
    max-width: 1440px;
}
.cta-landing .cta-left {
    width: auto;
    margin-top: 61px;
    max-width: 56%;}
.cta-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 34px;
    color: #1D252D;
    max-width: 609px;
}

.cta-title a {text-decoration: underline !important; color: #2955B4;}
.cta-new-title {max-width: 665px;}
.cta-description { font: 18px/26px "Helvetica";color: #1D252D;margin: 18px 0 13px;max-width: 591px;}
.cta-subtitle {
    font-size: 16px;
    line-height: 22px;
    color: #656C77;
}
.cta-landing .cta-right {
    position: absolute;
    right: 0;
    background: url(/wp-content/uploads/2021/03/cta-background.jpg) no-repeat bottom center/cover;
    width: 29.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #1D252D;
    bottom: 0;
    top: 0;
    padding-top: 70px;
}
.cta-landing .cta-right .info {
    font-size: 16px;
    line-height: 24px;
    max-width: 271px;
    font-style: italic;
}
.cta-landing .cta-right label {
    width: 80px;
    height: 3px;
    background-color: #817D8B;
    margin: 33px 0 30px;
}
.cta-landing .cta-right .info-name { font: bold 16px/20px "Helvetica";margin: 18px 0 5px;}
.cta-landing .cta-right .info-image {
    width: 100px;
    height: 100px;
}
.cta-landing .cta-right  .info-sub { font: 12px/16px "Helvetica";}
#hsForm_8d97fdce-76d2-4c62-b770-f4622ecc8ccb .hs-fieldtype-radio .multi-container {
    display: flex;
    flex-flow: wrap;
}

#hsForm_8d97fdce-76d2-4c62-b770-f4622ecc8ccb .form-columns-2 .hs-fieldtype-radio .multi-container {
    margin-top: 40px;
}
.cta-landing .hs-fieldtype-radio ul.multi-container li label span {
    font-size: 16px;
    line-height: 20px;
    margin-top: 2px;
    color: #1D252D;
    margin-left: 10px;
    font-weight: bold;
}
#label-american_mortagage___type_of_loan___radio_buttons-8d97fdce-76d2-4c62-b770-f4622ecc8ccb {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 23px;
    margin-top: 37px;
}
.cta-landing .form-columns-1 .hs-fieldtype-radio .multi-container li {
    width: 445px;
    margin-bottom: 22px;
}
.contact-form.cta-landing .form-columns-1 .hs-fieldtype-radio .multi-container li {
    width: auto;
    margin-bottom: 0;
}
.cta-landing .form-columns-1 .hs-fieldtype-radio .multi-container li span {
    font-weight: normal;
    word-break: break-word;
}
.cta-landing .actions {
    margin-bottom: 40px;
}
.cta-purchase {padding: 93px 0 69px;color: #1D252D;max-width: 720px;margin: auto;}

.cta-purchase .cta-title  {
    font-size: 22px;
    line-height: 28px;
    color: #1D252D;
    font-weight: normal;
    margin-bottom: 15px;
    max-width: 100%;
}
.thank-you-page .actions {
    text-align: center;
    padding: 0 15px;
}
#hsForm_f3902b08-64ce-4061-8522-855d4ce6104a, #hsForm_300e8948-3f9d-43c5-81e9-1f03709f3753 {
    /* 	margin-top: 30px; */
    max-width: 665px;
}
.thank-you-page .hs-fieldtype-radio>label {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 23px;
    margin-top: 40px;
}
.thank-you-page .hs-form-radio-display span {
    font-size: 16px;
    line-height: 22px;
    font-weight: normal;
    margin-left: 10px;
}
.thank-you-page .hs-fieldtype-text label span:first-child,
.thank-you-page .hs-fieldtype-number label span:first-child {
    opacity: 1;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    padding-top: 40px;
    display: block;
    margin-bottom: 10px;
}
.thank-you-page .multi-container {
    display: flex;
}
.thank-you-page .multi-container {
    flex-direction: column;
}

.thank-you-page .multi-container> li.hs-form-radio:not(:last-child) {
    margin-bottom: 16px;
}

#hsForm_e2104331-420d-4624-a34f-0f882c565414 {
    margin-top: 33px;
}
.thank-you-page .hs-fieldtype-select {
    margin-top: 51px;
}
@media(max-width: 767px) {
    .hbspt-form input[type="radio"].hs-input {
        width: 16px !important;
        height: 16px;
        position: absolute;
        left: 0;
        top: 1px;
    }
    .hbspt-form input[type="radio"].hs-input:checked:after {
        width: 18px;
        height: 18px;
    }
    .cta-landing .hs-fieldtype-radio ul.multi-container li label span {
        font-size: 14px;
        line-height: 16px;
    }
    .hs-fieldtype-radio ul.multi-container li label {
        position: relative;
        padding-left: 16px;
    }
    .cta-landing .form-columns-1 .hs-fieldtype-radio .multi-container li {
        width: 100%;
    }
    .thank-you-page .hs-fieldtype-select {
        margin-top: 0;
    }
}
/****** schedule ******/
.common-schedule {
    max-width: 731px;
    margin: 90px auto !important;
}
.common-schedule .cta-title {
    text-align: center;
    margin-bottom: 45px;
}

.hs-dateinput input {
    border-bottom: 0 !important;
    height: 48px;
    cursor: default;
    width: 73% !important;
}
#hsForm_e2104331-420d-4624-a34f-0f882c565414 .form-columns-2>.hs_american_mortgage___schedule_a_call___date.hs-fieldtype-date > div.input {
    border: 1px solid #E3E5E9;
    height: 50px;
}

#hsForm_e2104331-420d-4624-a34f-0f882c565414 .form-columns-2>.hs_american_mortgage___schedule_a_call___date.hs-fieldtype-date > div.input:before {
    content: "";
    display: inline-block;
    background: url(/wp-admin/images/date.svg) no-repeat;
    width: 40px;
    height: 38px;
    background-size: 26px 25px;
    border-right: 1px #E3E5E9 solid;
    margin: 6px 13px;
    float: left;
    background-position: left center;
}
#hsForm_1181ee54-e076-4c71-b5aa-3b2fb11733c2 {
    max-width: 530px;
    margin: auto;
}
#hsForm_e2104331-420d-4624-a34f-0f882c565414 .form-columns-2 >.hs_american_mortgage___schedule_a_call___time > div.input select.hs-input {
    border-bottom: 0;
    margin-top: 0;
    background: 0;
    height: 48px;
    padding-bottom: 0;
    width: 73%;
}
.hs_american_mortgage___schedule_a_call___time .input select.hs-input.invalid {
    border: 0;
}
#hsForm_e2104331-420d-4624-a34f-0f882c565414 .form-columns-2 >.hs_american_mortgage___schedule_a_call___time > div.input {
    border: 1px solid #E3E5E9;
}
#hsForm_e2104331-420d-4624-a34f-0f882c565414 .form-columns-2 >.hs_american_mortgage___schedule_a_call___time > div.input:before {
    content: "";
    display: inline-block;
    background: url(/wp-admin/images/clock.svg) no-repeat;
    width: 40px;
    height: 38px;
    background-size: 26px 25px;
    border-right: 1px #E3E5E9 solid;
    margin: 6px 13px;
    float: left;
    background-position: left center;
}
.hs-richtext.hs-main-font-element {
    margin-top: 10px;
}
#hsForm_1181ee54-e076-4c71-b5aa-3b2fb11733c2 .hs_submit.hs-submit {
    margin-top: 62px;
}
.fn-date-picker .pika-table {
    margin: 0;
}

.fn-date-picker.pika-single.is-bound {
    background: #F7F8FB;
    border: 1px solid #E3E5E9;
    box-sizing: border-box;
    box-shadow: 0px 2px 26px rgba(166, 172, 183, 0.2);
    border-radius: 6px;
}
.fn-date-picker .pika-lendar {
    width: 233px !important;
    margin: 18px 0 25px;
}
.fn-date-picker .pika-title {
    border-bottom: 1px solid #EFF2F6;
}
.fn-date-picker .pika-label {
    background-color: #F7F8FB !important;
    font-size: 16px !important;
}
.fn-date-picker .pika-table th {
    border: 0;
    line-height: 16px !important;
    color: #1D252D !important;
    font-weight: normal !important;
}
.fn-date-picker .pika-table td {
    font-size: 14px !important;
    line-height: 16px !important;
    border: 0;
}

.hs-form .fn-date-picker .pika-button {
    margin: 0 auto 10px;
    width: 30px;
    height: 30px;
    background: transparent;
    text-align: center;
    color: #003DA5;
}
.hs-form .fn-date-picker .is-selected .pika-button {
    background: #003DA5 !important;
    border: 1px solid #003DA5;
    box-shadow: none !important;
    border-radius: 30px !important;
}

.hs-form .fn-date-picker .pika-button:hover {
    background: #003DA5 !important;
    border: 1px solid #003DA5;
    box-shadow: none !important;
    border-radius: 30px !important;
    text-decoration: none;
}
.fn-date-picker .pika-table abbr {
    display: block;
    margin: 19px 0 14px;
    color: #1D252D;
    cursor: default !important;
}
.hbspt-form .hs-form-8d97fdce-76d2-4c62-b770-f4622ecc8ccb_00f22a9a-ab0e-4f1a-b115-43d770dba4f3.submitted-message {
    overflow: initial;
}
@media(max-width: 1023px) {
    .cta-landing {
        flex-direction: column;
    }
    .cta-landing .cta-right {
        position: relative;
        width: 100%;
        min-height: 361px;
        justify-content: center;
        padding-top: 0;
    }
    .cta-landing .cta-left {
        max-width: 100%;
        padding: 0 5px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
}
@media(max-width: 767px) {
    .cta-title {
        font-size: 20px;
        line-height: 24px;
    }
    .cta-description {
        margin: 12px 0 10px;
    }
    #hsForm_8d97fdce-76d2-4c62-b770-f4622ecc8ccb .hs-fieldtype-radio ul.multi-container li[data-reactid=".hbspt-forms-0.1:$4.1:$american_mortagage___type_of_loan___radio_buttons.$american_mortagage___type_of_loan___radio_buttons.0.$Residential"], #hsForm_8d97fdce-76d2-4c62-b770-f4622ecc8ccb .hs-fieldtype-radio ul.multi-container li[data-reactid=".hbspt-forms-0.1:$4.1:$american_mortagage___type_of_loan___radio_buttons.$american_mortagage___type_of_loan___radio_buttons.0.$Commercial"], #hsForm_8d97fdce-76d2-4c62-b770-f4622ecc8ccb .hs-fieldtype-radio ul.multi-container li[data-reactid=".hbspt-forms-0.1:$4.1:$american_mortagage___type_of_loan___radio_buttons.$american_mortagage___type_of_loan___radio_buttons.0.$Portfolio"], #hsForm_8d97fdce-76d2-4c62-b770-f4622ecc8ccb .hs-fieldtype-radio ul.multi-container li[data-reactid=".hbspt-forms-0.1:$4.1:$american_mortagage___type_of_loan___radio_buttons.$american_mortagage___type_of_loan___radio_buttons.0.$Bridge"] {
        width: 100%;
    }
    .cta-purchase {
        padding: 40px 5px;
    }
    /* 	#hsForm_f3902b08-64ce-4061-8522-855d4ce6104a, #hsForm_300e8948-3f9d-43c5-81e9-1f03709f3753 {
		margin-top: 40px;
	} */
    .thank-you-page .hs-fieldtype-text label span:first-child, .thank-you-page .hs-fieldtype-number label span:first-child  {
        padding-top: 35px;
    }
}
@media(max-width: 680px) {
    .cta-landing .hs-american_mortgage___schedule_a_call___date {
        margin-bottom: 20px;
    }
}
@media(max-width: 480px) {
    .thank-you-page .multi-container {
        flex-direction: column;
    }
    .thank-you-page .multi-container li:not(:last-child) {
        margin-bottom: 10px
    }

    span[data-reactid=".hbspt-forms-0.1:$0.$american_mortgage___when_do_you_plan_to_purchase_your_home_.0.$I have found a home.0.1"], span[data-reactid=".hbspt-forms-0.1:$0.$american_mortgage___when_do_you_plan_to_purchase_your_home_.0.$I'm looking now and may need a Pre-Approval Letter.0.1"], span[data-reactid=".hbspt-forms-0.1:$0.$american_mortgage___when_do_you_plan_to_purchase_your_home_.0.$I am researching my options.0.1"] {
        width: 373px;
    }
}
.thank-you-page .thank-banner {
    background: url(/wp-content/uploads/2021/02/thankyou-mask.png) center center/cover;
    text-align: center;
    color: #1D252D;
    padding: 85px 0 104px;
}
.thank-you-page .thank-banner img {
    width: 49px;
    margin: auto;
}
.thank-you-page .thank-banner h2 {font-weight: bold;font-size: 36px;line-height: 45px;margin: 21px 0 13px;}
.thank-you-page .thank-banner p {font: 18px/26px "Helvetica";}
.thank-you-page .buttons {padding: 0 35px;}
.thank-you-page .common-button {margin: 52px auto 0;}
@media(max-width: 767px) {
    .thank-you-page .thank-banner {padding: 41px 0 65px;}
    .thank-you-page .thank-banner img {width: 35px;}
    .thank-you-page .thank-banner h2 {font-size: 20px;line-height: 34px;margin: 20px 0 15px;}
    .thank-you-page .thank-banner p {font-size: 18px;line-height: 22px;padding: 0 50px;}
    .cta-purchase .cta-title {font-size: 18px;line-height: 26px;margin-bottom: 6px;}
    .Privacy-policy {padding: 27px 0 70px;}
    .Privacy-policy .common-title {font-size: 36px;line-height: 45px;margin-bottom: 11px;}
    .Privacy-policy .description-box {margin-bottom: 36px;}
    .Privacy-policy .main-description {font-size: 18px;line-height: 26px;}
    .Privacy-policy h3 {padding: 13px 10px 13px 44px;font-size: 18px;line-height: 24px;}
    .Privacy-policy h3 .icon {left: 17px;top: 20px;}
    .Privacy-policy .privacy-description {font-size: 14px;line-height: 19px;}
}
.error404 .homepage-text {display: none;}
.error404-content {text-align: center;display: flex;flex-flow: column;justify-content: center;align-items: center;min-height: calc(100vh - 102px);}
.error404-content img {width: 400px;}
.error404-content .footer-nav-widgets-wrapper {display: none;}
.error404-content h1 {font-weight: bold;font-size: 36px;line-height: 45px;color: #1D252D;margin: 40px 0 88px;}
.error404-button .button {width: 220px !important;height: 50px !important;}
@media(max-width: 767px) {
    .error404-content {padding: 0 40px;min-height: calc(100vh - 116px);}.error404-content img {width: 295px;}
    .error404-content h1 {font-size: 24px;line-height: 34px;margin: 40px 0 100px}
}
input#email-ee2130a6-a0fb-4de4-ba69-34e106b11893:-internal-autofill-previewed,
input#email-ee2130a6-a0fb-4de4-ba69-34e106b11893:-internal-autofill-selected {-webkit-text-fill-color: #FFFFFF !important;transition: background-color 5000s ease-in-out 0s !important;}

/* new case study */
.case-study-detail.new-case1 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-ca1.jpg) center center/cover;
}
.case-study-detail.new-case2 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-c2.jpg) center center/cover;
}
.case-study-detail.new-case3 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-c03.jpg) center center/cover;
}
.case-study-detail.new-case4 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-c4.jpeg) center center/cover;
}
.case-study-detail.new-case5 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-c5.jpeg) center center/cover;
}
.case-study-detail.new-case6 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-c06.jpeg) center center/cover;
}
.case-study-detail.new-case7 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-c7.jpeg) center center/cover;
}
.case-study-detail.new-case8 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-c8.jpeg) center center/cover;
}
.case-study-detail.new-case9 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-c9.jpeg) center center/cover;
}
.case-study-detail.new-case10 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-c010.jpeg) center center/cover;
}
.case-study-detail.new-case11 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-c11.jpeg) center center/cover;
}
.case-study-detail.new-case12 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-c12.jpeg) center center/cover;
}
.case-study-detail.new-case13 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-c13.jpg) center center/cover;
}

/* letters */
.case-study-detail.new-letters1 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters01.jpg) center center/cover;
}
.case-study-detail.new-letters2 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters2.jpg) center center/cover;
}
.case-study-detail.new-letters3 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters3.jpg) center center/cover;
}
.case-study-detail.new-letters4 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/01/homepage-case-3.jpg) center center/cover
}
.case-study-detail.new-letters5 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters5.jpeg) center center/cover;
}
.case-study-detail.new-letters6 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters6.jpg) center center/cover;
}
.case-study-detail.new-letters7 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters7.jpg) center center/cover;
}
.case-study-detail.new-letters8 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters08.jpeg) center center/cover;
}
.case-study-detail.new-letters9 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters9.jpeg) center center/cover;
}
.case-study-detail.new-letters10 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters10.jpg) center center/cover;
}
.case-study-detail.new-letters11 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters011.jpeg) center center/cover;
}
.case-study-detail.new-letters12 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters12.jpeg) center center/cover;
}
.case-study-detail.new-letters13 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters13.jpeg) center center/cover;
}
.case-study-detail.new-letters14 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters14.jpg) center center/cover;
}
.case-study-detail.new-letters15 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters15.jpg) center center/cover;
}
.case-study-detail.new-letters16 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters016.jpg) center center/cover;
}
.case-study-detail.new-letters17 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters17.jpg) center center/cover;
}
.case-study-detail.new-letters18 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters18.jpg) center center/cover;
}
.case-study-detail.new-letters19 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters19.jpg) center center/cover;
}
.case-study-detail.new-letters20 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters20.jpg) center center/cover;
}
.case-study-detail.new-letters21 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters21.jpg) center center/cover;
}
.case-study-detail.new-letters22 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters22.jpeg) center center/cover;
}
.case-study-detail.new-letters23 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/03/new-letters23.jpg) center center/cover;
}
.case-study-detail.new-letters24 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/04/new-letters24.jpg) center center/cover;
}
.case-study-detail.new-letters25 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/04/new-letters25.jpg) center center/cover;
}
.case-study-detail.new-letters26 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/04/new-letters26.jpg) center center/cover;
}
.case-study-detail.new-letters27 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/04/new-letters27.jpg) center center/cover;
}
.case-study-detail.new-letters28 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/04/new-letters28.jpg) center center/cover;
}
.case-study-detail.new-letters29 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/04/new-letters29.jpg) center center/cover;
}
.case-study-detail.picture2 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/04/houses-360955_1920.jpg) center center/cover;
}
.case-study-detail.picture3 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/04/woman-home-using-laptop-scaled-1.jpeg) center center/cover;
}

.case-study-detail.picture1 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/05/cooperation-analyst-chart-professional-paper-economics-min-1-scaled.jpg) center center/cover;
}

.case-study-detail.picture12 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/06/dc5af9664eaec36acd08835e4aac829c.jpeg) center center/cover;
}
.case-study-detail.picture13 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/06/d_g550_a_mkt_837_web.jpeg) center center/cover;
}
.case-study-detail.picture14 .jet-banner {
    background: linear-gradient(0deg,rgba(25,31,37,.6),rgba(25,31,37,.6)),url(/wp-content/uploads/2021/06/MicrosoftTeams-image-min1.png) center center/cover;
}
/* 2021-08-20 */
.pdfs-content {
    position: relative;
}
.pdf-hidden {
    height: 0;
}
.pdf-remove {
    position: absolute;
    left: -9999px;
}
.pdf-switch-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 24px 20px;
    margin-top: 94px !important;
}
.pdf-switch-btns button {
    border: 1px solid #2F2E2D;
    width: 180px;
    height: 38px;
    text-transform: none;
    text-align: center;
    background-color: #fff;
    color: #2F2E2D;
    padding: 0;
    font-size: 14px;
    font-family: "Noto Serif";
    font-weight: 500;
}
.pdf-switch-btns-select {
    background-color: #2F2E2D !important;
    color: #ffffff !important;
}

/* New Landing Page */
.new-landing-page-content {
    margin-bottom: 60px;
}
.new-landing-page-content .entry-title {
    font-size: 2.25rem;
    text-align: center;
    padding-top: 30px;
    margin-bottom: 50px;
}
.new-landing-page-content .wp-block-file .wp-block-file__embed {
    height: 800px !important;
}
.new-landing-page-content .wp-block-file a {
    display: none;
}
.new-landing-page-content .dp-ui .dp-ui-page label {
    font-size: 1rem;
}
@media (max-width: 767px) {
    .new-landing-page-content {
        margin-bottom: 32px;
    }
    .new-landing-page-content .entry-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 24px;
    }
}

/* Homepage Contact */
.homepage .jet-banner {
    position: relative;
    min-height: unset;
    background: url(/wp-content/uploads/2021/03/homepage-banner-scaled.jpg) no-repeat center bottom transparent;
    background-size: cover;
}
.homepage .jet-banner::before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(89.94deg, #1D252D 0.04%, rgba(29, 37, 45, 0.6) 48.86%, rgba(29, 37, 45, 0.2) 99.94%);
}
.homepage .home-contact-box {
    display: flex;
    justify-content: space-between;
    padding: 100px 0 64px 0;
}
.homepage .home-contact-box .home-contact-text {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    max-width: 610px;
    line-height: 60px;
    margin-right: 30px;
    align-self: center;
}
.homepage .home-contact-box .home-contact-text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    max-width: 525px;
    margin-top: 30px;
}
.homepage .home-contact-box .home-contact-form {
    font-size: 14px;
    color: #4c5158;
    width: 440px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 3px 25px rgba(25, 32, 56, 0.08);
    padding: 0 20px 20px 20px;
    border-radius: 4px;
    align-self: center;
}
.homepage .home-contact-box .home-contact-form .contact-form-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    margin-top: 20px;
}
.homepage .home-contact-box .home-contact-form .hbspt-form .hs-fieldtype-textarea>label {
    font-size: 14px;
    margin-top: 20px;
    line-height: 19px;
}
.homepage .home-contact-box .home-contact-form .hbspt-form .input input.hs-input, .homepage .home-contact-box .home-contact-form .hbspt-form .input select.hs-input {
    font-size: 14px;
    line-height: 22px;
    margin-top: 20px
}
.homepage .home-contact-box .home-contact-form .hbspt-form .input select.hs-input {
    background: url(/wp-admin/images/contact-arrow-down.svg) no-repeat scroll right 7px transparent;
}
.homepage .home-contact-box .home-contact-form .hbspt-form .hs-fieldtype-textarea textarea {
    height: 68px !important;
    padding: 8px 10px;
    margin-top: 10px;
    font-size: 14px;
}
.homepage .home-contact-box .home-contact-form .hbspt-form .hs_submit.hs-submit {
    margin-top: 20px;
    text-align: center;
}
.homepage .home-contact-box .home-contact-form .hbspt-form .hs_submit.hs-submit .hs-button {
    width: 176px;
    font-size: 16px;
}
.homepage .home-contact-box .home-contact-form .hbspt-form .hs-fieldtype-text label span {
    display: none;
}
.homepage .home-contact-box .home-contact-form .hbspt-form .hs-fieldtype-intl-phone.hs-input input {
    padding: 0 0 10px 0;
}
@media (max-width: 1280px) {
    .homepage .home-contact-box .home-contact-text {
        max-width: 50%;
    }
}
@media (max-width: 767px) {
    .homepage .home-contact-box {
        flex-direction: column;
        padding: 30px 0;
    }
    .homepage .home-contact-box .home-contact-text {
        font-size: 24px;
        line-height: 34px;
        max-width: 100%;
        margin: 40px 0 0 0;
        text-align: center;
    }
    .homepage .home-contact-box .home-contact-text p {
        margin-top: 10px;
        max-width: 100%;
    }
    .homepage .home-contact-box .home-contact-form {
        width: 100%;
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 0 20px 20px 20px;
    }
}

/* Pop Up Sign Ups Form */
#form-sign-ups {
    margin-top: 40px;
    margin-bottom: 50px;
}
#form-sign-ups .cta-landing {
    max-width: 768px;
    min-height: unset;
    margin: auto;
}
#form-sign-ups .h2-title {
    margin-bottom: 45px;
    text-align: center;
}
#form-sign-ups .hubspot-form .fields {
    display: flex;
    margin-right: -25px;
}
#form-sign-ups .hubspot-form .fields .field {
    width: 50%;
    padding: 0 25px 0 0;
    clear: both;
}
#form-sign-ups .hubspot-form .field {
    margin-bottom: 32px;
}
#form-sign-ups .hubspot-form .input>input.hs-input {
    margin-top: 0;
}
#form-sign-ups .hs-form input.hs-input, #form-sign-ups .hs-form select, #form-sign-ups .hs-form .hs-phone {
    border: 0;
    border-bottom: 1px solid #e3e5e9;
    outline: 0;
    font-size: 18px;
    line-height: 22px;
    color: #1d252d;
    -webkit-appearance: none;
    white-space: nowrap;
    padding: 0 0 10px 0;
    width: 100%;
}
#form-sign-ups .hs-form select {
    background: url(https://dev.gmg.asia/wp-admin/images/contact-arrow-down.svg) no-repeat scroll right center transparent;
    padding-right: 10px;
}
#form-sign-ups .hs-form {
    padding: 45px 40px;
    box-shadow: 0 2px 26px rgba(166, 172, 183, 0.2);
    border-radius: 2px;
}
#form-sign-ups .hs-form .phone_span {
    display: flex;
    border-bottom: 1px solid #e3e5e9;
}
#form-sign-ups .hs-form .phone_label {
    font-family: Helvetica;
    display: inline-block;
    min-width: fit-content;
    margin-right: 5px;
    float: left;
    font-size: 18px;
    line-height: 22px;
    word-break: keep-all;
}
#form-sign-ups .hs-form .phone_span input, .hs-form .phone_span input:focus {
    border-bottom: 0;
}
#form-sign-ups .hs-form .hs-submit {
    width: 215px;
    margin: 45px auto 0;
    text-align: center;
}
.hs-form .hs-submit {
    position: relative;
}
.hs-form .hs-submit .hs-button {
    background-color: #d6001c;
    border-radius: 2px;
    color: #fff;
    letter-spacing: .5px;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    width: 100%;
    height: 50px;
    padding: 0;
    text-transform: inherit;
    text-decoration: none;
    outline: 0;
}
.form-thanks-page {
    margin: 290px auto !important;
}
.form-thanks-page h2 {
    font-weight: 700;
    line-height: 56px;
}
.form-thanks-page .thanks-box {
    display: flex;
    justify-content: center;
    align-items: center;
}
.form-thanks-page .thanks-box img {
    margin-right: 30px;
    width: 49px;
}
@media(max-width: 767px) {
    #form-sign-ups .hs-form .fields {
        flex-flow: column;
        margin-right: 0;
    }
    #form-sign-ups .hs-form .fields .field {
        width: 100%;
        padding: 0;
    }
    #form-sign-ups {
        margin-top: 24px;
        margin-bottom: 40px;
    }
    #form-sign-ups .h2-title {
        margin-bottom: 20px;
    }
    #form-sign-ups .hs-form .hs-submit {
        width: 100%;
    }
    .form-thanks-page {
        margin: 100px auto !important;
    }
    .form-thanks-page h2 {
        font-size: 32px !important;
    }
    .form-thanks-page .thanks-box img {
        width: 32px;
        margin-right: 15px;
    }
}

/* loading */
.loader-03 {
    border: .2em solid currentcolor;border-bottom-color: transparent;border-radius: 50%;
    -webkit-animation: 1s loader-03 linear infinite;animation: 1s loader-03 linear infinite;
    position: relative;display: none;
    width: 20px;height: 20px;color: inherit;vertical-align: middle;pointer-events: none;color: #fff;
    position: absolute; left: 96px;top: 15px;
}
@-webkit-keyframes loader-03 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes loader-03 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.form-loading .hs-button {background: #D6001C !important;}
@media(max-width: 767px) {
    .loader-03 {left: 50%;margin-left: -10px;}
}

@media(any-hover: hover) {
    .hs-form .hs-submit .hs-button:hover {background: #AB0E18;}
}

/*changes for profile*/
ul.profile-list {
	list-style-type:disc!important;
	margin-left:30px;
}

.profile-pic img {
    max-width: 150px;
    margin-right: 10px;
    vertical-align: middle;
}

.info-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 20px;
}

.profile-info {
    flex-basis: 100%;
}

.add-info-wrapper a {color: #1B4DA0;font-size: 16px;}

.add-info-wrapper a:hover {
    text-decoration: underline!important;
}

.profile-info p {
    margin-bottom: 5px;
	margin-top: 0px;
}
@media only screen and (min-width:1024px){
	.profile-banner {
    min-height: 500px!important;
    padding-top: 50px;
}
.profile-box {
    top: 50px!important;
}
.profile-grid .gb-grid-column {
    margin-top: -32px;
    z-index: 2;
}
}
/**/
.contact-infos {
    display: flex;
    justify-content: space-between;
}
.first-col {
    flex-direction: column;
    display: flex;
    flex-basis: 60%;
}

.second-col {
    display: flex;
    flex-direction: column;
    flex-basis: 40%;
}  
.profile-box {
    position:relative;
}
@media only screen and (max-width:580px){
	.info-container {
    flex-direction: column;
    text-align: center;
}
	.profile-pic img{
		margin-bottom:10px;
	}
	.profile-box{
		margin-top:-32px!important;
	}
	.contact-infos {
    flex-direction: column;
	}
	.second-col {
    flex-direction: revert;
    justify-content: center;
	}
	.second-col a {
		flex-basis: 50%;
	}
	a.linkedin-info {
		border-left: 2px solid #1B4DA0;
	}
}
@media only screen and (min-width:1024px){
	.profile-story{
		padding:50px 0 0!important;
		margin:0!important;
	}
	.profile-caseStudies {
    flex-direction: row!important;
    width: 100%!important;
	margin:0!important;
}
	.profile-caseStudies .Story{
		 margin: 10px!important;
	}
}
@media only screen and (min-width:768px){
	.second-col {
	border-left: 2px solid #1B4DA0;
    padding-left: 20px;
    margin-left: -35px;
	} 
	
	p.profile-location {
    position: absolute;
    top: 0;
	right: 0;
	}
	.profile-btns a.common-button{
	width: 100%!important;
	}
}
p.profile-location {
    padding: 10px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

p.profile-location img {
    margin-right: 5px;
}
/**/
.profile-page-links{
	padding:91px 0;
	background: url(/wp-content/uploads/2022/12/seenInBg.png);
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center;
}
.profile-page-links .common-title{
	text-align:center;
}

.link-column.buttons a {
    margin: auto;
}

/*Instagram*/
.category-instagram .feature-image {
    max-height: 360px!important;
    overflow: visible;
}
.category-instagram .feature-image .mask {
    top: 0!important;
        background: linear-gradient( to bottom, rgba(0,0,0,0.4) 10%, rgba(0,0,0,0) 10%)!important;
}
.category-instagram .feature-image .post-arthur{
	top:10px!important;
	bottom: inherit!important;
}

/*Real Estates*/

.re_section li {
    padding-bottom: 20px;
}
.re_section {
    max-width: 1200px;
    padding: 50px;
	margin: 0 auto;
}
.re_content {
    width: 70%;
/*     background: #EAF2F6; */
/*     padding: 20px; */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.re_info {
    width: 30%;
}
.imgWrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: start;
}
/**/

.imgWrap a{
display:block;
}
.imgWrap img{
vertical-align:middle;
}
.justifySpace{
justify-content:space-between;
}
/**/
h2.re_title{
    font-size: 42px;
    color: #fff;
}
h2.name_of_development {
    font-size: 36px;
    color: #5c80bb;
  border-bottom: 1px solid #5c80bb
}
h2.name_of_development span, h2.re_title span {
    font-size: 16px;
    display: block;
    font-weight:400;
}
.imgWrap .thumbnail {
    width: 15%;
}
.re_desc {
    font-size: 18px;
}
.re_wrapper {
    display: flex;
    gap: 20px;
    flex-direction: row;
}
.re_info {
    width: 30%;
    padding: 15px;
/*     background: #EAF2F6; */
    border-radius: 10px;
}
span.info-value {
    font-weight: 400;
    font-family: "helvetica";
    font-size: 18px !important;
    background: #ffffff;
    width: 100%;
    display: block;
    padding: 5px;
    line-height: 1em;
    margin-bottom: 5px;
    border-radius: 4px;
}
span.info-title {
    font-size: 12px !important;
    text-transform: uppercase;
    display: block;
}
.re_info h4 {
    margin-bottom: 10px;
}


.re_contact h2 {
    border-bottom: 1px solid #5C80BB;
    color: #5C80BB;
margin-bottom: 10px;
}

/*.re_contact h4 {
    padding: 5px;
    font-size: 20px;
    line-height: 24px;
    font-weight: bold;
    font-family: "helvetica";
}*/
.re_contact a {
    color: #5C80BB;
}
figcaption, .wp-caption-text{
margin-top:0!important;
}
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close{
	cursor:pointer!important;
}
.re_link a {
    background: #C92833;
    color: #fff;
    padding: 5px 20px;
    display: inline-block;
    width: 100%;
    text-align: center;
	border: 2px solid #C92833;
}
.re_link a:hover {
    background: transparent;
    color: #C92833;
}
.re_hidden {
    display: none;
}
/*new layout*/
.re_titlewrap {
    width: calc(70% - 15px);
    position: relative;
}
.re_titlewrap h2 {
    font-size: 28px;
	color:#C92833;
}
.flex-wrap {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
}
.flex-wrap span {
    width: 70%;
	color:#C92833;
}
.enquire-btn{
	width:30%;
	padding: 5px 10px;
    background: red;
    color: #fff;
	text-align: center;
	border-radius: 8px;
    font-weight: bold;
	border: 2px solid red;
	font-size:14px;
}
a.enquire-btn:hover {
    border: 2px solid red;
    background: transparent;
    color: red;
} 

.wrapperImgs {
    display: flex;
    gap: 10px;
    flex-direction: row;
	position:relative;
}
.leftImgs {
    width: 70%;
}

.rightImgs {
	width:30%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.leftImgs img{
	 width: 100%;
    object-fit: cover;
    max-height: 350px;

}
.rightImgs img {
    width: 100%;
    object-fit: cover;
    min-height: 170px;
}
.wrapperImgs span {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 5px;
    color: #fffc;
    font-size: 12px;
	border-radius: 5px;
}
span.icon svg {
    display: inline;
    vertical-align: text-bottom;
}
.dev_wrapper {
    border: 2px solid #C92833;
    padding: 8px 10px;
    border-radius: 8px;
    line-height: 18px;
    display: flex;
    flex-wrap: wrap;
}
.dev_wrapper span:last-child {
    width:40%;
}
.dev_wrapper span {
    font-size: 18px;
    color: #C92833;
	font-weight: bold;
}
.dev_wrapper span:first-child {
    width: 60%;
}

.base_unit_wrapper, .unitswrap {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.commonFonts h4 {
    font-size: 24px;
    text-align: center;
}
.starting_at h4 {
    text-align: left;
}
.starting_at {
    width: 70%;
}
.unitswrap {
    justify-content: space-evenly;
    width: 30%;
}
.commonFonts span {
    display: block;
    font-size: 14px;
}

.re_info_wrap {
    margin-bottom: 40px;
}
.re_contact h3 {
    font-size: 22px;
	margin-bottom:10px;
}
.re_info_wrap span {
    display: block;
    font-size: 18px;
    background: #EAF2F6;
    padding: 8px 10px;
    margin-bottom: 20px;
    border-radius: 8px;
}
.re_contact span {
    border: 2px solid #C92833;
    border-radius: 8px;
    line-height: 18px;
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #C92833;
    padding: 8px 10px;
}
a.re_contactBtn span {
    text-align: center;
    padding: 20px;
    font-size: 24px;
    color: #fff;
    background: #C92833;
}
a.re_contactBtn span:hover {
    color: #C92833;
    background: transparent !important;
}
 
@media (width <= 767px) {
a.enquire-btn {
    margin-top: 10px;
}
 .re_heading {
    padding: 1em !important;
}
h2.name_of_development, h2.re_title {
    font-size: 26px;
}
.re_section{
padding-left:20px;
padding-right:20px;
}

.imgWrap .thumbnail {
    width: 30%;
}

.re_titlewrap {
    text-align: center;
}	
.re_info{
		padding:0!important;
	}
.rightImgs {
    width: 100%;
    flex-direction: row;
}
.re_wrapper,
.wrapperImgs, 
.flex-wrap{
	flex-direction:column;
}
.re_content, 
.re_info,
.leftImgs,
.re_titlewrap,
.flex-wrap span, 
.flex-wrap a {
    width: 100%;
}
.starting_at, 
.unitswrap {
	width:50%;		
}	
.dev_wrapper span {
    width: 100% !important;
    text-align: center;
    line-height: 20px;
}

} 