/* CSS Variables */
:root{
	--blue:#3C1CC4;
	--green:#7BD128;
	--black:#1D1D1D;
	--dark-grey:#4F4F4F;
	--light-grey:#E0E0E0;
	--lavander:#CCCBF9;
	--light-mint:#F2FFE6;
	--dark-mint:#EFF5EA;
}
html, body, div, main, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup,
main, nav, section, summary {
    display: block;
}
audio,canvas, video {
    display: inline-block;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* General styling */
*, :before, :after {
  -webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:root {
  -webkit-tap-highlight-color: transparent; /* no more color over a link when tapped, usually iOS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; /* antialiasing, Mozilla only */
  -webkit-font-smooth: always; /* text has no sharp edges, Safari only */
}
html, body {
    overflow-x: hidden;
}
html {
	-ms-overflow-style: scrollbar; /* scrollbar in case of overflow for IE */
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	min-height: 100vh;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-justify-content: space-between;
	justify-content: space-between;
  font: 16px/1.5 "Inter", arial, sans-serif;
  font-weight:400;
  color: var(--black);
  background: #FFF;
}
h1, h2, h3, h4, h5, h6,
h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a,
article h1 a, article h2 a, article h3 a, article h4 a, article h5 a, article h6 a  {
	margin-bottom: 20px;
  text-rendering: optimizeLegibility;
	color:var(--blue)
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
	text-decoration:none;
}
article ul li,
article ol li,
article p {
	word-break: break-word;
}
article table tr:first-child{
	background:#d5d5d5!important;
}
article table tr:nth-child(odd){
	background:#f9f7f6;
}
article table tr:nth-child(even){
	background:#fff;
}
span {
  display: inline;
}
a {
	color: inherit;
  cursor: pointer;
	transition:.4s;
}
a:not([class]):focus {
  outline: none;
	box-shadow: none;
}
img, iframe {
	max-width: 100%;
	height: auto;
}
img.size-portrait-thumbnail {
	width:auto;
	max-width:unset;
}
i:not([class]), em, cite, dfn {
	font-style: italic;
}
ul, ol {
  margin: 0 0 25px 20px;
}
ol {
	list-style: decimal;
	list-style-position:inside;
}
ul {
	list-style: disc;
	list-style-position:inside;
}
nav ul, nav ol {
  margin: 0;
  list-style: none;
}
b, strong, th, legend {
	font-weight: bold;
}
small {
	font-size: 75%;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
  vertical-align: baseline;
}
sub {
	bottom: -.25em;
}
sup {
	top: -.5em;
}
abbr[title] {
  text-decoration: underline dotted;
}
abbr[data-original-title], abbr[title] {
  cursor: help;
}
del {
  text-decoration: line-through;
}
table {
	margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
	border-collapse: collapse;
	border-spacing: 0;
}
th, td {
	border: 1px solid #eceeef;
	padding: 10px;
}
caption {
	font-size: 15px;
  padding: 10px 0;
  caption-side: bottom;
}
figcaption {
  font-size:15px;
}
legend {
	margin-bottom: 5px;
}
label {
	display: block;
	cursor: pointer;
}
button, input, textarea {
	font-family: inherit;
	line-height: normal;
	margin: 0;
}
textarea {
	min-height: 80px;
	resize: vertical;
}
[type="submit"], [type="reset"], [type="button"],
[type="text"], [type="email"], [type="tel"], [type="search"],
button {
	border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
	appearance: none;
}
button, [type="submit"], [type="reset"], [type="button"] {
   cursor: pointer;
}
textarea:focus, button:focus,
div[contenteditable="true"]:focus, [class~="btn"]:focus,
[type="text"]:focus, [type="tel"]:focus, [type="email"]:focus, [type="password"]:focus, [type="submit"]:focus {
  outline: 0;
}
[hidden] {
	display: none;
}
[tabindex="-1"]:focus {
  outline: 0 !important;
}
p + h2, p + h3, p + h4,
ul + h2, ul + h3, ul + h4,
ol + h2, ol + h3, ol + h4,
code + h2, code + h3, code + h4,
table + h2, table + h3, table + h4,
blockquote + h1, blockquote + h2, blockquote + h3, blockquote + h4 {
    margin-top: 35px;
}
button[disabled],
html input[disabled] {
    cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}
input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}
/* WordPress Core */
.alignnone {
  margin: 5px 20px 5px 0;
}
.aligncenter,
div.aligncenter  {
  display: block;
  margin: 30px auto 40px auto;
}
div.aligncenter{
	width: 90%!important;
	margin: 0 auto;
}
div.aligncenter img{
	width: 100%;
}
.alignright {
  float:right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  background: #fff;
  max-width: 100%; /* Image does not overflow the content area */
  text-align: left;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  padding: 0;
  width: auto;
	border-radius: 10px;
}
.wp-caption p.wp-caption-text,
.wp-block-image figcaption, .has__gallery .gallery .gallery-caption{
	font-size: 14px;
	margin: 5px 0 10px;
	text-align: center;
	line-height: 22px;
}
.full-width {
	width:100%;
	overflow:hidden;
}
.has__gallery .gallery{
	margin: auto -6px;
	padding: 6px 0;
	line-height: 1;
	overflow-x: hidden;
}
.has__gallery .gallery .gallery-item {
	float: left;
	margin: 0;
	text-align: center;
	padding: 6px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.has__gallery .gallery-columns-1 .gallery-item {
	width: 100%!important;
}
.has__gallery .gallery-columns-2 .gallery-item {
	width: 50%!important;
}
.has__gallery .gallery-columns-3 .gallery-item {
	width: 33.333%!important;
}
.ie8 .has__gallery .gallery-columns-3 .gallery-item,
.ie7 .has__gallery .gallery-columns-3 .gallery-item {
	width: 33%!important;
}
.has__gallery .gallery-columns-4 .gallery-item {
	width: 25%!important;
}
.has__gallery .gallery-columns-5 .gallery-item {
	width: 20%!important;
}
.has__gallery .gallery-columns-6 .gallery-item {
	width: 16.665%!important;
}
.has__gallery .gallery-columns-7 .gallery-item {
	width: 14.285%!important;
}
.has__gallery .gallery-columns-8 .gallery-item {
	width: 12.5%!important;
}
.has__gallery .gallery-columns-9 .gallery-item {
	width: 11.111%!important;
}
.has__gallery .gallery img {
	max-width: 100%;
	height: auto;
	border: none !important;
	padding: 0;
	border-radius:10px;
}
@media(max-width:1200px){
	.has__gallery .gallery-columns-4 .gallery-item,
	.has__gallery .gallery-columns-5 .gallery-item,
	.has__gallery .gallery-columns-6 .gallery-item,
	.has__gallery .gallery-columns-7 .gallery-item,
	.has__gallery .gallery-columns-8 .gallery-item,
	.has__gallery .gallery-columns-9 .gallery-item {
		width:33%!important;
	}
}
@media(max-width:767px){
	.has__gallery .gallery-columns-2 .gallery-item,
	.has__gallery .gallery-columns-3 .gallery-item,
	.ie8 .has__gallery .gallery-columns-3 .gallery-item,
	.ie7 .has__gallery .gallery-columns-3 .gallery-item,
	.has__gallery .gallery-columns-4 .gallery-item,
	.has__gallery .gallery-columns-5 .gallery-item,
	.has__gallery .gallery-columns-6 .gallery-item,
	.has__gallery .gallery-columns-7 .gallery-item,
	.has__gallery .gallery-columns-8 .gallery-item,
	.has__gallery .gallery-columns-9 .gallery-item {
		width: 100%!important;
	}
}
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
    white-space: nowrap;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
.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;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}
#wpadminbar {
    /* display: none !important; */
}
html.js, html.no-js, html {
    margin-top: 0 !important;
}

/* End of WordPress Core */
/* General Theme Style */
.h-align{
  text-align:center;
}
.row:after,
.row:before{
	clear:both;
	display:block;
	width:100%;
	content:'';
}
.container{
	width:100%;
	max-width:1420px;
	padding:0px 15px;
	margin:0 auto;
	display:block;
	position:relative;
}
.container:not(.flex-row):not(.flex-column):before,
.container:not(.flex-row):not(.flex-column):after{
	content:"";
	display:block;
	clear:both;
}
.img-abs{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top:0;
	left: 0;
	max-width: 100%;
}
.screen{
	padding: 20px 0;
}
@media(min-width:1024px){
	.screen{
		padding: 50px 0;
	}
}
/* Row */
.row{
	display: block;
	width: 100%;
}
.row > .item{
	display: inline-block;
	padding: 10px;
	vertical-align: top;
}
.row > .item.full-item{
	width: 100%;
}
@media(min-width:768px){
	.row > .item.item50, .row > .item.item24{
		width: 50%;
		float: left;
	}
	.row > .item.item32{
		width: 33%;
		float: left;
	}
}
@media(min-width:1024px){
	.row > .item.item24{
		width: 25%;
		float: left;
	}
}
/* Flex */
.flex-row, .flex-row.reverse, .flex-column, .flex-column.reverse{
	display: flex;
	flex-direction: column;
}

.flex-column.reverse{
	flex-direction: column-reverse;
}
.flex-item{
	padding: 10px 0;
	position: relative;
}
.flex-item.full-item{
	width: 100%;
	flex: 1 1 100%;
}
@media(min-width:768px){
	.flex-row, .flex-row.reverse, .flex-column, .flex-column.reverse{
		margin-left: -15px;
		margin-right: -15px;
	}
	.flex-row.reverse{
		flex-direction: row-reverse;
	}
	.flex-row{
		flex-direction: row;
	}
	.flex-item{
		padding: 0 15px;
	}
	.flex-item.item45{
		flex: 1 1 45%;
	}
	.flex-item.item55{
		flex: 1 1 55%;
	}
	.flex-item.item50{
		flex: 1 1 50%;
	}
	.flex-item.item60{
		flex: 1 1 60%;
	}
}
.grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
	margin: 0 -10px;
}
.grid > .inner{
	padding:10px;
	max-width: 100%;
	flex: 1 1 100%;
}
@media(min-width:768px){
	.grid.grid-2 > .inner,
	.grid.grid-3 > .inner,
	.grid.grid-4 > .inner,
	.grid.grid-5 > .inner{
		flex: 1 1 50%;
		max-width: 50%;
	}
}
@media(min-width:850px){
	.grid.grid-4 > .inner,
	.grid.grid-5 > .inner{
		flex: 1 1 25%;
		max-width: 25%;
	}
	.grid.grid-3 > .inner{
		flex: 1 1 33%;
		max-width: 33%;
	}
}
@media(min-width:1024px){
	.grid.grid-5 > .inner{
		flex: 1 1 20%;
		max-width: 20%;
	}
}
/* Form Adds */
span.wpcf7-list-item{
  margin: 0;
}
.wpcf7-not-valid-tip{
  font-size: 12px;
  color:#ff0000;
  line-height: 16px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output{
  border: none;
	font-size: 16px;
  padding: 0;
  margin:20px 0 0;
  line-height: 18px;
	font-weight:bold;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.sent .wpcf7-response-output{
	color: #fff;
	display: inline-block;
	padding: 14px;
	border-radius: 20px;
	display: block;
	text-align: center;
}
.wpcf7 form.invalid .wpcf7-response-output{
	background: #ff0000;
}
.wpcf7 form.sent .wpcf7-response-output {
	background: green;
}
.wpcf7-form input[type=checkbox]{
  position: relative;
  visibility: hidden;
	width: auto;
	display: inline-block;
	padding: 0;
	line-height: 0;
}
.wpcf7-form input[type=checkbox]+span:before{
  display: block;
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  top: 0px;
  border: 1px solid #D3D3D3;
  left: 0;
	border-radius:4px;
}
.wpcf7-form input[type=checkbox]+span:after{
	display: block;
  position: absolute;
  height: 16px;
  width: 16px;
  top: 2px;
  left: 0;
  visibility: hidden;
  border-radius: 4px;
  background-image: url('../img/tick.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 11px;
  background-position: center;
}
.wpcf7-form input[type=checkbox]:checked+span:before{
  background-color: var(--green);
}
.wpcf7-form input[type=checkbox]:checked+span:after{
  visibility: visible
}
.form {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
	text-align: center;
}
.form input:not([type="submit"]):not([type="checkbox"]),
.form textarea,
.form select {
  width: 100%;
	border:0;
  border-bottom: 1px solid #D3D3D3;
  padding: 10px;
  font-size: 16px;
  line-height: 1;
  transition: 0.4s;
	background: transparent;
}
.form input:not([type="submit"]):not([type="checkbox"]):focus,
.form textarea:focus,
.form select:focus{
  border-bottom: 1px solid var(--green);
}
.form textarea{
	height: 60px;
	resize: none;
}
.form .item {
	position: relative;
	text-align: left;
}
.form .item:not(.terms-item):not(.full-item){
	margin-bottom: 15px;
}
.form .item:not(.terms-item):not(.full-item) label{
  font-size: 16px;
	position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.form .item:not(.terms-item):not(.full-item) label.has-value{
  top: 0px;
	font-size: 13px;
	color:var(--blue);
}
.form .row > .item.terms-item{
	padding-top:0;
}
.form .item.terms-item span {
  display: block;
  text-align: left;
  margin-bottom: 6px;
}
.form .item.terms-item span.wpcf7-form-control-wrap label {
  font-size: 14px;
  line-height: 16px;
}
.form .item.terms-item span.wpcf7-form-control-wrap label span{
  display: inline-block;
  width: 90%;
	padding-left: 14px;
	font-size: 14px;
	margin-left: 0;
}
.form a{
	color:var(--blue);
	text-decoration:underline;
}
.form a:hover{
	color:var(--black);
}
.form .btn {
  margin-top: 20px;
	min-width: 140px;
	justify-content: end;
	position: relative;
}
.form .btn input{
	position: absolute;
	color: var(--blue);
	background: unset;
	border: unset;
	font-size: 16px;
	font-weight: 700;
	text-align: left;
	width: 100%;
	left: 0;
	text-align: center;
	padding-right: 31px;
	height: 100%;
	border-radius: 68px;
}
.wpcf7-spinner{
	position: absolute !important;
	margin-right: -60px!important;
}
@media(max-width:767px){
  .form .item.item50,
	.form .item.full-item{
    width: 100%;
  }
	.form .item.terms-item span.wpcf7-form-control-wrap label span{
		font-size: 12px;
	}
}
/* Fonts */
h1{
	font-size: 30px;
	line-height: 125%;
	font-weight: 700;
}
h2{
	font-size: 26px;
	line-height: 133.33%;
	font-weight: 700;
}
h3{
	font-size: 24px;
	line-height: 128.5%;
	font-weight: 700;
}
h4{
	font-size: 22px;
	line-height: 32px;
	font-weight: 500;
}
h5, h6{
	font-size: 18px;
	line-height: 26px;
	font-weight: 500;
}
p, body{
	font-size: 14px;
	line-height: 1.5;
}
.large-text{
	font-size: 18px;
}
.medium-text, .text-16{
	font-size: 16px;
}
.text-14{
	font-size: 14px;
}
.small-text{
	font-size: 12px;
}
.info hr{
	margin:20px 0;
}
.category_label {
	display: inline-block;
	border-radius:16px;
	background-color:var(--light-mint);
	color:var(--blue);
	font-size:12px;
	line-height:16px;
	padding: 6px 10px;
	font-weight: 700;
	z-index: 1;
	max-width: calc(100% - 30px);
}
.info ul{
	list-style: none;
	margin-left: 0;
}
.info ul, .info ol{
	margin-top: 30px;
	text-align: left;
}
.info li{
	margin-bottom: 10px;
}
.info ul li{
	position: relative;
	padding-left: 33px;
}
.info ul li:before{
	display: block;
	content:'';
	position: absolute;
	top:10px;
	left: 0;
	width: 18px;
	height: 2px;
	background: var(--green);
}
.info p{
	margin-bottom: 20px;
}
time{
  color: var(--green);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px; /* 150% */
}
.info blockquote{
	margin:20px 0;
	border-radius: 10px;
	border: 1px solid var(--green);
	padding: 20px;
	padding-left: 80px;
	position: relative;
}
.info blockquote:before{
	display: block;
	content:'';
	position: absolute;
	top:20px;
	left: 20px;
	background-image: url('../img/blockquote.svg');
	background-size: contain;
	background-repeat: no-repeat;
	width: 40px;
	height: 24px;
}
.info blockquote, .info blockquote p{
	color:var(--blue);
	font-weight: 600;
	line-height: 144%;
	margin-bottom: 0;
	font-size: 16px;
}
.info ol{
	list-style: none;
	 counter-reset: item;
	 padding-left: 0;
	 margin-left: 0;
}
.info ol li{
	counter-increment: item;
  position: relative;
  padding-left: 30px;
	margin-bottom: 20px;
}
.info ol li::before {
  content: counter(item, decimal-leading-zero) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green); /* Change color as needed */
  font-weight: bold;
	font-size: 16px;
	line-height: 1.4;
}
@media(min-width:850px){
	h1{
		font-size: 36px;
	}
	h2{
		font-size: 26px;
	}
	h3{
		font-size: 24px;
	}
	.info blockquote{
		padding-left: 100px;
	}
	.info blockquote:before{
		width: 55px;
		height: 44px;
	}
}
@media(min-width:1024px){
	h1{
		font-size: 38px;
	}
	h2{
		font-size: 30px;
	}
	h3{
		font-size: 26px;
	}
	p, body{
		font-size: 16px;
	}
	.small-text{
		font-size: 14px;
	}
	.info ol li{
		padding-left: 40px;
	}
	.info ol li::before{
		font-size: 20px;
	}
}
@media(min-width:1367px){
	h1{
		font-size: 48px;
	}
	h2{
		font-size: 36px;
	}
	h3{
		font-size: 28px;
	}
	p, body{
		font-size: 18px;
	}
	.large-text, p.info, .text-20{
		font-size: 20px;
	}
	.medium-text, .text-18{
		font-size: 18px;
	}
	.category_label{
		font-size: 14px;
	}
	.text-22{
		font-size: 22px;
	}
	.info blockquote, .info blockquote p{
		font-size: 18px;
	}
}
.screen-title-container{
	text-align: center;
	max-width: 940px;
	margin: 0 auto;
}
.screen-title-container h1, .screen-title-container h2{
	margin-bottom: 10px;
}
/* Buttons */
.btn{
	display: inline-flex;
	text-decoration: none;
	padding: 12px 16px;
	border-radius: 68px;
	transition: .4s;
	align-items: center;
	gap:10px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	margin:5px;
	margin-left: 0;
}
.btn.blue{
	background: var(--blue);
	color:#fff;
	border:1px solid var(--blue);
}
.btn.blue svg{
	--btn-arrow:#fff;
}
.btn.blue:hover{
	background: #7759F5;
	border:1px solid #7759F5;
}
.btn.blue:active{
	background: #290DA2;
	border:1px solid #290DA2;
}
.btn.white, .btn.transparent-blue{
	border:1px solid var(--blue);
	color:var(--blue);
	background: #fff;
}
.btn.transparent-blue{
	background: transparent;
}
.btn.white svg, .btn.transparent-blue{
	--btn-arrow:var(--blue);
}
.btn.white:hover, .btn.transparent-blue:hover{
	background: #E4DEFF;
}
.btn.white:active, .btn.transparent-blue:active{
	background: #AD9CF5;
}
.btn.transparent-white{
	border:1px solid #fff;
	color:#fff;
	background: transparent;
}
.btn.transparent-white svg{
	--btn-arrow:#fff;
}
.btn.transparent-white:hover{
	background:#fff;
	color:var(--blue);
}
.btn.transparent-white:hover svg{
	--btn-arrow:var(--blue);
}
.cat_buttons{
	margin: 10px auto 30px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 900px;
}
.cat_button {
  display: inline-block;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  vertical-align: top;
  text-decoration: none;
  padding: 10px;
  transition: 0.4s;
	flex:1;
}
.cat_button:hover, .cat_button.active{
	color:var(--blue);
}
.cat_button figure{
	width: 80px;
  height: 80px;
	margin: 0px auto 10px;
	position: relative;
}
.cat_button figure:before{
	display: block;
	content:'';
	position: absolute;
	top:-3.5px;
	left: -3.5px;
	border-radius: 50%;
	width: calc(100% + 6.5px);
	height: calc(100% + 6.5px);
	opacity: 0;
	transition: .4s;
	border:1px solid var(--green);
}
.cat_button img {
  object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
.cat_button:hover figure:before, .cat_button.active figure:before{
	opacity: 1;
}
.read-more{
	font-size: 16px;
	font-weight: 700;
	line-height: 22.4px; /* 140% */
}
.read-more svg{
	--btn-arrow:#fff;
	margin-left: 5px;
	vertical-align: bottom;
}
.article-tags{
	margin: 0;
	border-top:1px solid var(--lavander);
	padding-top: 20px;
	align-items: flex-start;
	gap:10px;
	flex-direction: row;
}
.article-tags ul{
	margin: 0;
	list-style: none;
}
.article-tags p{
	margin-bottom: 0;
	padding-top: 2px;
	font-weight: 600;
}
.article-tags ul li{
	display: inline-block;
	padding: 2.5px;
}
.article-tags ul li a{
	border:1px solid var(--green);
	border-radius: 4px;
	text-decoration: none;
	font-size: 14px;
	padding: 3px 10px;
}
.article-tags ul li a:hover{
	background: var(--green);
	color:#fff;
}
.slider-nav{
	display: flex;
	align-items: center;
	justify-content: center;
	gap:10px;
}
.slider-nav .arrow{
	width: 34px;
	height: 34px;
	cursor: pointer;
}
.slider-nav .arrow svg{
	--arrow:var(--black);
	transition: .4s;
}
.slider-nav .arrow.next-arrow{
	transform:rotate(180deg);
}
.slider-nav .arrow svg:hover{
	--arrow:var(--green);
}
ul.slick-dots{
	margin: 0;
}
ul.slick-dots li{
	display: inline-block;
	padding: 0 5px;
	vertical-align: text-top;
	height: 10px;
}
ul.slick-dots li button{
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #D9D9D9;
  text-indent: -9999px;
	margin-bottom: 0;
	transition: .4s;
 }
ul.slick-dots li.slick-active button,
ul.slick-dots li button:hover{
	background-color:  var(--green);
}
@media(min-width:768px){
	.cat_button{
		font-size: 14px;
	}
	.btn{
		padding: 16px 22px;
		font-size: 16px;
	}
}
/* Breadcrumbs */
.breadcrumbs{
	position: absolute;
	z-index: 4;
	top:55px;
	left: 50%;
	transform:translateX(-50%);
	width: 100%;
	max-width: 1420px;
	padding: 20px 15px;
	color:#fff;
}
.breadcrumbs .separator{
	position: relative;
	width: 17px;
	text-indent: -999999999;
	color:transparent;
	display: inline-block;
}
.breadcrumbs .separator:after{
	display: block;
	content:'';
	background-image:url('../img/up-arrow.svg');
	background-repeat: no-repeat;
	background-size: contain;
	width: 9px;
	height: 6px;
	position: absolute;
	top:7px;
	transform:rotate(-90deg);
	left: 5px;
}
body.post-template-default.single .breadcrumbs .separator:after{
		background-image:url('../img/up-arrow-black.svg');
}
body.post-template-default.single .breadcrumbs{
	position: static;
	transform: unset;
	margin:0 auto;
	margin-top: 55px;
}
.breadcrumbs a:first-of-type{
	position: relative;
	width: 16px;
	text-indent: -999999999;
	color:transparent;
	display: inline-block;
	vertical-align: baseline;
	line-height: 0;
}
.breadcrumbs a:first-of-type:after{
	display: block;
	content:'';
	background-image:url('../img/home_icon.svg');
	background-repeat: no-repeat;
	background-size: contain;
	width: 16px;
	height: 16px;
	position: absolute;
  top: -10px;
}
.breadcrumbs a, .breadcrumbs span{
	text-decoration: none;
	font-size: 13px;
}
body.post-template-default.single .breadcrumbs a:not(:first-of-type), body.post-template-default.single .breadcrumbs span:not(.separator){
	color:var(--black);
}
.breadcrumbs a:hover{
	color:var(--green);
}
.breadcrumbs a:first-of-type:hover{
	color:transparent;
}
@media(min-width:1024px){
	.breadcrumbs{
		top:80px;
	}
	body.post-template-default.single .breadcrumbs{
		margin-top: 88px;
	}
}
/* Pagination */
.ws-navigation{
	display: block;
	width: 100%;
	text-align: center;
	clear: both;
}
.ws-navigation ul{
	margin: 0;
	list-style: none;
}
.ws-navigation ul li{
	display: inline-block;
	padding: 5px 8px;
}
.ws-navigation ul li a{
	display: inline-block;
	text-decoration: none;
	line-height: 1;
	position: relative;
	color:var(--black);
}
.ws-navigation ul li a:before{
	display: block;
	content:'';
	position: absolute;
	width: 22px;
	height: 22px;
	top:50%;
	left: 50%;
	transform:translate(-50%, -50%);
	background-color: var(--green);
	opacity: 0;
	border-radius:4px;
	z-index: -1;
	transition: .4s;
}
.ws-navigation ul li a:hover svg{
	color:var(--green);
}
.ws-navigation ul li.next a:before, .ws-navigation ul li.last a:before, .ws-navigation ul li.first a:before{
	display:none;
}
.ws-navigation ul li.next svg, .ws-navigation ul li.last svg{
	transform:rotate(-180deg)
}
.ws-navigation ul li.active a:before,
.ws-navigation ul li a:hover:before{
	opacity: 1;
}
.ws-navigation ul li.active a,
.ws-navigation ul li a:hover{
	color: #fff;
}
/* Gradients */
.bg-gradient{
	position: relative;
}
.bg-gradient:after{
	display: block;
	content:'';
	position:absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(169deg, rgba(24, 3, 115, 0.38) 40.89%, rgba(22, 43, 2, 0.62) 70.77%);
}
/* Special forms */
.oval-fig{
	position: relative;
	overflow: hidden;
	border-radius: 305px;
	height: 200px;
}
@media(min-width:768px){
	.oval-fig{
		height: 260px;
	}
}
@media(min-width:1024px){
	.oval-fig{
		height: 380px;
	}
}
/* Post preview */
.post-preview a{
	display: block;
	text-decoration: none;
}
.post-preview .inner{
	position:relative;
}
.post-preview .inner .category_label{
	position:absolute;
	top:15px;
	left:15px;
}
.post-preview figure{
	width: 100%;
	position: relative;
	overflow:hidden;
	border-radius:10px;
	height: 100%;
}
.post-preview figure img{
	transition:.4s;
}
.post-preview .inner{
	width: 100%;
	aspect-ratio: 1.6 / 1;
	overflow: hidden;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: end;
	transition: .4s;
}
.post-preview h3{
	color:#fff;
}
@media(min-width:768px){
	.post-preview .inner{
		aspect-ratio:1/1;
	}
}
/* post preview project */
.post-preview-project .featured {
  position: absolute;
}
.post-preview-project .featured:before{
	display: block;
	content:'';
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0, rgba(8, 7, 34, 0.30) 25.64%, rgba(0, 0, 0, 0.00) 44% );
	z-index: 1;
	border-radius:10px;
	opacity: .6;
	transition:.4s;
}
.post-preview-project:hover .featured:before{
	background: linear-gradient(0, rgba(8, 7, 34, 0.50) 35.64%, rgba(0, 0, 0, 0.00) 100% );
	opacity: 1;
}
.post-preview-project .category_label,
.post-preview-project .inner-content{
	z-index: 2;
}
/* Post preiew services */
.post-preview-serviciu .inner{
	height: 240px;
	aspect-ratio:unset;
}
.post-preview-serviciu .inner:before{
	display: block;
	content:'';
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 1;
	border-radius:10px;
}
.post-preview-serviciu .inner-content,
.post-preview-project .inner-content{
	z-index: 3;
	color: #fff;
	padding: 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.post-preview-project .inner-content{
	height: auto;
}
.post-preview-serviciu .inner-content h3,
.post-preview-project .inner-content h3{
	font-size: 22px;
	line-height: 1.2;
}
.post-preview-serviciu .inner-content p,
.post-preview-project .inner-content p{
	font-size: 14px;
	line-height: 19px;
}
.post-preview-serviciu .inner-content > h3,
.post-preview-project .inner-content > h3{
	position: absolute;
	bottom:0;
	left: 0;
	width: 100%;
	padding: 20px;
	margin:0;
	opacity: 1;
	transition: .4s;
}
.post-preview-serviciu .inner-content .inner-info,
.post-preview-project .inner-content .inner-info{
	flex:1;
	justify-content: space-between;
	display: flex;
	flex-direction: column;
	opacity: 0;
	transition: opacity .4s;
}
.post-preview-serviciu .inner-content .inner-info h3,
.post-preview-project .inner-content .inner-info h3{
	margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}
.post-preview-serviciu a:hover .inner-content > h3,
.post-preview-project:hover .inner-content > h3{
	bottom: 70%;
	opacity: 0;
}
.post-preview-serviciu a:hover .inner-content .inner-info,
.post-preview-project:hover .inner-content .inner-info{
	opacity: 1;
}
.post-preview-portrait {
	padding: 8px;
	border:1px solid var(--lavander);
	border-radius: 10px;
}
.post-preview-portrait .inner{
	aspect-ratio:unset;
	text-align: left;
}
.post-preview-portrait .inner h3, .post-preview-portrait .inner p{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.post-preview-portrait .inner h3{
	font-size: 18px;
	color:var(--black);
	margin:15px 0;
	transition: .4s;
	-webkit-line-clamp: 2;
}
.post-preview-portrait .inner p{
	font-size: 14px;
		-webkit-line-clamp: 3;
}
.post-preview-portrait .inner .read-more{
	margin:15px 0 10px;
	transition: .4s;
	color:var(--blue);
}
.post-preview-portrait .inner .read-more svg{
	--btn-arrow:var(--blue);
}
.post-preview-portrait .featured{
	aspect-ratio:2/1;
}
.post-preview-portrait .inner:hover .featured img{
	transform:scale(1.2);
}
.post-preview-portrait .inner:hover .read-more, .post-preview-portrait .inner:hover h3{
	color:var(--green);
}
.post-preview-portrait .inner:hover .read-more svg{
	--btn-arrow:var(--green);
}
.grecaptcha-badge{
	display: none!important;
}
