:root {
  --black: #000000;
  --white: #ffffff;
  --primary: #005BF0;
  --blue: #2970ff;
  --alt-blue:  #518BFD;
  --alt-grey: #f1f1ef;
  --light-blue: #eff4ff;
  --box-shadow:0 15px 15px -12px rgba(18, 67, 117, 0.35);
}

html {
	overflow-x: hidden;
}


html, body {
	margin: 0;
	padding: 0;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background: #fff;
    font-size: 1.1em;
    color: #3a3a3a;
}

h1, h2 {
    font-weight: 700;
    letter-spacing: .0001em;
}

h2 {
	font-size: 2.25em;

}

.entry-content h2 {
	margin-top: 1.4em;
	margin-bottom: .4em;
	border-bottom: 1px solid #cacaca;
	padding-bottom: .4em;
}

.entry-content h3 {
	margin-top: 1.2em;
	font-weight: 700;
}

ol, ul {
    padding-left: 1.2rem;
}

ul li,
ol li {
	margin-bottom: 1em;
}

.wp-block-heading {
	color: #000;
}

.fancy-header {
	margin-top: 1em;
	color: #000;
}

.fancy-header:before {
	content:"";
	display: block;
	height: 4px;
	background: var(--blue);
	width: 50px;
	margin-bottom: 4px;
	display: none;
}

.fancy-header em {
	position: relative;
	display: inline-block;
}

.fancy-header em:before {
    content: "";
    background-image: url(/wp-content/uploads/2024/07/under.svg);
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    display: block;
    position: absolute;
    bottom: -11px;
    height: 100%;
}

.header-description {
	opacity: 0.8;
	font-size: .85em;
	margin-bottom: 2.5em;
}

.wp-block-table table {
    border-right: 1px solid #cacaca;
    border-left: 1px solid #cacaca;
    font-size: .9em;
    margin-bottom: 1em;
    margin-top: 1em;
    box-shadow: var(--box-shadow);
}

.wp-block-table td, .wp-block-table th {
    border: 1px solid #cacaca;
    padding: 1em;
    border-right: none;
    border-left: none;
}

.wp-block-table thead {
    border-bottom: 0;
    background: var(--alt-blue);
    color: #fff;
}

.wp-block-table .table>:not(:first-child) {
    border: none;
}

figcaption {
    opacity: 0.6;
    font-size: .9em;
    font-style: italic;
}

.sm-text {
	font-size: .9em;
}

.wp-block-button {
	
}

.wp-block-button a {
    border-radius: 5px;
    font-size: .8em;
    font-weight: 600;
    box-shadow: 0 15px 25px -12px rgba(18, 67, 117, 0.35);
    transition: all .3s;
}

.wp-block-button a:hover {
    transform: translateY(2px);
    box-shadow: 0 9px 4px -9px rgba(18, 67, 117, 0.35);
}

.button-prime a {
	background: var(--blue);
	color: #fff;
}

.button-prime a:hover {
	color: #fff;
}

.button-second a {
	background: var(--alt-blue);
	color: #fff;
}

.button-second a:hover {
	color: #fff;
}

.button-light a {
    border: 1px solid rgba(0, 0, 0, 0.17);
    background: transparent;
    color: #3a3a3a;
}

.inverse-group {
    background: #0c0c1c;
    border-radius: 20px;
    padding: 3em;
    color: rgba(255, 255, 255, 0.6);
}

.inverse-group .wp-block-heading {
	color: #fff;
}

.section-gradient {
    background-image: linear-gradient(to bottom, #fff, #f5f8fa);
    position: relative;
    padding-bottom: 100px;
}

.section-gradient:after {
	content: "";
	display: block;
    z-index: 2;
    background-image: url(https://xutz.com/wp-content/uploads/2024/07/wave.svg);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50px;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.inverse-group .wp-block-heading {
	color: #fff;
}

.h-badge {
    border-radius: 30px;
    border: 2px solid #484848;
    display: inline-block;
    padding: 2px 10px;
    font-size: .75em;
    font-weight: 500;
    margin-bottom: .5em;
}

.main-content-wrapper {
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
}

.announcement-bar {
	background: #cacaca;
	color: #fff;
	height: 30px;
}

.site-header {
    background: #fff;
    padding: .8rem;
    border-bottom: 1px solid #ededed;
    position: fixed;
    width: 100%;
    z-index: 3;
    transition: all .5s;
}

.site-header > .container {
	align-items: center;
	display: flex;
}

.site-header .mm-toggle {
	display: none;
}

.site-header .site-branding img {
	max-width: 145px;
	height: auto;
}

.site-header .main-navigation {
	margin-left: auto;
	margin-right: auto;
}

.site-header .main-navigation ul {
	display: flex;
	list-style-type: none;
	margin: 0;
}

.site-header .main-navigation ul li {
    padding-left: 40px;
    margin: 0;
}

.site-header .main-navigation ul li a {
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    font-size: .8em;
    color: #101f30;
}

.site-header .header-actions {
	margin-left: auto;
}

.scrolled .site-header {
	box-shadow: 1px 10px 10px rgba(0,0,0,0.1);
}

.site-footer {
	margin-top: 2em;
	padding: 3em 0 0em;
	border-radius: 0;
}

.site-footer .copyright {
    text-align: center;
    font-size: .85rem;
    margin-top: 3em;
    background: rgb(0 0 0 / 30%);
    padding: 15px 0;
}

.site-footer > .container {
	display: flex;
	flex-wrap: nowrap;
}

.site-footer .footer-brand {
	width: 35%;
}

.site-footer .footer-brand .logo img {
	max-width: 190px;
}

.site-footer .footer-brand .desc {
	font-size: .9rem;
	margin-top: 20px;
}

.site-footer nav {
	width: 12%;
	margin-left: auto;
}

.site-footer nav ul {
	list-style-type: none;
	padding: 0;
}

.site-footer nav ul li {
	margin-bottom: 10px;
}

.site-footer nav ul li.nav-title {
	    border-bottom: 1px solid var(--alt-blue);
    padding-bottom: 8px;
}

.site-footer nav ul li a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: .9rem;
}

.site-footer nav ul li a:hover {
	color: #fff;
}

.site-footer nav ul li a:not([href]) {
	color: #fff;
	font-size: 1em;
}

.site-footer nav ul li a:not([href]):hover {
	color: #fff;
}

.breadcrumbs {
    position: relative;
    font-size: .8em;
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 6px;
}

.breadcrumbs a {
	text-decoration: none;
	color: #000;
}

.site-main {
	padding-top: 75px;
}

.entry-wrap-col {
	display: flex;
	flex-wrap: nowrap;
	gap: 2em;
}

.entry-wrap-col .entry-content {
	width: 80%;
}

.entry-wrap-col .entry-content a.anchor {
    display: block;
    position: relative;
    top: -70px;
    visibility: hidden;
}

.single-post .entry-content {
	max-width: 900px;
	margin: 0 auto;
}

.toc-wrap {
	width: 20%;
}

.toc-card {
	position: sticky;
	top: 120px;
}

.toc-card h4 {
    font-weight: 800;
    padding-bottom: 7px;
    border-bottom: 1px solid #cacaca;
    margin-bottom: .5em;
    font-size: 1.2rem;
}

.toc-card .toc-contents {
	padding: 0;
	list-style-type: none;
}

.toc-card .toc-contents li {

}

.toc-card .toc-contents li a {
	text-decoration: none;
	font-size: .9em;
}

.page-hero-clean {
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
    padding-top: 70px;
}

.page-hero-clean .left-col {
	align-self:center;
}

.page-hero-clean .hero-intro {
	font-size: .9em;
}

.page-hero-clean h1 {
    color: #101f30;
    font-size: 3em;
    font-weight: 900;
}

.page-hero-clean .focal-image {
	position: relative;
	z-index: -1;
}

.page-hero-clean .focal-image img {
    max-width: 136%;
    position: absolute;
    top: -70px;
    left: -8px;
}
.entry-header {
    padding: 1.8em 0;
    text-align: center;
    position: relative;
    margin-bottom: 3em;
}

.entry-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 100vw;
    background: #fdfdfd;
    z-index: -1;
    border-bottom: 1px solid #ebebeb;
}

.entry-header h1 {
    font-size: 3.4em;
}

.entry-header .authors {
    display: inline-block;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 500;
    margin: 1em 0;
    border: 1px solid #dbdbdb;
}

.entry-header .authors .inner {
	display: flex;
}

.entry-header .author .thumb img {
	max-width: 33px;
	border-radius: 50%;
	display: inline-block;
	margin: 0 3px;
}

.entry-header .author:after {
    content: "|";
    display: inline-block;
    margin: 0 .8em;
    opacity: 0.4;
    color: #314d85;
}

.entry-header .author:last-of-type:after {
	display: none;
}

.entry-header .date-wrap {
	font-size: .9em;
	margin-bottom: 1em;
	font-weight: 600;
}

.entry-header .date-wrap .published {

}

.entry-header .date-wrap .sep:before {
	display: inline-block;
	content: "|";
	margin: 0 10px;
}

.entry-header .date-wrap .updated {

}

.entry-header .read-more {
	max-width: 900px;
	margin: 0 auto;
	font-size: .9em;
}

.link-cards {

}

.link-cards .container {
	margin-bottom: 0;
}

.link-cards .wp-block-column {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.01);
    padding: 10px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
    margin-top: -40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.link-cards h2 {
    vertical-align: middle;
    font-size: 1.35em;
    margin: 0;
    margin-bottom: 10px;
    color: #000 !important;
}

.link-cards h2 a {
    text-decoration: none;
    color: #000;
}

.link-cards .wp-block-image {
	margin: 0;
	background: #fff;
	/* width: 57px; */
	border-radius: 7px;
	margin-bottom: 10px;
	display: inline-block;
	background: #fff;
}

.link-cards .wp-block-image img, .link-cards svg {
    max-width: 75px;
    display: block;
    width: 75px;
}

.link-cards p {
	font-size: .8em;
	color: #565656;
}

.link-cards ul {
	list-style-type: none;
	padding: 0;
	font-size: .8em;
}

.link-cards .wp-block-buttons {
	justify-content: center;
}

.link-cards .wp-block-button a {
    padding: calc(.267em + 2px) calc(1.333em + 2px);
}

.pros-cons {
	margin-bottom: 2em;
}


.pros-cons .pros-cons-inner {
    display: flex;
    justify-content: space-between;
    gap: 5%;
}

.pros-cons .pros, 
.pros-cons.cons {
    width: 45%;
}

.pros-cons h3 {
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 1px solid #cacaca;
    padding-bottom: 8px;
    font-weight: 800;
}

.pros-cons ul {
    list-style-type: none;
    padding-left: 0px;
}

.pros-cons li{
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.pros-cons li:before {
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 3px;
    content: "";
    display: inline-block;
    background-size: cover;	
}

.pros-cons .pros li:before {
    background-image: url(https://xutz.com/wp-content/uploads/2024/08/checkmark.svg);
}

.pros-cons .cons li:before {
    background-image: url(https://xutz.com/wp-content/uploads/2024/08/minus.svg);
    width: 25px;
    height: 25px;
}


.content-toggle {
    background: transparent;
    border: none;
    padding: 0;
    color: var(--blue);
    font-weight: 600;
    font-size: .9em;
}

.featured-logo-group h4 {
    font-size: .9em;
    font-weight: 800;
}

.featured-logo-group figure {
    display: inline-block;
    max-width: 130px;
    padding: 10px;
    opacity: 0.7;
    margin: 0 12px;
    vertical-align: middle;
}

.defirate-posts {

}

.defirate-posts.post-list-h {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
}

.defirate-posts li {
	width: 25%;
    clear: both;
    overflow-wrap: break-word;
    border: 1px solid #dddddd;
    padding: 1.4em;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(255, 255, 255, .25), 0 10px 20px -5px rgba(45, 62, 80, .15);
}

.defirate-posts.post-list-h.post-50 {
	flex-wrap: wrap;
	gap: 1%;
}

.defirate-posts.post-50 li {
	width: 48%;
}

.defirate-posts.post-50 li a {
	display: block;
}

.defirate-posts.post-50 li a img {
	width: 100%;
}

.defirate-posts .wp-post-image {
    border-radius: 20px;
/*    height: 200px;*/
    width: auto;
}

.defirate-posts .wp-block-latest-posts__post-title {
    color: #000;
    text-decoration: none;
    font-weight: 800;
    margin-top: 18px;
    display: block;
    margin-bottom: 7px;
    line-height: 1.4em;
}

.defirate-posts .wp-block-latest-posts__post-excerpt {
    margin-bottom: 1em;
    margin-top: .5em;
    font-size: .8em;
}

.defirate-posts .wp-block-latest-posts__read-more {
	display: none;
}

.defirate-accordion .accordion-item {
    background: var(--light-blue);
    margin-bottom: 10px;
    border: none;
    border-radius: 15px;
}

.defirate-accordion .accordion-header {
	margin-top: 0;
}

.defirate-accordion .accordion-button {
    background: transparent;
    box-shadow: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.3rem 1.25rem;
}

.defirate-accordion .accordion-button::after {
    content: "+";
    background-image: none;
}

.defirate-accordion .accordion-button:not(.collapsed)::after {
    transform: none;
    content: "-";
    background-image: none;
}

.defirate-accordion .accordion-button:not(.collapsed) {
	color: #000;
}

.defirate-accordion .accordion-body {
	font-size: .95rem;
	padding: .4rem 1.25rem 1rem 1.25rem;
}

.number-crunch {
/*	background: var(--blue);
	color: #fff;*/
	padding: 2em 0;
}

.number-crunch .stats {
	text-align: center;
	margin-top: 3em;
}

.number-crunch .stat-number {
    font-size: 3em;
    font-weight: 800;
    color: #000;
    text-align: center;
    margin-top: 0;
}

.geo-image {
	position: relative;
}

.geo-image:before {
    content: "";
    display: block;
    background: #ffefef;
    border-radius: 25px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: scale(.9);
    width: 100%;
    transform-origin: bottom right;
}

.geo-image img {
	position: relative;
}

.cta-card {
	padding: 2em;
	border-radius:15px;
	box-shadow: var(--box-shadow);
	border:1px solid #cacaca;
	margin-bottom: 2em;
}

.cta-card img {
	border-radius: 8px;
}

.cta-card table {
	box-shadow: none;
	margin: 0;
}

.cta-card h3 {
	font-weight: 800;
	margin-bottom: .8em;
	margin-top: 0;
}

.cta-card .wp-block-columns {
	margin: 0;
}

.author-card {
	border: 1px solid #cacaca;
	box-shadow: var(--box-shadow);
	border-radius: 20px;
	overflow: hidden;
	max-width: 700px;
	margin-top: 3em;
}

.single-post .author-card {
	max-width: 100%;
}

.author-card .author-header {
    background: var(--blue);
    color: #fff;
    padding: .5em .7em;
    margin-bottom: 0;
    font-size: 1.1em;
    font-weight: 800;
}

.author-card .inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 1em;
}

.author-card .thumb {
	margin-right: 12px;
}

.author-card .thumb img {
	border-radius: 50%;
}

.author-card .name {
    font-size: 1.6em;
    font-weight: 700;
    color: #000;
}

.author-card .bio {
	width: 100%;
	padding-top: 10px;
}

.author-card .actions {
	width: 100%;
}

.author-card .actions > div {
	float: right;
}

.author-archive {

}

.author-archive header {
	text-align: center;
	max-width: 900px;
	margin: 2em auto;

}

.author-archive header .name {
	font-size: 4em;
	color: #000;
}

.author-archive header .thumb {
	
}

.author-archive header .thumb img {
	border-radius: 50%;
}

.author-archive header .bio {
	margin-top: 10px;
}

.contact-form {
	text-align: center;
}

.contact-form .wpcf7-form {
    background-color: var(--alt-blue);
    max-width: 640px;
    padding: 40px;
    border-radius: 1em;
    color: #fff;
    font-weight: 800;
    text-align: left;
    margin: 0 auto;
    box-shadow: var(--box-shadow);
}

.contact-form label {
	display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: .2em;
    line-height: 2.3em;
    color: #fff;
}

.contact-form textarea {
	height: 170px;
}

.contact-form input:focus-visible, 
.contact-form textarea:focus-visible {
    border: none !important;
    outline: none;
    background: rgba(255, 255, 255, 0.6);
    color: #000;
}

.contact-form .wpcf7-not-valid-tip {
    color: #bfd4ff;
    font-size: .8em;
    font-weight: normal;
    display: block;
    font-style: italic;
}

.contact-form .wpcf7-spinner {
	display: none;
}

.contact-form input[type="submit"] {
    background: #fff;
    font-weight: 800;
    box-shadow: var(--box-shadow);
    color: #2970ff;
}


@media(max-width:1399px) {
	.container {
		max-width: 100% !important;
		width: 100%;
	}
}

@media(max-width:1199px) {

.site-main {
    padding-top: 55px;
}

.site-header {
	padding: 0;
}

.site-header .mm-toggle {
	display: block;
    width: auto;
    margin: 15px 22px 15px 0;
    cursor: pointer;
    border-radius: 5px;
    top: -3px;
    position: relative;
}

.site-header .mm-toggle .bar-cont {
    display: inline-block;
    width: 26px;
    position: relative;
    top: -8px;
    vertical-align: middle;
    left: 3px;
}

.site-header .mm-toggle .bar {
    height: 4px;
    width: 32px;
    position: absolute;
    background: var(--black);
    border-radius: 3px;
    transition: all .3s;
    opacity: 1;    
}

.site-header .mm-toggle .bar:nth-of-type(1) {width: 16px;}
.site-header .mm-toggle .bar:nth-of-type(2) {top: 7px;}
.site-header .mm-toggle .bar:nth-of-type(3) {
    top: 14px;
    width: 16px;
    margin-left: 16px;
}

.site-header .mm-toggle span {
    color: #fff;
    position: relative;
    top: 2px;
    text-transform: uppercase;
    font-size: .8em;
    font-weight: 600;
}

.site-header .mm-toggle span:before {
    /* content: "Explore"; */
    display: inline-block;
}

.mm-open .site-header .mm-toggle span:before {
/*    content: "Close";*/
    display: inline-block;
}

.mm-open .site-header .mm-toggle .bar {
    height: 4px;
    width: 20px;
    position: relative;
    border-radius: 3px;
}

.mm-open .site-header .mm-toggle .bar:nth-of-type(1) {
    top: 15px;
    transform: rotate(45deg);
    width: 30px;
}
.mm-open .site-header .mm-toggle .bar:nth-of-type(2) {transform: translateX(-10px); opacity: 0;}
.mm-open .site-header .mm-toggle .bar:nth-of-type(3) {
    top: 6px;
    transform: rotate(-45deg);
    width: 30px;
    left: -16px;
}

.site-header .main-navigation {
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    background: #fff;
    height: 100vh;
    top: 54px;
    left: 0;
    transition: all .3s;
    transform: translateX(-100%);
}

.mm-open .site-header .main-navigation {
	transform: translateX(0%);
}

.site-header .main-navigation ul {
    flex-wrap: wrap;
    padding-top: 1em;
}

.site-header .main-navigation ul li {
    padding-left: 0;
    margin: 0;
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.7em;
}

}

@media(max-width:767px) {

body {
    font-size: .9em;
}

.page-hero-clean {
    padding-top: 20px;
    padding-bottom: 0;
}

.page-hero-clean .focal-image {
	display: none;
}

.page-hero-clean .focal-img-col {
	display: none;
}

.home-cta-cols {
	gap: 0;
}

.inverse-group {
	padding: 1.6em;
}

.defirate-posts.post-list-h {
	flex-wrap: wrap;
}

.defirate-posts li {
	width: 100%;
}

.number-crunch .stat-number {
    margin-top: 0;
}

.site-footer > .container {
    display: flex;
    flex-wrap: wrap;
}

.site-footer > .container > *{
	width: 100%;
	margin-bottom: 1em;
}

.entry-wrap-col {
	display: block;
}

.entry-wrap-col > div {
	width: 100% !important;
}

.featured-logo-group .logo-group-inner > div {
	white-space: nowrap;
	overflow-x: scroll;
}

.featured-logo-group figure {
	margin: 0 2px;
}

}

@media(max-width:575px) {
	.section-gradient {
	    background-image: none;
	    position: relative;
	    padding-bottom: 0px;
	}

	.section-gradient:after {
		display: none;
	}

	.entry-content h2 {
    	margin-top: .4em;
	}

	.entry-header .authors .inner {
	    display: flex;
	    flex-wrap: wrap;
	    justify-content: center;
	    gap: 1em;
	}

	.entry-header .author:after {
		display: none;
	}

	.pros-cons .pros-cons-inner {
		display: block;
	}

	.pros-cons .pros, .pros-cons.cons {
	    width: 100%;
	}

}