.wp-block{
	max-width: 1140px;
}

/* Common styles */
*{
	box-sizing: border-box;
}

html{
	scroll-behavior: smooth;
	overflow-x: hidden;
	width: 100%;
}

html.customize-preview{
	scroll-behavior: initial;
}

body{
	background-color: #ffffff;
	background-color: var(--colorLight);
	text-rendering: optimizeLegibility;
	word-break: break-word;
	width: 100%;
	position: relative;
	font-weight: 300;
}

body,
button,
input,
select,
textarea{
	color: #555555;
	color: var(--colorFont);
	font-family: Tahoma,Verdana,Arial,Helvetica,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.74;
	letter-spacing: .02em;
}

iframe{
	max-width: 100%;
}

figure,
img{
	margin: 0;
	max-width: 100%;
	height: auto;
}

figcaption{
	font-size: 14px;
	text-align: center;
	line-height: 1.4;
	padding: .2em 0.3em;
}

table{
	width: 100%;
	border-collapse: collapse;
}

td,
th{
	padding: .5em 1em;
}

th{
	text-align: inherit;
	background-color: #f7f7f7;
	background-color: var(--colorBackground);
}

.i th{
	background-color: transparent;
}

code{
	padding: 0 .5rem;
	font-size: 0.85rem;
	display: inline-block;
	background-color: #f7f7f7;
	background-color: var(--colorBackground);
}

pre{
	margin: 1.5em 0;
	max-width: 100%;
	overflow-x: auto;
	font-size: 0.85rem;
	padding: 1em;
	background-color: #f7f7f7;
	background-color: var(--colorBackground);
}

blockquote{
	margin: 2em 0;
	padding: 1em 0 1em 1.75em;
	border-left: 3px solid;
	border-color: #a17de8 !important;
	border-color: var(--colorMain) !important;
}

blockquote p{
	margin-bottom: .5em;
}

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

blockquote cite img{
	max-width: 50px;
	border-radius: 50%;
	margin-right: .5em;
	vertical-align: middle;
}

cite{
	font-style: normal;
	font-size: .92em;
}

a{
	outline: none;
	text-decoration: none;
	-webkit-transition: 0.2s all ease;
	transition: 0.2s all ease;
	color: #222222;
	color: var(--colorDarkMuted);
}

a:focus,
a:hover{
	color: #a17de8;
	color: var(--colorMain);
}

a:focus{
	outline: 1px dotted var(--colorDarkMuted);
	outline-offset: 2px;
}

ol,
ul,
dd{
	padding-left: 20px;
}

dt{
	font-weight: bolder;
}

dd{
	margin-left: 0;
}

ol.styled,
ul.styled{
	padding-left: 0;
	list-style: none;
}

ol.bordersul,
ul.bordersul{
	border-top: 1px solid var(--colorBorder);
	border-bottom: 1px solid var(--colorBorder);
}

ol.bordersli li,
ul.bordersli li{
	padding: .5em 0;
}

ol.bordersli li + li,
ul.bordersli li + li{
	border-top: 1px solid var(--colorBorder);
}

ol.styled{
	counter-reset: olc;
}

ol.styled li{
	counter-increment: olc;
}

ol.styled li:before{
	content: counter(olc) ". ";
	color: var(--colorMain);
}

ul.styled li:before{
	content: '';
	display: inline-block;
	width: .5em;
	height: .5em;
	margin-right: .5em;
	border-radius: 50%;
	background-color: var(--colorMain);
	position: relative;
	bottom: .05em;
}

nav > ul{
	margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6{
	color: #222222;
	color: var(--colorDarkMuted);
	line-height: 1.34;
	margin-top: 2em;
	margin-bottom: 1em;
	font-weight: 400;
}

h1:first-child:not([class*='mt-']),
h2:first-child:not([class*='mt-']),
h3:first-child:not([class*='mt-']),
h4:first-child:not([class*='mt-']),
h5:first-child:not([class*='mt-']),
h6:first-child:not([class*='mt-']){
	margin-top: 0;
}

h1{
	font-size: 2em;
}

h2{
	font-size: 1.5em;
}

h3{
	font-size: 1.3em;
}

h4{
	font-size: 1.2em;
}

h5{
	font-size: 1.1em;
}

h6{
	font-size: 1em;
}

p{
	margin-top: 0;
	margin-bottom: 1.5em;
}

p:last-child:after{
	content: '';
	display: block;
	clear: both;
}

address{
	margin-bottom: 1.5em;
}

hr{
	border: 0;
	height: 1px;
	background-color: #e1e1e1;
	background-color: var(--colorBorder);
}

mark{
	color: inherit;
	background-color: transparent;
}

.special{
	font-size: 2em;
	text-transform: uppercase;
}

.small{
	font-size: .92em;
}

.normal{
	font-size: 1em;
}

.big{
	font-size: 3em;
}

.huge{
	font-size: 4.5em;
}

/* Colors */
/* Light background section - default - no special CSS class .l - light .m - muted */
.l{
	background-color: #ffffff;
	background-color: var(--colorLight);
}

.m{
	background-color: #f7f7f7;
	background-color: var(--colorBackground);
}

/* Inverse background section - .i .m - muted .c - color */
.i{
	background-color: #444444;
	background-color: var(--colorDark);
	color: rgba(255, 255, 255, 0.8);
}

.i input,
.i select,
.i textarea{
	color: rgba(255, 255, 255, 0.8);
	border-color: rgba(255, 255, 255, 0.3);
}

.i ::-webkit-input-placeholder{
	color: rgba(255, 255, 255, 0.8);
}

.i ::-moz-placeholder{
	color: rgba(255, 255, 255, 0.8);
}

.i :-moz-placeholder{
	color: rgba(255, 255, 255, 0.8);
}

.i :-ms-input-placeholder{
	color: rgba(255, 255, 255, 0.8);
}

.i h1,
.i h2,
.i h3,
.i h4,
.i h5,
.i h6{
	color: #ffffff;
}

.i a{
	color: #fff;
}

.i a:focus,
.i a:hover{
	color: #a17de8;
	color: var(--colorMain);
}

.i .button:hover,
.i .button:focus,
.i button:hover,
.i button:focus,
.i input[type="reset"]:hover,
.i input[type="reset"]:focus,
.i input[type="button"]:hover,
.i input[type="button"]:focus,
.i input[type="submit"]:hover,
.i input[type="submit"]:focus{
	color: #fff;
}

.i.m{
	background-color: #222222;
	background-color: var(--colorDarkMuted);
}

.i.c{
	background-color: #a17de8;
	background-color: var(--colorMain);
}

.i.c.c2{
	background-color: #8a8dff;
	background-color: var(--colorMain2);
}

.i.c.gradient{
	background-image: -webkit-gradient(linear, left bottom, left top, from(#a17de8), to(#8a8dff));
	background-image: -webkit-linear-gradient(bottom, #a17de8, #8a8dff);
	background-image: linear-gradient(0deg, #a17de8, #8a8dff);
	background-image: -webkit-gradient(linear, left bottom, left top, from(var(--colorMain)), to(var(--colorMain2)));
	background-image: -webkit-linear-gradient(bottom, var(--colorMain), var(--colorMain2));
	background-image: linear-gradient(0deg, var(--colorMain), var(--colorMain2));
}

.i.c.gradient.horizontal{
	background-image: -webkit-gradient(linear, left top, right top, from(#a17de8), to(#8a8dff));
	background-image: -webkit-linear-gradient(left, #a17de8, #8a8dff);
	background-image: linear-gradient(90deg, #a17de8, #8a8dff);
	background-image: -webkit-gradient(linear, left top, right top, from(var(--colorMain)), to(var(--colorMain2)));
	background-image: -webkit-linear-gradient(left, var(--colorMain), var(--colorMain2));
	background-image: linear-gradient(90deg, var(--colorMain), var(--colorMain2));
}

.i.c.gradient.diagonal{
	background-image: -webkit-linear-gradient(45deg, #a17de8, #8a8dff);
	background-image: linear-gradient(45deg, #a17de8, #8a8dff);
	background-image: -webkit-linear-gradient(45deg, var(--colorMain), var(--colorMain2));
	background-image: linear-gradient(45deg, var(--colorMain), var(--colorMain2));
}

.i.c a:focus,
.i.c a:hover{
	color: #fff;
}

.i .svg-icon svg{
	fill: #fff;
}

.i .l.affix .svg-icon svg{
	fill: #222222;
	fill: var(--colorDarkMuted);
}

.i .affix.l,
.i .affix.l.m{
	color: #fff;
}

.i .affix.l a,
.i .affix.l.m a{
	color: #222222;
	color: var(--colorDarkMuted);
}

.i .affix.l a:hover,
.i .affix.l.m a:hover{
	color: #a17de8;
	color: var(--colorMain);
}

.i .section-hr{
	background-color: rgba(255, 255, 255, 0.3);
}

/*
**helpers
*/
.bordered{
	border: 1px solid;
	border-color: #e1e1e1;
	border-color: var(--colorBorder);
}

.i .bordered{
	border-color: rgba(255, 255, 255, 0.3);
}

.muted{
	background-color: #f7f7f7;
	background-color: var(--colorBackground);
}

.l.m .muted{
	background-color: #ffffff;
	background-color: var(--colorLight);
}

.i .muted{
	background-color: rgba(255, 255, 255, 0.1);
}

.shadow{
	box-shadow: 0 0 20px 0 rgba(100, 100, 100, 0.15);
}

.i .shadow{
	box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.1);
}

.bordered,
.muted,
.shadow{
	padding: 1.5em;
}

.rounded{
	border-radius: 10px;
	overflow: hidden;
}

.background-overlay{
	position: relative;
}

.background-overlay:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.55);
}

.background-overlay.overlay-light:before{
	background-color: rgba(255, 255, 255, 0.75);
}

.background-overlay > *{
	position: relative;
}

.background-cover{
	background-position: 50% 0;
	background-size: cover;
}

.background-cover.cover-center{
	background-position: 50% 50%;
}

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

.dropdown{
	position: relative;
}

/* text helpers */
.fs-9{
	font-size: 9px;
}

.fs-10{
	font-size: 10px;
}

.fs-11{
	font-size: 11px;
}

.fs-12{
	font-size: 12px;
}

.fs-13{
	font-size: 13px;
}

.fs-14{
	font-size: 14px;
}

.fs-15{
	font-size: 15px;
}

.fs-16{
	font-size: 16px;
}

.fs-17{
	font-size: 17px;
}

.fs-18{
	font-size: 18px;
}

.fs-19{
	font-size: 19px;
}

.fs-20{
	font-size: 20px;
}

.fs-21{
	font-size: 21px;
}

.fs-22{
	font-size: 22px;
}

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

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

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

/* hidden elements */
.hidden,
.d-none{
	display: none;
}

@media (max-width: 1599px) {
	.hidden-xl{
		display: none;
	}
}

@media (max-width: 1199px) {
	.hidden-lg{
		display: none;
	}
}

@media (max-width: 991px) {
	.hidden-md{
		display: none;
	}
}

@media (max-width: 767px) {
	.hidden-sm{
		display: none;
	}
}

@media (max-width: 599px) {
	.hidden-xs{
		display: none;
	}
}

.section{
	margin-left: -100em;
	margin-right: -100em;
	padding-left: 100em;
	padding-right: 100em;
}

.with-sidebar .section{
	margin-left: 0;
	margin-right: 0;
	padding-left: 1.5em;
	padding-right: 1.5em;
}

@media (max-width: 1200px) {
	.section.alignfull{
		padding-left: 0;
		padding-right: 0;
	}
}

.decor{
	position: relative;
	z-index: 2;
	-webkit-clip-path: inset(-60px 0);
	clip-path: inset(-60px 0);
}

.decor:before,
.decor:after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 60px;
	top: -59px;
	background-color: #ffffff;
	background-color: var(--colorLight);
	-webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	display: none;
}

.decor:after{
	top: auto;
	bottom: -59px;
	-webkit-transform: scaleY(-1) scaleX(-1);
	transform: scaleY(-1) scaleX(-1);
}

@media (max-width: 1199px) {
	.decor:before,
	.decor:after{
		height: 30px;
		top: -29px;
	}

	.decor:after{
		top: auto;
		bottom: -29px;
	}
}

.decor.section:before,
.decor.section:after{
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.decor.decor-t-inverse:before{
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

.decor.decor-b-inverse:after{
	-webkit-transform: scaleY(-1);
	transform: scaleY(-1);
}

.decor.chev-t:before{
	-webkit-clip-path: polygon(50% 100%, 100% 0, 100% 100%, 0 100%, 0 0);
	clip-path: polygon(50% 100%, 100% 0, 100% 100%, 0 100%, 0 0);
}

.decor.chev-b:after{
	-webkit-clip-path: polygon(50% 100%, 100% 0, 100% 100%, 0 100%, 0 0);
	clip-path: polygon(50% 100%, 100% 0, 100% 100%, 0 100%, 0 0);
}

.decor.arr-t:before{
	-webkit-clip-path: polygon(50% 0, 100% 0, 50% 100%, 0 0);
	clip-path: polygon(50% 0, 100% 0, 50% 100%, 0 0);
	-webkit-transform: scaleY(-1);
	transform: scaleY(-1);
}

.decor.arr-b:after{
	-webkit-clip-path: polygon(50% 0, 100% 0, 50% 100%, 0 0);
	clip-path: polygon(50% 0, 100% 0, 50% 100%, 0 0);
	-webkit-transform: none;
	transform: none;
}

.decor.m:before,
.decor.m:after{
	background-color: #f7f7f7;
	background-color: var(--colorBackground);
}

.decor.i:before,
.decor.i:after{
	background-color: #444444;
	background-color: var(--colorDark);
}

.decor.i.m:before,
.decor.i.m:after{
	background-color: #222222;
	background-color: var(--colorDarkMuted);
}

.decor.c:before,
.decor.c:after{
	background-color: #a17de8;
	background-color: var(--colorMain);
}

.decor.c2:before,
.decor.c2:after{
	background-color: #8a8dff;
	background-color: var(--colorMain2);
}

.decor.gradient:after{
	background-color: #8a8dff;
	background-color: var(--colorMain2);
}

.decor-t:before,
.decor-t-inverse:before,
.arr-t:before,
.chev-t:before,
.decor-b:after,
.decor-b-inverse:after,
.arr-b:after,
.chev-b:after{
	display: block;
}

.screen{
	min-height: 100vh;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
}

/* additional padding helpers */
.p-05{
	padding: .5em;
}

.p-1{
	padding: 1em;
}

.p-2{
	padding: 2em;
}

.p-3{
	padding: 3em;
}

.p-big{
	padding: 2em 8%;
}

.pt-0{
	padding-top: 0;
}

.pt-1{
	padding-top: 1em;
}

.pt-2{
	padding-top: 2em;
}

.pt-3{
	padding-top: 3em;
}

.pt-4{
	padding-top: 4em;
}

.pt-5{
	padding-top: 5em;
}

.pt-6{
	padding-top: 6em;
}

.pt-7{
	padding-top: 7em;
}

.pt-8{
	padding-top: 8em;
}

.pt-9{
	padding-top: 9em;
}

.pt-10{
	padding-top: 10em;
}

.pb-0{
	padding-bottom: 0;
}

.pb-1{
	padding-bottom: 1em;
}

.pb-2{
	padding-bottom: 2em;
}

.pb-3{
	padding-bottom: 3em;
}

.pb-4{
	padding-bottom: 4em;
}

.pb-5{
	padding-bottom: 5em;
}

.pb-6{
	padding-bottom: 6em;
}

.pb-7{
	padding-bottom: 7em;
}

.pb-8{
	padding-bottom: 8em;
}

.pb-9{
	padding-bottom: 9em;
}

.pb-10{
	padding-bottom: 10em;
}

/* additional margin helpers */
.mt-05{
	margin-top: .5em !important;
}

.mt-0{
	margin-top: 0 !important;
}

.mt-1{
	margin-top: 1em !important;
}

.mt-2{
	margin-top: 2em !important;
}

.mt-3{
	margin-top: 3em !important;
}

.mt-4{
	margin-top: 4em !important;
}

.mt-5{
	margin-top: 5em !important;
}

.mb-05{
	margin-bottom: .5em !important;
}

.mb-0{
	margin-bottom: 0 !important;
}

.mb-1{
	margin-bottom: 1em !important;
}

.mb-2{
	margin-bottom: 2em !important;
}

.mb-3{
	margin-bottom: 3em !important;
}

.mb-4{
	margin-bottom: 4em !important;
}

.mb-5{
	margin-bottom: 5em !important;
}

.h-1{
	height: 1px;
}

.h-2{
	height: 2px;
}

.h-3{
	height: 3px;
}

.h-4{
	height: 4px;
}

.h-5{
	height: 5px;
}

/* Light background section - default - no special CSS class .l - light .m - muted */
.l{
	background-color: #ffffff;
	background-color: var(--colorLight);
}

.m{
	background-color: #f7f7f7;
	background-color: var(--colorBackground);
}

/* Inverse background section - .i .m - muted .c - color */
.i{
	background-color: #444444;
	background-color: var(--colorDark);
	color: rgba(255, 255, 255, 0.8);
}

.i input,
.i select,
.i textarea{
	color: rgba(255, 255, 255, 0.8);
	border-color: rgba(255, 255, 255, 0.3);
}

.i ::-webkit-input-placeholder{
	color: rgba(255, 255, 255, 0.8);
}

.i ::-moz-placeholder{
	color: rgba(255, 255, 255, 0.8);
}

.i :-moz-placeholder{
	color: rgba(255, 255, 255, 0.8);
}

.i :-ms-input-placeholder{
	color: rgba(255, 255, 255, 0.8);
}

.i h1,
.i h2,
.i h3,
.i h4,
.i h5,
.i h6{
	color: #ffffff;
}

.i a{
	color: #fff;
}

.i a:focus,
.i a:hover{
	color: #a17de8;
	color: var(--colorMain);
}

.i .button:hover,
.i .button:focus,
.i button:hover,
.i button:focus,
.i input[type="reset"]:hover,
.i input[type="reset"]:focus,
.i input[type="button"]:hover,
.i input[type="button"]:focus,
.i input[type="submit"]:hover,
.i input[type="submit"]:focus{
	color: #fff;
}

.i.m{
	background-color: #222222;
	background-color: var(--colorDarkMuted);
}

.i.c{
	background-color: #a17de8;
	background-color: var(--colorMain);
}

.i.c.c2{
	background-color: #8a8dff;
	background-color: var(--colorMain2);
}

.i.c.gradient{
	background-image: -webkit-gradient(linear, left bottom, left top, from(#a17de8), to(#8a8dff));
	background-image: -webkit-linear-gradient(bottom, #a17de8, #8a8dff);
	background-image: linear-gradient(0deg, #a17de8, #8a8dff);
	background-image: -webkit-gradient(linear, left bottom, left top, from(var(--colorMain)), to(var(--colorMain2)));
	background-image: -webkit-linear-gradient(bottom, var(--colorMain), var(--colorMain2));
	background-image: linear-gradient(0deg, var(--colorMain), var(--colorMain2));
}

.i.c.gradient.horizontal{
	background-image: -webkit-gradient(linear, left top, right top, from(#a17de8), to(#8a8dff));
	background-image: -webkit-linear-gradient(left, #a17de8, #8a8dff);
	background-image: linear-gradient(90deg, #a17de8, #8a8dff);
	background-image: -webkit-gradient(linear, left top, right top, from(var(--colorMain)), to(var(--colorMain2)));
	background-image: -webkit-linear-gradient(left, var(--colorMain), var(--colorMain2));
	background-image: linear-gradient(90deg, var(--colorMain), var(--colorMain2));
}

.i.c.gradient.diagonal{
	background-image: -webkit-linear-gradient(45deg, #a17de8, #8a8dff);
	background-image: linear-gradient(45deg, #a17de8, #8a8dff);
	background-image: -webkit-linear-gradient(45deg, var(--colorMain), var(--colorMain2));
	background-image: linear-gradient(45deg, var(--colorMain), var(--colorMain2));
}

.i.c a:focus,
.i.c a:hover{
	color: #fff;
}

.i .svg-icon svg{
	fill: #fff;
}

.i .l.affix .svg-icon svg{
	fill: #222222;
	fill: var(--colorDarkMuted);
}

.i .affix.l,
.i .affix.l.m{
	color: #fff;
}

.i .affix.l a,
.i .affix.l.m a{
	color: #222222;
	color: var(--colorDarkMuted);
}

.i .affix.l a:hover,
.i .affix.l.m a:hover{
	color: #a17de8;
	color: var(--colorMain);
}

.i .section-hr{
	background-color: rgba(255, 255, 255, 0.3);
}

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail{
	max-width: 100%;
	height: auto;
	display: block;
}

.wp-caption{
	margin-bottom: 1em;
}

.wp-caption-text{
	font-size: 14px;
	text-align: center;
	line-height: 1.4;
	padding: .2em 0.3em;
	margin-bottom: 1em;
}

.sticky{
	display: block;
	position: relative;
}

.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;
}

.screen-reader-text:focus{
	background-color: var(--colorLight);
	clip: auto !important;
	-webkit-clip-path: none;
	clip-path: none;
	display: block;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

.gallery-item{
	text-align: center;
}

.gallery-item img{
	display: block;
	margin: auto;
}

.gallery-caption{
	font-size: 14px;
	text-align: center;
	line-height: 1.4;
	padding: .2em 0.3em;
}

.bypostauthor{
	display: block;
}

.alignleft{
	max-width: 50%;
	float: left;
	margin-top: 0;
	margin-right: 1.5em;
	margin-bottom: 1em;
	clear: both;
}

.alignright{
	max-width: 50%;
	float: right;
	margin-top: 0;
	margin-left: 1.5em;
	margin-bottom: 1em;
	clear: both;
}

.aligncenter{
	text-align: center;
	clear: both;
	margin-left: auto;
	margin-right: auto;
}

/* Gutenberg block editor styles */
.has-drop-cap:not(:focus):first-letter{
	font-size: 3.4em;
	line-height: .9;
}

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

.blocks-gallery-caption,
.wp-block-embed figcaption,
.wp-block-image figcaption{
	opacity: .7;
	width: 100%;
	display: block;
}

.wp-block-separator{
	margin-left: 0;
	margin-right: 0;
	min-width: 100px;
	max-width: 100px;
}

.wp-block-separator.is-style-dots{
	max-width: 200px;
}

.wp-block-separator.center:not([class*='align']){
	margin-left: auto;
	margin-right: auto;
}

.wp-block-separator.is-style-wide,
.wp-block-separator.alignfull,
.wp-block-separator.alignwide{
	max-width: none !important;
}

.wp-block-cover,
.wp-block-cover-image{
	position: relative !important;
	height: auto;
}

.container-1140 .wp-block-cover__inner-container{
	max-width: 1140px;
}

.container-960 .wp-block-cover__inner-container{
	max-width: 960px;
}

.container-720 .wp-block-cover__inner-container{
	max-width: 720px;
}

@media (max-width: 600px) {
	.wp-block-cover-image .wp-block-cover__inner-container,
	.wp-block-cover .wp-block-cover__inner-container{
		width: 100%;
		padding-top: 2em;
		padding-bottom: 2em;
	}
}

.wp-block-buttons.alignleft,
.wp-block-buttons.alignright{
	max-width: none;
}

.wp-block-buttons .wp-block-button{
	margin: 0 0 4px;
}

.wp-block-button__link:visited,
.wp-block-button__link:active,
.wp-block-button__link:hover{
	color: #fff;
	color: var(--colorLight);
	opacity: .75;
}

.is-style-outline .wp-block-button__link{
	background-color: transparent;
	border-color: #444444;
	color: #444444;
}

.wp-block-pullquote{
	padding: 0;
	border-top: none;
	border-bottom: none;
	position: relative;
}

.cols-padding .wp-block-pullquote{
	margin-top: -1.5em !important;
}

.wp-block-pullquote:before{
	color: #fff;
	background-color: var(--colorMain);
	content: '\201D';
	position: absolute;
	top: -20px;
	left: 50%;
	margin-left: -20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	line-height: 65px;
	font-size: 50px;
}

.wp-block-pullquote blockquote{
	border: none;
	padding: 30px 0 0;
	margin: 0;
	text-align: center;
}

.wp-block-pullquote p{
	font-size: 20px;
	line-height: 1.3;
	margin-bottom: 10px;
}

.wp-block-pullquote cite{
	font-size: 14px;
	text-transform: uppercase;
	font-style: normal;
}

.wp-block-quote[style*="text-align:right"],
.wp-block-quote[style*="text-align: right"]{
	padding-left: 0;
	padding-right: 1.25em !important;
}

.wp-block-gallery img{
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	opacity: .7;
}

.wp-block-gallery img:hover{
	opacity: 1;
}

.wp-block-image{
	line-height: 0;
}

.wp-block-image .alignleft{
	min-width: 60px;
	margin-right: 2em;
	margin-bottom: 1em;
}

.wp-block-image .alignright{
	min-width: 60px;
	margin-left: 2em;
	margin-bottom: 1em;
}

.wp-block-image .alignfull{
	max-width: none;
}

.wp-block-image.is-style-shadow{
	padding: 3px;
	border-radius: 3px;
	box-shadow: 0 0 10px 0 rgba(100, 100, 100, 0.3);
}

.wp-block-image.is-style-shadow > a{
	display: block;
	overflow: hidden;
}

.wp-block-image.is-style-shadow > a > img{
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.wp-block-image.is-style-shadow:hover > a > img{
	opacity: .7;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

.wp-block-image.is-style-bg-colormain img{
	padding: 20%;
	border-radius: 25%;
	background-color: var(--colorMain);
}

.wp-block-image.is-style-bg-colormain-round img{
	padding: 20%;
	border-radius: 50%;
	background-color: var(--colorMain);
}

@media (min-width: 768px) {
	.wp-block-media-text:not(.alignfull) .wp-block-media-text__content{
		padding: 0 0 0 8%;
	}

	.wp-block-media-text:not(.alignfull).has-media-on-the-right .wp-block-media-text__content{
		padding-right: 8%;
		padding-left: 0;
	}
}

@media (max-width: 767px) {
	.wp-block-media-text:not(.alignfull){
		display: block;
	}

	.wp-block-media-text:not(.alignfull) .wp-block-media-text__content{
		padding-top: 2em;
		padding-bottom: 2em;
	}
}

.wp-block-preformatted{
	white-space: pre-wrap;
}

p[style*='font-size'],
.has-medium-font-size,
.has-huge-font-size,
.has-large-font-size{
	line-height: 1.36;
	margin-bottom: .75em;
}

.has-huge-font-size{
	font-size: 1.65em;
}

.has-large-font-size{
	font-size: 1.45em;
}

.wp-block-table{
	margin-top: 1.5em;
	margin-bottom: 1.5em;
}

.wp-block-embed__wrapper{
	position: relative;
}

.wp-block-embed__wrapper:before{
	content: '';
	display: block;
}

.wp-block-embed__wrapper iframe{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{
	padding-top: 42.85%;
}

.wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{
	padding-top: 50%;
}

.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{
	padding-top: 56.25%;
}

.wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{
	padding-top: 75%;
}

.wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{
	padding-top: 100%;
}

.wp-block-embed.wp-embed-aspect-9-6 .wp-block-embed__wrapper:before{
	padding-top: 66.66%;
}

.wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper:before{
	padding-top: 200%;
}

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

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

.wp-block-search,
.wp-block-archives-list,
.wp-block-latest-posts,
.wp-block-categories-list{
	max-width: 360px;
}

[class*='wp-block'].is-grid{
	max-width: none;
}

.wp-block-latest-comments li{
	position: relative;
}

.wp-block-latest-comments article{
	display: inline-block;
}

.wp-block-latest-comments .avatar{
	position: absolute;
}

.wp-block-latest-posts__featured-image{
	margin-bottom: .75em;
}

.wp-block-latest-posts__featured-image + a{
	display: block;
	line-height: 1.34;
	margin-bottom: .25em;
}

.wp-block-latest-posts__post-date{
	color: var(--colorFontMuted);
}

.align-center{
	-webkit-box-align: center;
	align-items: center;
}

.has-background:not(hr):not(a):not(.wp-block-media-text):not(.rich-text){
	padding: 1.5em;
}

.has-background:not(hr):not(a):not(.wp-block-media-text):not(.rich-text) p:last-child{
	margin-bottom: 0;
}

[class*="wp-block-columns"] .wp-block-column > p:not([class*="mb-"]){
	margin-bottom: 1.5em;
}

.wp-block-columns{
	margin-bottom: 0;
}

.wp-block-column > *:first-child:not([class*='mt-']){
	margin-top: 0;
}

.wp-block-column:after{
	content: '';
	display: block;
	clear: both;
}

.cols-highlight > .wp-block-column{
	background-color: var(--colorBackground);
}

.cols-highlight.l.m > .wp-block-column{
	background-color: var(--colorLight);
}

.cols-highlight.i > .wp-block-column{
	background-color: rgba(255, 255, 255, 0.1);
}

.cols-bordered > .wp-block-column{
	border: 1px solid var(--colorBorder);
}

.cols-bordered.i > .wp-block-column{
	border-color: rgba(255, 255, 255, 0.15);
}

.cols-shadow > .wp-block-column{
	box-shadow: 0 0 20px 0 rgba(100, 100, 100, 0.15);
}

.cols-shadow-hover > .wp-block-column{
	position: relative;
	bottom: 0;
	-webkit-transition: all .15s ease-in;
	transition: all .15s ease-in;
}

.cols-shadow-hover > .wp-block-column:hover{
	bottom: 2px;
	box-shadow: 0 0 40px 0 rgba(100, 100, 100, 0.2);
}

.cols-padding > .wp-block-column{
	padding: 1.5em;
}

.cols-padding > .wp-block-column > .alignwide{
	margin-top: -1.5em;
	margin-left: -1.5em;
	max-width: none;
	width: calc(100% + 3em);
}

.cols-rounded > .wp-block-column{
	border-radius: 10px;
	overflow: hidden;
}

@media (max-width: 781px) and (min-width: 600px) {
	.wp-block-column{
		flex-basis: 0 !important;
		-webkit-box-flex: 1;
		flex-grow: 1;
	}
}

.wp-block-columns .gap-0 .wp-block-column:not(:first-child),
.gap-0 .wp-block-column:not(:first-child){
	margin-left: 0;
}

.wp-block-columns .gap-1 .wp-block-column:not(:first-child),
.gap-1 .wp-block-column:not(:first-child){
	margin-left: 1px;
}

.wp-block-columns .gap-2 .wp-block-column:not(:first-child),
.gap-2 .wp-block-column:not(:first-child){
	margin-left: 2px;
}

.wp-block-columns .gap-3 .wp-block-column:not(:first-child),
.gap-3 .wp-block-column:not(:first-child){
	margin-left: 3px;
}

.wp-block-columns .gap-5 .wp-block-column:not(:first-child),
.gap-5 .wp-block-column:not(:first-child){
	margin-left: 5px;
}

.wp-block-columns .gap-10 .wp-block-column:not(:first-child),
.gap-10 .wp-block-column:not(:first-child){
	margin-left: 10px;
}

.wp-block-columns .gap-15 .wp-block-column:not(:first-child),
.gap-15 .wp-block-column:not(:first-child){
	margin-left: 15px;
}

.wp-block-columns .gap-20 .wp-block-column:not(:first-child),
.gap-20 .wp-block-column:not(:first-child){
	margin-left: 20px;
}

.wp-block-columns .gap-30 .wp-block-column:not(:first-child),
.gap-30 .wp-block-column:not(:first-child){
	margin-left: 30px;
}

.wp-block-columns .gap-50 .wp-block-column:not(:first-child),
.gap-50 .wp-block-column:not(:first-child){
	margin-left: 50px;
}

.wp-block-columns .gap-60 .wp-block-column:not(:first-child),
.gap-60 .wp-block-column:not(:first-child){
	margin-left: 60px;
}

@media (max-width: 599px) {
	.wp-block-column .wp-block-column{
		flex-basis: auto !important;
	}

	.wp-block-column .wp-block-column:first-child,
	.wp-block-column .wp-block-column:last-child{
		min-width: 60px;
	}

	[class*='gap-'] > .wp-block-column:not(:first-child){
		margin-left: 0;
	}
}

@media (max-width: 781px) and (min-width: 600px) {
	.wp-block-column .wp-block-column{
		flex-basis: inherit !important;
	}
}

@media (max-width: 781px) {
	.cols-single-sm{
		display: block;
	}

	.cols-single-sm .wp-block-column{
		margin-bottom: 2em;
	}

	.cols-single-sm .wp-block-column:last-child{
		margin-bottom: 0;
	}

	.cols-single-sm .wp-block-column:not(:first-child){
		margin-left: 0;
	}

	.cols-single-sm .wp-block-column:empty{
		display: none;
	}
}

@media (max-width: 991px) {
	.cols-single-md{
		display: block;
	}

	.cols-single-md .wp-block-column{
		margin-bottom: 2em;
	}

	.cols-single-md .wp-block-column:last-child{
		margin-bottom: 0;
	}

	.cols-single-md .wp-block-column:not(:first-child){
		margin-left: 0;
	}

	.cols-single-md .wp-block-column:empty{
		display: none;
	}
}

@media (max-width: 1199px) {
	.cols-single-lg{
		display: block;
	}

	.cols-single-lg .wp-block-column{
		margin-bottom: 2em;
	}

	.cols-single-lg .wp-block-column:last-child{
		margin-bottom: 0;
	}

	.cols-single-lg .wp-block-column:not(:first-child){
		margin-left: 0;
	}

	.cols-single-lg .wp-block-column:empty{
		display: none;
	}
}

.cols-single{
	display: block;
}

.cols-single .wp-block-column:not(:first-child){
	margin-left: 0;
}

.cols-single .wp-block-column:empty{
	display: none;
}

.cols-single-none{
	flex-wrap: nowrap;
}

@media (max-width: 599px) {
	.wp-block-column{
		margin-bottom: 2em;
	}

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

.has-background-dim{
	color: rgba(255, 255, 255, 0.75);
}

.has-light-color{
	color: var(--colorLight);
}

.has-font-color{
	color: var(--colorFont);
}

.has-font-muted-color{
	color: var(--colorFontMuted);
}

.has-background-color{
	color: var(--colorBackground);
}

.has-border-color{
	color: var(--colorBorder);
}

.has-dark-color{
	color: var(--colorDark);
}

.has-dark-muted-color{
	color: var(--colorDarkMuted);
}

.has-main-color{
	color: var(--colorMain);
}

.has-main-2-color{
	color: var(--colorMain2);
}

.has-light-background-color{
	background-color: var(--colorLight);
}

.has-font-background-color{
	background-color: var(--colorFont);
}

.has-font-muted-background-color{
	background-color: var(--colorFontMuted);
}

.has-background-background-color{
	background-color: var(--colorBackground);
}

.has-border-background-color{
	background-color: var(--colorBorder);
}

.has-dark-background-color{
	background-color: var(--colorDark);
}

.has-dark-muted-background-color{
	background-color: var(--colorDarkMuted);
}

.has-main-background-color{
	background-color: var(--colorMain);
}

.has-main-2-background-color{
	background-color: var(--colorMain2);
}

.alignfull{
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	max-width: none;
}

@media (min-width: 1200px) {
	.alignfull{
		padding-left: 7px;
		padding-right: 7px;
	}
}

.alignfull.wp-block-image > img{
	max-width: none;
	width: 100vw;
}

.with-sidebar #columns .alignfull{
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	left: 0;
	right: 0;
	padding-left: 0;
	padding-right: 0;
}

.with-sidebar .alignfull > img{
	max-width: 100%;
	width: auto;
}

@media screen and (min-width: 1300px) {
	.alignwide{
		margin-left: -3em;
		max-width: none;
		width: calc(100% + 6em);
	}
}

@media screen and (min-width: 1400px) {
	.alignwide{
		margin-left: -5em;
		max-width: none;
		width: calc(100% + 10em);
	}
}

.with-sidebar #columns .alignwide{
	max-width: 100%;
	width: auto;
	margin-left: 0;
}

@media (max-width: 767px) {
	.wp-block-columns.cols-single-sm > .block-editor-inner-blocks > .block-editor-block-list__layout{
		display: block;
	}

	.wp-block-columns.cols-single-sm > .block-editor-inner-blocks > .block-editor-block-list__layout > [data-type="core/column"]{
		margin-left: 14px;
		margin-bottom: 40px;
	}
}

@media (max-width: 991px) {
	.wp-block-columns.cols-single-md > .block-editor-inner-blocks > .block-editor-block-list__layout{
		display: block;
	}

	.wp-block-columns.cols-single-md > .block-editor-inner-blocks > .block-editor-block-list__layout > [data-type="core/column"]{
		margin-left: 14px;
		margin-bottom: 40px;
	}
}

@media (max-width: 1199px) {
	.wp-block-columns.cols-single-lg > .block-editor-inner-blocks > .block-editor-block-list__layout{
		display: block;
	}

	.wp-block-columns.cols-single-lg > .block-editor-inner-blocks > .block-editor-block-list__layout > [data-type="core/column"]{
		margin-left: 14px;
		margin-bottom: 40px;
	}
}

.wp-block-columns.cols-single > .block-editor-inner-blocks > .block-editor-block-list__layout{
	display: block;
}

.wp-block-columns.cols-single > .block-editor-inner-blocks > .block-editor-block-list__layout > [data-type="core/column"]{
	margin-left: 14px;
	margin-bottom: 40px;
}

.cols-highlight .wp-block-column{
	background-color: var(--colorBackground);
}

.cols-highlight.l.m .wp-block-column{
	background-color: var(--colorLight);
}

.cols-highlight.i .wp-block-column{
	background-color: rgba(255, 255, 255, 0.1);
}

.cols-bordered .wp-block-column{
	border: 1px solid var(--colorBorder);
}

.cols-shadow .wp-block-column{
	box-shadow: 0 0 20px 0 rgba(100, 100, 100, 0.15);
}

.cols-rounded .wp-block-column{
	overflow: hidden;
	border-radius: 10px;
}

.cols-padding .wp-block-column{
	padding: 1.5em;
}

.block-editor-block-list__layout .block-editor-block-list__block .block-editor-block-list__block-edit:before{
	z-index: 1;
}

.wp-block-media-text .block-editor-inner-blocks .block-editor-inner-blocks{
	padding: 0;
}

.decor-t{
	margin-top: 80px;
}

.decor-b{
	margin-bottom: 80px;
}

.wp-block-buttons .block-list-appender,
.wp-block-buttons .wp-block.block-editor-block-list__block[data-type="core/button"]{
	margin-top: 0;
	margin-bottom: 0;
}

.wp-block-buttons .wp-block-button{
	margin: 0 4px 4px;
}

.wp-block-button__link{
	position: relative;
	border: 3px solid;
	border-color: transparent;
	display: inline-block;
	line-height: 1;
	font-size: .92em;
	font-weight: normal;
	text-align: center;
	padding: 10px 18px 10px;
	border-radius: 1px;
	background-color: #444444;
	background-color: var(--colorDark);
	color: #ffffff;
	color: var(--colorLight);
	-webkit-transition: color .25s, background-color .25s, border-color .25s ease-out, opacity .25s ease-out;
	transition: color .25s, background-color .25s, border-color .25s ease-out, opacity .25s ease-out;
}

.wp-block.block-editor-block-list__block[data-type="core/separator"]{
	padding-top: 2px;
	padding-bottom: 2px;
}

.wp-block .section{
	margin-left: 0;
	margin-right: 0;
	padding-left: 1.5em;
	padding-right: 1.5em;
}

@media (min-width: 1200px) {
	.wp-block .section{
		margin-left: -100px;
		margin-right: -100px;
		padding-left: 100px;
		padding-right: 100px;
	}
}

.alignfull{
	width: auto;
	left: 0;
	right: 0;
	margin-left: 0;
	margin-right: 0;
}

body{
	font-size: 16px !important;
}

.editor-post-title__block .editor-post-title__input{
	font-family: inherit;
}

@media (min-width: 600px) {
	.block-editor-block-list__layout .block-editor-block-list__block[data-align=full]{
		margin-left: auto;
		margin-right: auto;
		max-width: none;
	}
}
