/* BEGIN of THEME COLORS ---------------------------------------------------------- */

:root {
/* 	--theme-color: #00819d; */
	--theme-color: var(--wp--preset--color--accent);
/* 	--theme-color-lighter: #46b8cf; */
	--theme-color-lighter: var(--wp--preset--color--accent-2);
/* 	--theme-color-orange: #f96128; */
	--theme-color-orange: var(--wp--preset--color--accent-3);
/* 	--theme-color-green: #acd58a; */
	--theme-color-green: var(--wp--preset--color--accent-4);
/* 	--theme-color-green-lighter: #cfe5b5; */
	--theme-color-green-lighter: var(--wp--preset--color--accent-5);


	--wp--preset--shadow--crisp: 8px 8px 0px var(--theme-color-lighter);

	--theme-color-text: #232323;

	--wp--preset--color--base: #FFFEFA;
}

/*  */

html body .bg-white {
	background-color: #ffffff;
}

html body .bg-gray {
	background-color: #dddddd;
}

html body .bg-theme {
	background-color: var(--theme-color);
}

html body .bg-theme-lighter {
	background-color: var(--theme-color-lighter);
}

html body .bg-theme-orange {
	background-color: var(--theme-color-orange);
}

html body .bg-theme-green {
	background-color: var(--theme-color-green);
}

html body .bg-theme-green-lighter {
	background-color: var(--theme-color-green-lighter);
}



/*  */

html body .color-white {
	color: #ffffff;
}

html body .color-gray {
	color: #666666;
}

html body .color-theme {
	color: var(--theme-color);
}

html body .color-theme-lighter {
	color: var(--theme-color-lighter);
}

html body .color-theme-orange {
	color: var(--theme-color-orange);
}

html body .color-theme-green {
	color: var(--theme-color-green);
}

html body .color-theme-green-lighter {
	color: var(--theme-color-green-lighter);
}



/* END of THEME COLORS ---------------------------------------------------------- */
/* BEGIN of Basic Tags and General styles ---------------------------------------------------------- */

html {
	scroll-behavior: smooth;
	scroll-padding-top: 0;
}

a {
	color: inherit;
	text-decoration: none;
	outline: none;
	transition: all .3s ease;
}

a:hover {
	opacity: 0.7;
	text-decoration: none;
	color: inherit;
	outline: none;
}

a:active {
	opacity: 0.6;
	outline: none;
	color: inherit;
	text-decoration: none;
}

a:focus {
	outline: none;
	color: inherit;
	text-decoration: none;
}

button, input, textarea, select {
	transition: all .3s ease;
}

button:hover, input:hover, textarea:hover, select:hover {
	opacity: 0.8;
}

.hide, .hidden {
	display: none;
}

/*  */

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

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

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

/*  */

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	padding-left: 15px;
	padding-right: 15px;
}

[class*="col-"] {
	padding-left: 15px;
	padding-right: 15px;
}

.row {
	margin-left: -15px;
	margin-right: -15px;
}

/*  */

.box-wr {
	padding: 80px 0 80px;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}

/*  */

.img-wr {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}

.img-wr img {
	display: block;
	margin: 0 auto 0;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.img-wr > a {
	display: block;
	overflow: hidden;
	width: 100%;
	-webkit-backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	-webkit-transition: all .7s ease;
	transition: all .7s ease;
}

.img-wr:hover a img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

/*  */

.display-inline-block {
	display: inline-block;
	vertical-align: middle;
}

.display-block {
	display: block;
}

.display-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.display-inline-flex {
	display: inline-flex;
	align-items: center;
}

.vertical-align-wrapper {
	display: table;
	width: 100%;
	height: 100%;
}

.vertical-align-middle {
	display: table-cell;
	vertical-align: middle;
}

.vertical-align-bottom {
	display: table-cell;
	vertical-align: bottom;
}

/*  */

.tdu {
	text-decoration: underline;
}

.ttu {
	text-transform: uppercase;
}

.ttn {
	text-transform: none;
}

/*  */

.slide-item {
	outline: none;
}

/*  */

body .gallery-thumb-item {
	margin: 0 0 15px;
	padding: 0 0 0;
	display: block;
	position: relative;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
}

.gallery-thumb-item img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.gallery-thumb-item:before {
	position: absolute;
	left: 0;
	right: 0;
	top: -100px;
	bottom: 100%;
	width: 30px;
	height: 30px;
	line-height: 1;
	font-size: 30px;
	color: #ffffff;
	margin: auto;
	text-shadow: 0px 1px 3px #222222;
	font-family: "FontAwesome";
	content: "\f00e";
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.gallery-thumb-item[href*="youtube"]:before {
	content: "\f01d";
}

.gallery-thumb-item:hover:before {
	top: 0;
	bottom: 0;
}

/*  */

.columns-same-height > * {
	margin-bottom: 30px;
}

.columns-same-height > * > * {
	height: 100%;
	margin-bottom: 0;
}

/*  */

.justify-content-center,
.display-flex.text-center {
	gap: 30px;
	justify-content: center;
}

.justify-content-start {
	justify-content: flex-start;
}

.justify-content-end {
	justify-content: flex-end;
}

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

.align-items-start {
	align-items: flex-start;
}

.align-items-end {
	align-items: flex-end;
}

/*  */

.row-reverse {
	flex-direction: row-reverse;
}

.bordered-top {
	border-top: 1px solid var(--theme-color);
}

.bordered-bottom {
	border-bottom: 1px solid var(--theme-color);
}

/* END of Basic Tags and General styles ---------------------------------------------------------- */

/*  */

html body header .wp-element-button,
html body footer .wp-element-button {
	box-shadow: none;
	border-width: 2px;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 0 60px;
	padding: 9px 20px 7px;
	min-width: 196px;
}

html body header .wp-element-button:hover,
html body footer .wp-element-button:hover {
	background-color: var(--theme-color);
	color: #ffffff !important;
}

html body footer .wp-element-button {
	margin: 0 0 0 15px;
}

html body .wp-element-button {
	outline: 0px solid;
	outline-color: var(--theme-color);
	outline-offset: -1px;
	text-shadow: none;
	transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

html body .wp-element-button:hover {
	outline: 1px solid;
	opacity: 1;
	outline-color: rgba(0, 0, 0, 0);
	outline-offset: 15px;
	--wp--preset--shadow--crisp: 2px 2px 0px var(--theme-color-text);
}

/*  */

.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color, .has-background):hover {
	background-color: var(--theme-color-lighter);
	color: var(--wp--preset--color--base);
	border-color: var(--theme-color-lighter);
}

.wp-block-button__link.has-accent-5-background-color {
	--wp--preset--shadow--crisp: 8px 8px 0px var(--theme-color-green);
}

.wp-block-button__link.has-accent-5-background-color:not(:hover) {
	outline-color: var(--theme-color-green-lighter);
}

.wp-block-button__link.has-accent-2-background-color:not(:hover) {
	--wp--preset--shadow--crisp: 8px 8px 0px var(--theme-color);
}

.is-style-outline .wp-block-button__link.has-contrast-color:not(:hover) {
	--wp--preset--shadow--crisp: 8px 8px 0px var(--theme-color-text);
}

header.wp-block-template-part {
	z-index: 100;
	position: relative;
}

/*  */

:where(.wp-site-blocks *:focus) {
	outline: none;
}

.admin-bar .wp-block-navigation .has-child:not(.open-on-click)>.wp-block-navigation__submenu-container {
	top: 117px;
}

.wp-block-navigation .has-child:not(.open-on-click)>.wp-block-navigation__submenu-container {
	top: 85px;
	width: auto;
	position: absolute;
	position: fixed;
	z-index: 55;
	left: 0 !important;
	right: 0;
	bottom: 0;
	width: 100%;
	display: flex;
	text-align: center;
	justify-content: space-evenly;
	align-items: center;
	align-content: center;
	padding: 80px 0 80px;
	/* gap: 20px; */
	background: var(--wp--preset--color--base);
}

.wp-block-navigation-item.wp-block-navigation-submenu > a {
	position: relative;
}

.wp-block-navigation-item.wp-block-navigation-submenu > a:after {
	position: absolute;
	left: 0;
	right: -25px;
	top: 90%;
	height: 35px;
	content: "";
}

ul.wp-block-navigation__submenu-container.wp-block-navigation-submenu a {
	padding: 13px 15px 13px;
	font-size: 40px;
	line-height: 1.1;
	text-transform: uppercase;
	margin: 0 0 0;
	display: inline-flex;
}

ul.wp-block-navigation__submenu-container.wp-block-navigation-submenu a:after {
	content: '';
	display: block;
	position: absolute;
	left: 100%;
	top: 0;
	margin: -13px 1px 0;
	width: 36px;
	height: 36px;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='54' height='50' fill='none' viewBox='0 0 54 50'><path d='m10.5 24.5c-4 0-7.5 2.8-8.2 6.8l-2 10.3 3.6 0.8c8.3 1.5 16.2-3.9 17.8-12.1l3.4-17.5c0.9-4.9-2.2-9.5-7.1-10.5l-12.1-2.3-2.4 12.5c-1 5.2 2.1 10.3 7 12z' fill='rgba(249, 97, 40, 1)'/><path d='m37.3 48.8l3.7 0.7 2-10.3c0.7-4.1-1.5-7.9-5.1-9.4 5.2 0.2 9.9-3.4 10.9-8.6l2.4-12.5-12.1-2.3c-4.8-0.9-9.5 2.2-10.5 7.1l-3.3 17.5c-1.6 8.2 3.8 16.2 12 17.8z' fill='rgba(249, 97, 40, 1)'/></svg>");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transition: all .5s ease;
	opacity: 0;
}

ul.wp-block-navigation__submenu-container.wp-block-navigation-submenu a:hover {
	color: var(--theme-color-orange);
	opacity: 1;
/* 	font-style: italic; */
}

ul.wp-block-navigation__submenu-container.wp-block-navigation-submenu a:hover:after {
	opacity: 1;
}

.wp-block-navigation .wp-block-navigation__submenu-icon {
	margin-top: -3px;
}






























/*  */

.box-services-rows h2.wp-block-heading,
html body .heading-with-butterfly {
	display: inline-flex;
	position: relative;
	margin: 0 0 15px;
}

.box-services-rows h2.wp-block-heading:after,
html body .heading-with-butterfly:after {
	margin: -32px -74px 0 0;
	width: 54px;
	height: 50px;
	padding: 0 0 0;
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='54' height='50' fill='none' viewBox='0 0 54 50'><path d='m10.5 24.5c-4 0-7.5 2.8-8.2 6.8l-2 10.3 3.6 0.8c8.3 1.5 16.2-3.9 17.8-12.1l3.4-17.5c0.9-4.9-2.2-9.5-7.1-10.5l-12.1-2.3-2.4 12.5c-1 5.2 2.1 10.3 7 12z' fill='rgba(249, 97, 40, 1)'/><path d='m37.3 48.8l3.7 0.7 2-10.3c0.7-4.1-1.5-7.9-5.1-9.4 5.2 0.2 9.9-3.4 10.9-8.6l2.4-12.5-12.1-2.3c-4.8-0.9-9.5 2.2-10.5 7.1l-3.3 17.5c-1.6 8.2 3.8 16.2 12 17.8z' fill='rgba(249, 97, 40, 1)'/></svg>");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

html body .heading-with-butterfly.butterfly-color-theme:after {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='54' height='50' fill='none' viewBox='0 0 54 50'><path d='m10.5 24.5c-4 0-7.5 2.8-8.2 6.8l-2 10.3 3.6 0.8c8.3 1.5 16.2-3.9 17.8-12.1l3.4-17.5c0.9-4.9-2.2-9.5-7.1-10.5l-12.1-2.3-2.4 12.5c-1 5.2 2.1 10.3 7 12z' fill='rgba(0, 129, 157, 1)'/><path d='m37.3 48.8l3.7 0.7 2-10.3c0.7-4.1-1.5-7.9-5.1-9.4 5.2 0.2 9.9-3.4 10.9-8.6l2.4-12.5-12.1-2.3c-4.8-0.9-9.5 2.2-10.5 7.1l-3.3 17.5c-1.6 8.2 3.8 16.2 12 17.8z' fill='rgba(0, 129, 157, 1)'/></svg>");
}

html body .heading-with-butterfly.butterfly-color-theme-lighter:after {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='54' height='50' fill='none' viewBox='0 0 54 50'><path d='m10.5 24.5c-4 0-7.5 2.8-8.2 6.8l-2 10.3 3.6 0.8c8.3 1.5 16.2-3.9 17.8-12.1l3.4-17.5c0.9-4.9-2.2-9.5-7.1-10.5l-12.1-2.3-2.4 12.5c-1 5.2 2.1 10.3 7 12z' fill='rgba(70, 184, 207, 1)'/><path d='m37.3 48.8l3.7 0.7 2-10.3c0.7-4.1-1.5-7.9-5.1-9.4 5.2 0.2 9.9-3.4 10.9-8.6l2.4-12.5-12.1-2.3c-4.8-0.9-9.5 2.2-10.5 7.1l-3.3 17.5c-1.6 8.2 3.8 16.2 12 17.8z' fill='rgba(70, 184, 207, 1)'/></svg>");
}

html body .heading-with-butterfly.butterfly-color-orange:after {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='54' height='50' fill='none' viewBox='0 0 54 50'><path d='m10.5 24.5c-4 0-7.5 2.8-8.2 6.8l-2 10.3 3.6 0.8c8.3 1.5 16.2-3.9 17.8-12.1l3.4-17.5c0.9-4.9-2.2-9.5-7.1-10.5l-12.1-2.3-2.4 12.5c-1 5.2 2.1 10.3 7 12z' fill='rgba(249, 97, 40, 1)'/><path d='m37.3 48.8l3.7 0.7 2-10.3c0.7-4.1-1.5-7.9-5.1-9.4 5.2 0.2 9.9-3.4 10.9-8.6l2.4-12.5-12.1-2.3c-4.8-0.9-9.5 2.2-10.5 7.1l-3.3 17.5c-1.6 8.2 3.8 16.2 12 17.8z' fill='rgba(249, 97, 40, 1)'/></svg>");
}

html body .heading-with-butterfly.butterfly-color-green:after {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='54' height='50' fill='none' viewBox='0 0 54 50'><path d='m10.5 24.5c-4 0-7.5 2.8-8.2 6.8l-2 10.3 3.6 0.8c8.3 1.5 16.2-3.9 17.8-12.1l3.4-17.5c0.9-4.9-2.2-9.5-7.1-10.5l-12.1-2.3-2.4 12.5c-1 5.2 2.1 10.3 7 12z' fill='rgba(172, 213, 138, 1)'/><path d='m37.3 48.8l3.7 0.7 2-10.3c0.7-4.1-1.5-7.9-5.1-9.4 5.2 0.2 9.9-3.4 10.9-8.6l2.4-12.5-12.1-2.3c-4.8-0.9-9.5 2.2-10.5 7.1l-3.3 17.5c-1.6 8.2 3.8 16.2 12 17.8z' fill='rgba(172, 213, 138, 1)'/></svg>");
}

html body .heading-with-butterfly.butterfly-color-green-lighter:after {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='54' height='50' fill='none' viewBox='0 0 54 50'><path d='m10.5 24.5c-4 0-7.5 2.8-8.2 6.8l-2 10.3 3.6 0.8c8.3 1.5 16.2-3.9 17.8-12.1l3.4-17.5c0.9-4.9-2.2-9.5-7.1-10.5l-12.1-2.3-2.4 12.5c-1 5.2 2.1 10.3 7 12z' fill='rgba(207, 229, 181, 1)'/><path d='m37.3 48.8l3.7 0.7 2-10.3c0.7-4.1-1.5-7.9-5.1-9.4 5.2 0.2 9.9-3.4 10.9-8.6l2.4-12.5-12.1-2.3c-4.8-0.9-9.5 2.2-10.5 7.1l-3.3 17.5c-1.6 8.2 3.8 16.2 12 17.8z' fill='rgba(207, 229, 181, 1)'/></svg>");
}

html body .heading-with-butterfly.butterfly-color-purple:after {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='54' height='50' fill='none' viewBox='0 0 54 50'><path d='m10.5 24.5c-4 0-7.5 2.8-8.2 6.8l-2 10.3 3.6 0.8c8.3 1.5 16.2-3.9 17.8-12.1l3.4-17.5c0.9-4.9-2.2-9.5-7.1-10.5l-12.1-2.3-2.4 12.5c-1 5.2 2.1 10.3 7 12z' fill='rgba(219, 217, 237, 1)'/><path d='m37.3 48.8l3.7 0.7 2-10.3c0.7-4.1-1.5-7.9-5.1-9.4 5.2 0.2 9.9-3.4 10.9-8.6l2.4-12.5-12.1-2.3c-4.8-0.9-9.5 2.2-10.5 7.1l-3.3 17.5c-1.6 8.2 3.8 16.2 12 17.8z' fill='rgba(219, 217, 237, 1)'/></svg>");
}

.services-row-item {
	padding: 27px 0 27px;
	border-top: 1px solid var(--theme-color);
	position: relative;
	margin: 0 0 0;
}

.services-row-item:last-child {
	border-bottom: 1px solid var(--theme-color);
}

.services-row-item p {
	max-width: 730px;
	line-height: 1.2;
}

.services-row-item h4 {
	margin: 0 0 10px;
}

.services-row-item a:where(:not(.wp-element-button)) {
	text-decoration: none;
}

body .btn-learn-more a:after, .services-row-item .has-accent-color.has-moret-font-family a:after {
	width: 53px;
	height: 30px;
	content: "";
	display: block;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='53' height='22' fill='rgba(0, 129, 157, 1)' viewBox='0 0 53 22'><path d='m2 9.5c-0.8 0-1.5 0.7-1.5 1.5 0 0.8 0.7 1.5 1.5 1.5zm50.1 2.6c0.5-0.6 0.5-1.6 0-2.2l-9.6-9.5c-0.6-0.6-1.5-0.6-2.1 0-0.6 0.6-0.6 1.5 0 2.1l8.5 8.5-8.5 8.5c-0.6 0.6-0.6 1.5 0 2.1 0.6 0.6 1.5 0.6 2.1 0zm-50 0.4h49v-3h-49z'/></svg>");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	transition: all .2s ease;
	left: 0;
}

body .btn-learn-more a, .services-row-item .has-accent-color.has-moret-font-family a {
	font-size: 25px;
	margin: 0 35px 0 0;
	gap: 15px;
	margin: 0 35px 0 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

body .btn-learn-more a:hover:after, .services-row-item .has-accent-color.has-moret-font-family a:hover:after {
	left: 8px;
}

.image-with-shadow figure.wp-block-media-text__media {
	margin-bottom: 38px;
	position: relative;
}

.image-with-shadow figure.wp-block-media-text__media img {
	position: relative;
	z-index: 2;
}

.image-with-shadow figure.wp-block-media-text__media:after {
	margin: 0px -38px -38px;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: var(--theme-color-green);
	content: "";
}

.image-with-shadow.has-media-on-the-right figure.wp-block-media-text__media:after {
	margin: 0px 38px -38px;
}

.image-with-shadow-theme figure.wp-block-media-text__media:after {
	background: var(--theme-color);
}

.image-with-shadow-theme-lighter figure.wp-block-media-text__media:after {
	background: var(--theme-color-lighter);
}

.image-with-shadow-orange figure.wp-block-media-text__media:after {
	background: var(--theme-color-orange);
}

.image-with-shadow-green figure.wp-block-media-text__media:after {
	background: var(--theme-color-green);
}

.image-with-shadow-green-lighter figure.wp-block-media-text__media:after {
	background: var(--theme-color-green-lighter);
}

.image-with-shadow.wp-block-media-text>.wp-block-media-text__content {
	padding: 0 0 0 22%;
}

.image-with-shadow.wp-block-media-text.has-media-on-the-right>.wp-block-media-text__content {
	padding: 0 22% 0 0;
}


.image-with-shadow h2 {
	margin: 28px 0 10px;
}

.image-with-shadow p {
	margin: 13px 0 40px;
	line-height: 1.2;
	max-width: 600px;
}

.image-with-shadow figure.wp-block-image {
	margin: 60px 0 0;
}

/*  */

.box-homepage-collage img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

/*  */

.slider-logos .slick-track {
	display: flex;
	align-items: center;
}

.slider-logos .slick-slide {
	padding: 0 50px 0;
	height: auto;
	margin: 0 0 0;
}

/*  */

.tilde-after {
	position: relative;
}

.tilde-after:after {
	width: 55px;
	height: 13px;
	display: block;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='55' height='13' fill='rgba(249, 97, 40, 1)' viewBox='0 0 55 13'><path d='m54.8 3.8c-0.5-1.7-2.1-3.1-3.7-3.6-2.1-0.5-4.1 0.6-5.4 2.3-0.9 1.2-1.2 2.8-2.1 4-1.7 2.2-3.5 2.3-6 1.6l-19.5-6.8c-5.5-1.6-12.7-2.5-16.3 2.2-1.2 1.6-2.2 3.7-1.6 5.7 0.5 1.9 2.3 3.3 4.1 3.7 2 0.3 3.8-0.8 5-2.4 0.9-1.2 1.2-2.8 2.1-4 1.7-2.2 3.5-2.3 6-1.6l19.5 6.8c5.5 1.6 12.7 2.5 16.3-2.2 1.2-1.6 2.3-3.7 1.6-5.7z'/></svg>");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto -15px;
	content: "";
}

/*  */

.slider-testimonials {
	margin: 0 auto;
	max-width: 815px !important;
}

.testimonials-item,
.is-layout-flex > :is(.testimonials-item) {
	padding: 80px 0 15px;
	margin: 0 auto 0;
	max-width: 815px;
	position: relative;
}

.testimonials-item blockquote,
:root .testimonials-item :where(.wp-block-quote.is-style-plain) {
	padding: 0 0 50px 185px;
	min-height: 218px;
	position: relative;
}

.testimonials-item blockquote:before {
	width: 205px;
	height: 37px;
	margin: -56px 0 0 142px;
	display: block;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='205' height='37' fill='rgba(172, 213, 138, 1)' viewBox='0 0 205 37'><path d='m190.8 5.3c-0.7 1.9-0.4 4-1.1 6-1.2 3.6-3.5 4.5-7.1 4.6h-146.4c0 0-0.1 0-0.1 0-7.8 0-15.1 0-15.1 0-7.9 0.2-20.7 3.3-21 13.2-0.1 4.4 2.9 7.9 7.5 7.7 3.1-0.2 5.1-2.5 6.1-5.3 0.6-1.9 0.4-4.1 1-6 1.3-3.6 3.5-4.6 7.1-4.7h146.5c0 0 0 0 0.1 0 7.7 0 15 0 15 0 8-0.1 20.7-3.2 21-13.1 0.2-4.5-2.9-7.9-7.5-7.7-3 0.1-5.1 2.5-6 5.3z'/></svg>");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	top: 0;
	content: "";
}

.testimonials-item h3 {
	font-size: 70px;
	line-height: 1;
}

/*  */

.slick-prev, .slick-next {
	top: 50%;
	width: 50px;
	height: 50px;
	margin: 0 0 0;
	padding: 0 0 0;
	transition: all .3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slick-prev {
	left: 0;
}

.slick-next {
	right: 0;
}

.slick-prev:hover, .slick-next:hover {
	opacity: 1;
}

.slick-prev:hover {
	left: -5px;
}

.slick-next:hover {
	right: -5px;
}

.slick-prev:before, .slick-next:before {
	font-family: 'bootstrap-icons';
	font-size: 50px;
	line-height: 1;
	opacity: 1;
	color: var(--theme-color-green);
}

.slick-prev:before {
	content: '\F12F';
}

.slick-next:before {
	content: '\F138';
}

/*  */

.slick-dots li button:before {
	font-size: 10px;
	opacity: .5;
	color: var(--theme-color);
}

.slick-dots li.slick-active button:before {
	opacity: 1;
	color: var(--theme-color);
}

/*  */

.slider-testimonials .slick-prev, .slider-testimonials .slick-next {
	top: auto;
	bottom: -50px;
	left: auto;
	right: 0;
	margin: 0 0 0;
	padding: 0 0 0;
}

.slider-testimonials .slick-prev {
	right: 65px;
}

.slider-testimonials .slick-prev:hover {
	right: 70px;
}

.slider-testimonials .slick-next:hover {
	right: -5px;
}

/*  */

footer .wp-block-site-logo img {
	min-width: 306px;
}

hr.wp-block-separator.bg-theme {
	border-color: var(--theme-color);
	border-width: 1px;
}

/*  */

.box-contact-us h4,
.box-contact-items h4 {
	font-size: 24px;
	margin: 0 0 4px;
}

.box-contact-items h4 {
	margin: 0 0 10px;
}

.box-contact-items h2 {
	font-size: 60px;
	margin: 0 0 12px;
}

.box-contact-items h5 {
	margin: 0 0 20px;
}

.bordered-left {
	border-left: 2px solid var(--theme-color);
}

.box-contact-items .bordered-left {
	padding: 3px 0 0 33px;
	margin: 70px 0 0;
}

/*  */

.box-text {
	max-width: 924px;
}

.box-text a {
	text-decoration: underline;
}

.book-item {
	padding: 0 0 0;
	margin: 0 auto 0;
	max-width: 1070px;
	position: relative;
}

.book-item .wp-element-button {
	padding: 6px 25px 3px;
}

hr.is-style-wide {
	width: 100%;
}

/*  */

.thumb-with-icon-vertical h4 {
	font-size: 25px;
}

.thumb-with-icon-vertical p {
	margin: -5px auto 0;
	max-width: 300px;
	font-size: 18px;
	line-height: 1.25;
}

.thumb-with-icon-vertical figure.wp-block-image {
	min-height: 130px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

/*  */

.thumb-with-icon-horizontal figure.wp-block-image {
	min-width: 100px;
	display: flex;
	align-content: center;
	justify-content: center;
}

.thumb-with-icon-horizontal + .thumb-with-icon-horizontal {
	border-top: 2px solid var(--theme-color);
}

.thumb-with-icon-horizontal h4 {
	font-size: 25px;
}

.thumb-with-icon-horizontal p {
	margin: 5px auto 0;
	max-width: 420px;
	font-size: 18px;
	line-height: 1.25;
}

/*  */

.block-faqs .wp-block-details {
	padding: 0 0 0;
}

.block-faqs .wp-block-details[open] summary:after {
	content: "\F63B";
}

.block-faqs .wp-block-details + .wp-block-details {
	border-top: 1px solid var(--theme-color);
}

.block-faqs .wp-block-details:last-child {
	border-bottom: 1px solid var(--theme-color);
}

.block-faqs summary {
	padding: 22px 0 22px;
	font-weight: 700;
	position: relative;
}

.block-faqs summary ~ p {
	padding: 0 0 25px;
}

.block-faqs summary:after {
	font-size: 20px;
	content: "\F64D";
	font-family: 'bootstrap-icons';
	color: var(--theme-color);
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 30px;
	height: 30px;
	margin: auto;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.block-faqs summary::marker {
	display: none;
	content: none;
}

.block-faqs :where(.wp-site-blocks *:focus) {
	outline: none;
}

/*  */

.box-service-hero figure.wp-block-image + figure.wp-block-image {
	position: absolute;
	left: -20px;
	top: 85px;
	bottom: 0;
	width: 50%;
}

.page-id-554 .box-service-hero figure.wp-block-image + figure.wp-block-image {
	left: 40px;
}

.box-service-hero p {
	max-width: 500px;
}

/*  */

.slider-service-thumbs {
	max-width: 1430px;
	margin: 0 auto !important;
}

.slider-service-thumbs .slick-track {
	display: flex;
	align-items: center;
}

.service-thumb-item {
	padding: 0 40px 0;
}

.service-thumb-item .wp-block-image {
	margin: 0 auto 18px;
}

.service-thumb-item .wp-block-image img {
	object-fit: cover;
	aspect-ratio: 265 / 300;
}

.service-thumb-item:nth-child(odd) .wp-block-image img {
	aspect-ratio: 265 / 200;
}

.service-thumb-item h5 {
	font-size: 20px;
	margin: 0 0 2px;
}

.service-thumb-item .btn-learn-more a {
	font-size: 20px;
}

.service-thumb-item .btn-learn-more a:after {
	width: 36px;
	height: 18px;
}

/*  */

:root :where(.wp-block-post-featured-image img, .wp-block-post-featured-image .block-editor-media-placeholder, .wp-block-post-featured-image .wp-block-post-featured-image__overlay) {
	border-radius: 0;
}

/*  */

.box-locations .bordered-left h5 {
	padding: 3px 0 3px;
}

.box-locations .btn-learn-more a:after {
	width: 25px;
	height: 15px;
}

.box-locations .btn-learn-more a {
	font-size: 16px;
	gap: 10px;
	margin: 0 10px 0 0;
	font-weight: 500;
}

/*  */

.tabs-nav-item-wr {
	padding: 10px 0 10px;
	transition: all .3s ease;
	opacity: .35;
}

.tabs-nav-item-wr.active {
	opacity: 1;
}

.tabs-nav-item-wr:hover {
	opacity: 1;
}

.tabs-nav-item-wr > .wp-block-group {
	display: none;
	padding: 0 0 20px 40px;
}

.tabs-nav-item-wr.active > .wp-block-group {
	display: block;
}

.box-locations .tabs-nav-item {
	position: relative;
}

.box-locations .tabs-nav-item:before {
	content: "\F3E7";
	font-family: 'bootstrap-icons';
	display: inline-block;
	vertical-align: middle;
	min-width: 40px;
	font-size: 120%;
	margin: -2px 0 0 0;
	color: var(--theme-color-orange);
}

.tabs-item {
	display: none;
}

.tabs-item.active {
	display: block;
}

body .with-map-marker-icon {
	position: relative;
}

body .with-map-marker-icon:before {
	content: "\F3E7";
	font-family: 'bootstrap-icons';
	display: inline-block;
	vertical-align: middle;
	width: 35px;
	font-size: 120%;
	margin: -2px 0 0 -35px;
	color: var(--theme-color-orange);
}

/*  */

.block-map-links {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.block-map-links a,
.block-map-links p {
	left: 0;
	top: 0;
	font-size: 0;
	color: transparent;
/* 	background: rgba(0, 0, 0, .2); */
	position: absolute;
	width: 30px;
	height: 30px;
	line-height: 1;
	border-radius: 50%;
}

.block-map-links .Santa-Barbara-Montecito {
	left: 11.5%;
	top: 51.5%;
}

.block-map-links .Greater-Los-Angeles {
	left: 14.5%;
	top: 58%;
}

.block-map-links .New-York-City {
	left: 89.5%;
	top: 26%;
}

.block-map-wr {
	position: relative;
}

/*  */

body .btn-arrow-left a:before {
	width: 30px;
	height: 20px;
	content: "";
	display: block;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='rgba(0, 129, 157, 1)' class='bi bi-arrow-left' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8'/></svg>");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	transition: all .2s ease;
	left: 0;
}

body .btn-arrow-left a {
	font-size: 20px;
	margin: 0 0 20px 0;
	gap: 10px;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}

body .btn-arrow-left a:hover:before {
	left: -5px;
}

/*  */

.wp-block-comments.wp-block-comments-query-loop > h2 {
	margin-bottom: 0;
}

.box-blog-thumbs .wp-block-post-featured-image {
	padding: 0 !important;
}

.entry-content.wp-block-post-content a {
	text-decoration: underline;
}

.entry-content.wp-block-post-content a:hover {
	text-decoration: none;
}

/*  */

a.wp-block-button__link.wp-element-button {
	text-decoration: none;
}

/*  */

footer .wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content {
	font-size: 85%;
	font-weight: 500;
}

.wp-block-post-excerpt__more-text a {
	display: inline-flex;
	align-items: center;
	font-weight: 600;
	margin: 20px 0 0;
}

.wp-block-post-excerpt__more-text a:after {
	content: "\F285";
	font-family: 'bootstrap-icons';
	margin: 0 0 0 5px;
	display: inline-block;
	vertical-align: middle;
	left: 0;
	position: relative;
	transition: all .3s ease;
}

.wp-block-post-excerpt__more-text a:hover:after {
	left: 5px;
}

/*  */

html body .btn-read a {
	display: inline-flex;
	align-items: center;
	font-weight: 600;
	margin: 10px 0 0;
	text-decoration: none !important;
}

html body .btn-read a:after {
	content: "\F285";
	font-family: 'bootstrap-icons';
	margin: -1px 0 0 5px;
	display: inline-block;
	vertical-align: middle;
	left: 0;
	position: relative;
	transition: all .3s ease;
}

html body .btn-read a:hover:after {
	left: 5px;
}

/*  */

.form-newsletter p {
	padding: 0 0 0;
	margin: 0 0 0;
}

.form-newsletter span.wpcf7-spinner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	bottom: 0;
}

.block-subscribe-form {
	padding: 0 0 0;
	margin: 0 0 0;
}

.block-subscribe-form > p {
	max-width: 480px;
	display: flex;
	width: 100%;
	align-items: flex-start;
	gap: 10px;
	box-sizing: border-box;
	padding: 0 0 0;
	margin: 0 auto 0;
}

.block-subscribe-form input {
	text-transform: uppercase;
}

html body .block-subscribe-form input[type="submit"] {
	min-width: 170px;
	text-transform: none;
}

/*  */

body .wpcf7-form input,
body .wpcf7-form select,
body .wpcf7-form textarea {
	padding: 10px 16px 10px;
	margin: 0 0 0;
	height: 45px;
	font-size: 16px;
	background: transparent;
	border: 2px solid var(--theme-color);
	color: var(--theme-color);
	position: relative;
	display: flex;
	width: 100%;
	box-sizing: border-box;
	line-height: 1.1;
}

body .wpcf7-form textarea {
	height: 145px;
	min-height: 100px;
}

body .wpcf7-form .row {
	display: flex;
	box-sizing: border-box;
}

body .wpcf7-form .col-6 {
	width: 50%;
	box-sizing: border-box;
}

body .wpcf7-form .col-12 {
	width: 100%;
	box-sizing: border-box;
}

body .wpcf7-form h5 {
	color: inherit;
	margin-bottom: 10px;
}

body .wpcf7-form .row p {
	margin-top: 0;
}

body .wpcf7-not-valid-tip {
	font-size: 85%;
}

.wpcf7 form .wpcf7-response-output {
	font-size: 85%;
}

body .wpcf7-form input[type="submit"],
body .wpcf7-form button {
	box-shadow: none;
	border-width: 2px;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 0;
	padding: 9px 20px 8px;
	min-width: 196px;
	height: 45px;

	outline: 0px solid;
	outline-color: var(--theme-color);
	outline-offset: -1px;
	text-shadow: none;
	transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
	cursor: pointer;
	background: transparent;
	color: var(--theme-color);
	border-color: var(--theme-color);
	width: auto;
}

body .wpcf7-form input[type="submit"]:hover,
body .wpcf7-form button:hover {
	outline: 1px solid;
	opacity: 1;
	outline-color: rgba(0, 0, 0, 0);
	outline-offset: 15px;
	--wp--preset--shadow--crisp: 2px 2px 0px var(--theme-color-text);
}

body .wpcf7 .block-subscribe-form .wpcf7-submit {
	--wp--preset--shadow--crisp: 0 !important;
	height: 45px;
	background: transparent !important;
	border: 2px solid var(--theme-color);
	color: var(--theme-color) !important;
	padding: 5px 10px 5px !important;
}

/*  */

.form-contact-us {
	max-width: 505px;
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
}

.form-contact-us label {
	font-size: 85%;
}

html body .form-contact-us .wpcf7-submit,
html body .wpcf7 .wpcf7-submit {
	outline: 0px solid;
	outline-color: var(--theme-color);
	outline-offset: -1px;
	text-shadow: none;
	transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
	background-color: var(--wp--preset--color--custom-color-1);
	border-radius: 0px;
	font-size: clamp(14.642px, 0.915rem +((1vw - 3.2px)* 0.736), 22px);
	font-style: normal;
	font-weight: 700;
	padding-top: 0.75rem;
	padding-right: var(--wp--preset--spacing--30);
	padding-bottom: 0.75rem;
	padding-left: var(--wp--preset--spacing--30);
	box-shadow: var(--wp--preset--shadow--crisp);
	background-color: var(--wp--preset--color--accent-2) !important;
	color: var(--wp--preset--color--contrast) !important;
	height: auto;
	border: none;
}

html body .form-contact-us .wpcf7-submit:not(:hover),
html body .wpcf7 .wpcf7-submit:not(:hover) {
	--wp--preset--shadow--crisp: 8px 8px 0px var(--theme-color);
}

/*  */

.thumb-in-the-media h5.wp-block-heading {
	font-size: 125%;
	margin: 0 0 10px;
}

.thumb-in-the-media figure.wp-block-image {
	margin: 0 0 25px;
}

.thumb-in-the-media a {
	text-decoration: none !important;
}

.thumb-in-the-media p {
	font-size: 90%;
}

/*  */

.slider-arrows-top-right .slick-prev, .slider-arrows-top-right .slick-next {
	top: -10px;
}

.slider-arrows-top-right  .slick-prev {
	left: auto;
	right: 65px;
}

.slider-arrows-top-right  .slick-prev:hover {
	right: 70px;
}

.slider-3-per-row .slick-slide {
	padding: 0 15px;
}

.slider-3-per-row .slick-list {
	margin: 0 -15px 0 !important;
	max-width: 120%;
	max-width: calc(100% + 30px);
}

/*  */

.box-get-started-form .wp-block-group.has-accent-background-color {
	max-width: 600px;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
	justify-content: center;
}

.box-get-started-form h2 {
	margin-left: 0 !important;
}

.box-get-started-form h5 {
	max-width: 450px;
	margin-left: 0 !important;
}

.box-get-started-form label {
	font-size: 85%;
}

.box-get-started-form h6 {
	color: inherit;
	margin: 0 0 0;
}

/*  */

html body .form-checklists input {
	background: #fff;
	border-color: #fff;
}

.has-accent-2-background-color input.wpcf7-form-control.wpcf7-submit.has-spinner {
	background: #fff !important;
}

.box-checklist-cover h1 {
	font-size: 65px;
}

.box-checklist-cover h2 {
	font-size: 55px;
}




/* Box column accent */
.column-box-shadow {
	box-shadow: 18px 18px 0px #ff6900!important;
}



























/* ----------------------------------------------------------------------------------- */
/* * - BEGIN of @media ---------------------------------------------------------- */

@media (max-width: 1319px) {
html body header .wp-element-button, html body footer .wp-element-button {
	margin: 0;
	min-width: 150px;
}
.image-with-shadow.wp-block-media-text>.wp-block-media-text__content {
	padding: 0 0 0 10%;
}
.image-with-shadow.wp-block-media-text.has-media-on-the-right>.wp-block-media-text__content {
	padding: 0 10% 0 0;
}













}

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

@media (max-width: 1199px) {
html body header .wp-element-button, html body footer .wp-element-button {
	border-width: 2px;
	font-size: 18px;
	margin: 0;
	padding: 9px 20px 7px;
	min-width: 140px;
}
.box-services-rows h2.wp-block-heading:after, html body .heading-with-butterfly:after {
	margin: -20px -45px 0 0;
	width: 40px;
	height: 40px;
}
.testimonials-item h3 {
	font-size: 40px;
}
body .btn-learn-more a, .services-row-item .has-accent-color.has-moret-font-family a {
	font-size: 20px;
	margin: 0 35px 0 0;
	gap: 10px;
	margin: 0 0 0 0;
}
body .btn-learn-more a:after, .services-row-item .has-accent-color.has-moret-font-family a:after {
	width: 30px;
	height: 15px;
}
.slider-logos .slick-slide {
	padding: 0 25px 0;
}
footer .wp-block-site-logo img {
	min-width: 100px;
}




















}

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

@media (max-width: 991px) {
.wp-block-navigation .has-child:not(.open-on-click)>.wp-block-navigation__submenu-container {
	top: 126px;
	padding: 30px 0 30px;
}
.admin-bar .wp-block-navigation .has-child:not(.open-on-click)>.wp-block-navigation__submenu-container {
	top: 158px;
}
ul.wp-block-navigation__submenu-container.wp-block-navigation-submenu a {
	padding: 13px 15px 13px;
	font-size: 30px;
}














}

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

@media (max-width: 767px) {
.box-top-banner {
	min-height: 500px !important;
}
.image-with-shadow figure.wp-block-media-text__media:after {
	margin: 0px -10px -10px;
}
.image-with-shadow.has-media-on-the-right figure.wp-block-media-text__media:after {
	margin: 0px 10px -10px;
}
.box-services-rows h2.wp-block-heading:after, html body .heading-with-butterfly:after {
	margin: -20px -40px 0 0;
	width: 30px;
	height: 30px;
}
.services-row-item {
	padding: 15px 0 10px;
}
.image-with-shadow.wp-block-media-text>.wp-block-media-text__content {
	padding: 0 0 0 25px;
}
.image-with-shadow.wp-block-media-text.has-media-on-the-right>.wp-block-media-text__content {
	padding: 0 5% 0 0;
}
.image-with-shadow p {
	margin: 10px 0 25px;
}
.image-with-shadow figure.wp-block-image {
	margin: 25px 0 0;
}
.wp-container-core-group-is-layout-16 {
	gap: 10px;
}
.slider-logos {
	margin: 35px auto 0;
}
.slider-logos .slick-slide {
	padding: 0 15px 0;
}
.testimonials-item blockquote, :root .testimonials-item :where(.wp-block-quote.is-style-plain) {
	padding: 0 0 30px 50px;
	min-height: 200px;
	font-size: 16px;
}
.testimonials-item blockquote:before {
	width: 150px;
	height: 30px;
	margin: -45px 0 0 0;
}
.testimonials-item, .is-layout-flex > :is(.testimonials-item) {
	padding: 50px 0 15px;
}
.slick-prev:before, .slick-next:before {
	font-size: 35px;
}
.slick-prev, .slick-next {
	width: 35px;
	height: 35px;
}
.slider-testimonials .slick-prev, .slider-testimonials .slick-next {
	bottom: -30px;
}
.has-accent-background-color .wp-block-group.has-global-padding.is-layout-constrained {
	padding-top: 25px;
	padding-bottom: 30px;
}
footer .wp-block-social-links {
	margin: 15px auto 20px !important;
}
footer p.has-text-align-center {
	margin: 5px 0 0;
}
footer .wp-block-group.alignwide.is-layout-constrained {
	margin: 20px auto 5px !important;
}
body .btn-learn-more a, .services-row-item .has-accent-color.has-moret-font-family a {
	margin: 10px 0 0 0;
}
header .wp-block-site-logo {
	max-width: 120px;
	z-index: 555555;
	position: relative;
}
.box-contact-us h4, .box-contact-items h4 {
	font-size: 20px;
	margin: 0 0 5px;
}
.box-contact-items h2 {
	font-size: 40px;
	margin: 0 0 10px;
}
.box-contact-items .bordered-left {
	padding: 1px 0 0 5px;
	margin: 20px 0 0;
}
.box-contact-items .wp-block-group.has-background.has-global-padding {
	padding: 20px 15px !important;
}
.box-contact-items h5 {
	margin: 0 0 10px;
	font-size: 95%;
}
.box-checklist-cover h1 {
	font-size: 40px;
}
.box-checklist-cover h2 {
	font-size: 35px;
}




















}

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

@media (max-width: 599px) {
header .wp-block-navigation-item.wp-block-navigation-link,
header li.wp-block-navigation-item.has-child > a.wp-block-navigation-item__content {
	font-size: 22px;
	padding: 13px 0 11px !important;
	margin: 0 0 0;
	width: 100%;
	text-align: left;
	display: flex;
	justify-content: flex-start;
	border-bottom: 1px solid var(--theme-color);
}
header ul.wp-block-navigation__submenu-container.wp-block-navigation-submenu {
	width: 100% !important;
	padding: 0 !important;
	display: flex;
	left: 0 !important;
	position: relative;
	align-items: flex-start;
	overflow: hidden !important;
}
header ul.wp-block-navigation__submenu-container.wp-block-navigation-submenu li.wp-block-navigation-item.wp-block-navigation-link {
	font-size: 18px;
	padding: 13px 10px 10px !important;
	font-weight: normal;
}
header li.wp-block-navigation-item.has-child.open-on-hover-click.wp-block-navigation-submenu {
	width: 100%;
}
html body header .wp-element-button {
	border-width: 2px;
	font-size: 22px;
	margin: 0;
	padding: 12px 25px 10px;
	min-width: 220px;
}
header .wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {
	width: 100%;
	display: flex;
}
html body header ul.wp-block-navigation__container.wp-block-navigation {
	display: flex;
	justify-content: flex-start;
	text-align: left;
	width: 100%;
	gap: 0 !important;
	align-content: flex-start;
	border-top: 1px solid var(--theme-color);
}
header .wp-block-buttons {
	width: 100%;
	padding: 15px 0 15px;
}
.image-with-shadow.wp-block-media-text>.wp-block-media-text__content {
	padding: 0 0 0;
}
.box-meet-author h4 {
	margin: 0 0 0;
}
.box-services-rows h2.wp-block-heading, html body .heading-with-butterfly {
	margin: 15px 0 15px;
}
.book-item .wp-block-media-text__content {
	padding: 30px 0 10px;
}
.book-item .wp-block-media-text__content > .wp-block-group {
	padding: 0 0 0 !important;
}
.box-service-hero .wp-block-column:first-child {
	padding-bottom: 30px;
}
.box-service-hero figure.wp-block-image {
	padding: 0 0 0 50px;
}
.box-service-hero figure.wp-block-image + figure.wp-block-image {
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 0;
	width: 65%;
	padding: 0;
}
.page-id-554 .box-service-hero figure.wp-block-image + figure.wp-block-image {
	left: 0;
}
.wp-block-group.alignfull.is-layout-grid.wp-container-core-group-is-layout-19.wp-block-group-is-layout-grid {
	display: flex;
	flex-direction: column;
}
.wp-block-group.alignfull.is-layout-grid.wp-container-core-group-is-layout-23.wp-block-group-is-layout-grid {
	display: flex;
	flex-direction: column;
}
.thumb-with-icon-horizontal {
	gap: 25px;
}
.thumb-with-icon-horizontal figure.wp-block-image {
	min-width: 70px;
	width: 70px;
}
.thumb-with-icon-horizontal h4 {
	font-size: 20px;
	padding: 5px 0 0;
}
.slick-dots {
	bottom: -25px;
}
.tabs-nav-item-wr {
	padding: 0 0 0;
}
.tabs-nav-item-wr > .wp-block-group {
	padding: 0 0 10px 40px;
}
.tabs-item {
	padding: 30px 0 0;
}
.box-featured-blog .wp-block-column + .wp-block-column.is-vertically-aligned-center.is-layout-flow {
	padding: 40px 0 0 !important;
}
.box-single-post-hero > .wp-block-group.is-layout-grid {
	display: flex;
	flex-direction: column-reverse;
}
.post-navigation-link-next.wp-block-post-navigation-link {
	text-align: right;
}
html body .block-subscribe-form input[type="submit"] {
	min-width: 120px;
}
.block-subscribe-form > p {
	gap: 5px;
	padding: 0 20px 0;
}
.block-map-links a, .block-map-links p {
	width: 20px;
	height: 30px;
}
body .slider-arrows-top-right {
	margin-top: 40px !important;
}
.slider-arrows-top-right .slick-prev {
	left: auto;
	right: 45px;
}
ul.wp-block-navigation__submenu-container.wp-block-navigation-submenu a:after {
	display: none;
}
ul.wp-block-navigation__submenu-container.wp-block-navigation-submenu a {
	padding: 13px 15px 13px;
	font-size: 18px;
}
.wp-block-navigation__responsive-container.is-menu-open {
	overflow-x: hidden;
}
.wpcf7-form [class*="col-"] {
	padding-left: 5px;
	padding-right: 5px;
}
.wpcf7-form .row {
	margin: 0 -5px;
}
body .wpcf7-form .col-xs-12 {
	width: 100%;
}



























}

/* ----------------------------------------------------------------------------------- */
/* * - END of @media ---------------------------------------------------------- */
