/*
Theme Name: Claudia Bouwens Theme
Version: 1.0
Author: Fanatiek media
Author URI: https://fanatiekmedia.nl/
*/

/***************************
          FONTS
***************************/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/***************************
          COLORS
***************************/

:root {	
	--white: #fff;
	--white-hover: #f3e8f6;	
	--darkteal: #30898E;
	--lightteal: #44C1C5;
	--xlightteal: #dbeced;
	--darkpurple: #3B1543;
	--darkpurple-hover: #330c3b;
	--purple: #6B3072;
	--lightpurple: #e3e2ec;
	--softgreen: #A3B9A4;
	--green: #7bb47e;
	--black: #232025;
	--red: #c6141a;
	--lightgrey: #d8d9de;
	--grey: #c9c9c9;
 }

/***************************
          GENERAL
***************************/

body {
	width: 100%;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 18px;
	background-color: var(--white);
	color: var(--black);
}

body.show-nav {
	overflow: hidden;
}

html {
	font-size: 100%;
	width: 100%;
}

img {
	max-width: 100%;
	height: auto;
}

b, strong {
	font-weight: 600;
}

a {
	color: var(--blue);
	transition: all 0.3s ease;
	text-decoration: underline;
}

a:hover {
	color: var(--darkblue);
	text-decoration: none;
}

p {
	margin: 0 0 20px;
	line-height: 170%;
}

ul, ol {
	line-height: 170%;
	margin: 0 0 20px;
}

.btn,
.button,
.inline-btn a,
.menu-btn a,
.gform_button {
	background: linear-gradient(90deg,var(--darkteal) 0%,var(--lightteal) 50%,var(--darkteal) 100%);
	background-size: 200% 100%;
	background-position: left center;
	color: var(--white);
	display: inline-block;
	padding: 12px 30px;
	min-width: 175px;
	position: relative;
	border: 0px solid;
	cursor: pointer;
	line-height: 120%;
	font-size: 18px;
	margin: 0;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	text-decoration: none;
	font-weight: 600;
	border-radius: 10px;
	transition: all .3s ease;
	width: auto;
}

.btn:hover,
.btn:focus,
.button:hover,
.button:focus,
.inline-btn a:hover,
.inline-btn a:focus,
.menu-btn a:hover,
.menu-btn a:focus,
.gform_button:hover,
.gform_button:focus {
	background-position: right center;
	transition: all .3s;
	color: var(--white);
	border: 0px solid;
}

.btn.small {
	padding: 9px 20px;
}

.btn.white {
	background: var(--white);
	color: var(--darkpurple);
}

.btn.white:hover,
.btn.white:focus {
	background: var(--white-hover);
	color: var(--darkpurple);
}

.btn.darkpurple,
.block-item .inner.bg-teal .gform_button {
	background: var(--darkpurple);
	color: var(--white);
}

.btn.darkpurple:hover,
.btn.darkpurple:focus,
.block-item .inner.bg-teal .gform_button:hover,
.block-item .inner.bg-teal .gform_button:focus {
	background: var(--darkpurple-hover);
	color: var(--white);
}

input, 
textarea {
    padding: 10px 15px;	
    width: 100%;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	border: 2px solid var(--white);
	background-color: var(--white);
	box-shadow: 0px 10px 25px hsl(0deg 0% 0% / 10%);
	color: var(--black);
	line-height: 100%;
	border-radius: 5px;
	font-size: 18px;
	outline: none;
	margin: 0 0 10px;
	box-shadow: none;
}

.inner.bg-white input,
.inner.bg-white textarea {
	border-color: var(--xlightteal);
}

input:focus,
textarea:focus {
	background-color: var(--white);
	box-shadow: 0px 2px 7px 0 rgba(0,0,0,0.10);
	border-color: var(--lightteal);
}

.inner.bg-white input:focus,
.inner.bg-white textarea:focus {
	border-color: var(--lightteal);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    -webkit-appearance: none;
}

input[readonly],
input[readonly]:focus {
	border: 0px;
	padding: 5px 0;
	margin: 0;
	box-shadow: none;
	background-color: transparent;	
}

select {
    -webkit-appearance: none;
	background-color: var(--white);
	width: 100%;
	padding: 12px 15px;
	border-radius: 5px;
	color: var(--black);
	font-family: 'Roboto', sans-serif;
    font-weight: 400;
	line-height: 100%;
	font-size: 18px;
	height: 46px;
	margin: 0 0 10px;	
	box-shadow: none;
	border: 2px solid var(--white);
	background-image: url('./assets/images/dropdown-lightteal.svg');
	background-size: 18px 8px;
	background-position: right 10px center;
	background-repeat: no-repeat;
}

select:focus {
	background-color: var(--white);
	border-color: var(--lightteal);
	box-shadow: -2px 2px 7px 0 rgba(0,0,0,0.20);
	outline: none;	
}

textarea {
	height: 150px;
}

input[type="checkbox"],
input[type="radio"] {
	width: auto;
}

input[type="radio"],
input[type="checkbox"] {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid var(--white);
	background-color: var(--white);
	border-radius: 5px;
	cursor: pointer;
	box-shadow: none;
}

input[type="checkbox"]:focus {
	background-color: var(--white);
	box-shadow: -2px 2px 7px 0 rgba(0,0,0,0.20);
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
	background-color: var(--white);
    background-image: url('./assets/images/checkmark.svg');
    background-size: 12px 11px;
    background-repeat: no-repeat;
    background-position: center center;
    border: 2px solid var(--white);
}

.inner.bg-white input[type="radio"]:checked,
.inner.bg-white input[type="checkbox"]:checked {
	border-color: var(--xlightteal);
}

input[type="radio"] {
	border-radius: 10px;
}

.wp-caption {
	max-width: 100%;
}

.container {
	max-width: 1380px;
	margin: 0 auto;
    padding: 0 20px;	
}

.container.full {
	max-width: 1800px;
}

.container.small {
	max-width: 980px;
}

@media only screen and (min-width:768px) {

	.container {
		padding: 0 30px;
	}

}

@media only screen and (min-width:1024px) {
	
	.container {
		padding: 0 50px;
	}
	
	.alignleft {
		margin: 0 10px 10px 0;
		float: left;
	}
	
	.alignright {
		margin: 0 0 10px 10px;
		float: right;
	}
	
}

@media only screen and (min-width:1200px) {
	
	body.show-nav {
		overflow: inherit;
	}
	
}

/* stop stacking issues */
.clearfix::after {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}

/* use box-sizing: border-box */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/***************************
		   COLUMNS
***************************/

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

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

.small-padding.row {
	margin-left: -5px;
	margin-right: -5px;
}

.no-padding.row {
	margin-left: 0px;
	margin-right: 0px;
}

.column {
	display: block;
	width: 100%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

.small-padding.row .column {
	padding-left: 5px;
	padding-right: 5px;
}

.no-padding.row .column {
	padding-left: 0px;
	padding-right: 0px;
}

.small-1-2 {
	width: 50%;
}

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

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

.row.justify-center {
	justify-content: center;
}

.row.justify-space {
	justify-content: space-between;
}

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

@media only screen and (min-width:768px) { 
	
	.row.small-reverse {
		flex-direction: row-reverse;
	}
	
	.row.medium-reverse {
		flex-direction: row-reverse;
	}
	
	.row.medium-noreverse {
		flex-direction: row;
	}
	
	.row.medium-padding {
		margin-left: -20px;
		margin-right: -20px;
	}
		
	.row.medium-padding .column {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.row.large-padding {
		margin-left: -20px;
		margin-right: -20px;
	}
		
	.row.large-padding .column {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.row.xlarge-padding {
		margin-left: -30px;
		margin-right: -30px;
	}
		
	.row.xlarge-padding .column {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	.medium-1-5 {
		width: 20%;
	}

	.medium-1-4 {
		width: 25%;
	}
	
	.medium-3-10 {
		width: 30%;
	}
	
	.medium-1-3 {
		width: 33.33334%;
	}
	
	.medium-2-5 {
		width: 40%;
	}
	
	.medium-1-2 {
		width: 50%;
	}
	
	.medium-3-5 {
		width: 60%;
	}
	
	.medium-2-3 {
		width: 66.66666%;
	}
	
	.medium-3-4 {
		width: 75%;
	}
	
	.medium-auto {
		width: auto;
	}

}

@media only screen and (min-width:1024px) {
	
	.row.large-padding {
		margin-left: -30px;
		margin-right: -30px;
	}
		
	.row.large-padding .column {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	.row.l-large-padding {
		margin-left: -30px;
		margin-right: -30px;
	}
		
	.row.l-large-padding .column {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	
	.row.l-xlarge-padding {
		margin-left: -45px;
		margin-right: -45px;
	}
		
	.row.l-xlarge-padding .column {
		padding-left: 45px;
		padding-right: 45px;
	}
	
	.row.large-reverse {
		flex-direction: row-reverse;
	}
	
	.large-1-5 {
		width: 20%;
	}
	
	.large-1-4 {
		width: 25%;
	}
	
	.large-3-10 {
		width: 30%;
	}

	.large-1-3 {
		width: 33.33334%;
	}
	
	.large-35 {
		width: 35%;
	}
	
	.large-2-5 {
		width: 40%;
	}
	
	.large-45 {
		width: 45%;
	}
	
	.large-1-2 {
		width: 50%;
	}
	
	.large-55 {
		width: 55%;
	}
	
	.large-3-5 {
		width: 60%;
	}
	
	.large-2-3 {
		width: 66.66666%;
	}
	
	.large-3-4 {
		width: 75%;
	}
	
	.large-100 {
		width: 100%;
	}
	
}

@media only screen and (min-width:1280px) {
	
	.row.xl-large-padding {
		margin-left: -30px;
		margin-right: -30px;
	}
		
	.row.xl-large-padding .column {
		padding-left: 30px;
		padding-right: 30px;
	}	
	
	.row.xl-xlarge-padding {
		margin-left: -50px;
		margin-right: -50px;
	}
		
	.row.xl-xlarge-padding .column {
		padding-left: 50px;
		padding-right: 50px;
	}	
	
	.xlarge-1-5 {
		width: 20%;
	}
	
	.xlarge-1-4 {
		width: 25%;
	}
	
	.xlarge-1-3 {
		width: 33.3333%;
	}
	
	.xlarge-35 {
		width: 35%;
	}
	
	.xlarge-2-5 {
		width: 40%;
	}
	
	.xlarge-1-2 {
		width: 50%;
	}
	
	.xlarge-3-5 {
		width: 60%;
	}
	
}

/***************************
		   HEADINGS
***************************/

h1, h2, h3, h4, h5 {
	margin: 0 0 15px 0;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	padding: 0;
	color: var(--darkpurple);
}

h1 {
	font-size: 30px;
	margin: 0 0 20px;
}

h2 {
	font-size: 26px;
}

h2.block-title {
	margin: 0 0 30px;
}

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

h3 {
	font-size: 20px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 17px;
}

@media only screen and (min-width:768px) {
	
	
	h1 {
		font-size: 36px;
	}
	
	h2 {
		font-size: 30px;
	}
	
	h2.block-title {
		margin: 0 0 50px;
	}
	
	h3 {
		font-size: 22px;
	}

	h4 {
		font-size: 20px;
	}
	
	h5 {
		font-size: 18px;
	}

}

@media only screen and (min-width:1024px) {
	
	h1 {
		font-size: 38px;
	}
	
	h2 {
		font-size: 32px;
	}
	
	h3 {
		font-size: 24px;
	}
	
	h4 {
		font-size: 22px;
	}

}

/***************************
    HEADER & NAVIGATION
***************************/

.header {
	position: relative;
    background-color: var(--white);
	height: 70px;
	z-index: 99;
}

.header-main {
	position: absolute;
	top: 0;
	width: 100%;
	height: 70px;
	background-color: transparent;
	text-align: left;
}

.out-of-view .header-main {
	background-color: var(--white);
	transform: translate(0,-100%);
	position: absolute;
	height: 70px;
	opacity: 0;
	transition: all 0.3s ease;
	animation:fadeIn ease-in 1;
	animation-fill-mode:forwards;
	animation-duration:0.3s;
	animation-delay: 0.05s;
}

.scroll .header-main {
	box-shadow: -2px 2px 7px 0 rgba(0,0,0,0.20);
	opacity: 1;
	position: fixed;
	transform: translate(0,0);
}

.header .container {
	padding: 0;
}

.header-logo {
	width: 178px;
	margin: 0;
	padding: 12px 0;
	margin: 0 0 0 20px;
	display: inline-block;
	position: relative;
	z-index: 9;
	transition: all 0.0s ease;
}

.header-logo img {
	width: 100%;
	display: block;
}


.toggle-nav {
	background-image: url('./assets/images/menuicon.svg');
	background-size: 39px 28px;
	background-position: center;
	background-repeat: no-repeat;
	background-color: transparent;
    width: 40px;
    height: 70px;
	border: 0px;
	font-size: 12px;
	text-align: center;
    padding: 0;
    margin: 0;
	color: #fff; 
	text-transform: uppercase;
    position: absolute;
    top: 0px;
    right: 20px;
}

.toggle-nav:focus {
	outline: none;
}

.header-nav {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
    transition: all 0.3s ease;
}

.show-nav .header-nav {
    visibility: visible;
    opacity: 1;
    height: 100vh;	
}

.header-nav .site-menu {
	width: 100%;
	height: 100vh;
	position: absolute;
	overflow-y: auto;
	top: 0;
	right: 0;
	background-color: var(--darkpurple);
	background-image: linear-gradient(90deg, var(--darkpurple) 0%, var(--purple) 100%);
	padding: 90px 20px 120px 20px;
	box-sizing: border-box;
	z-index: 999;
	text-align: left;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
}

.header-nav .site-menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	width: 100%;
}

.header-nav .site-menu ul li {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	text-align: left;
}

.header-nav .site-menu ul li .submenu-button {
	position: absolute;
	top: 0;
	right: 0;
	background-image: url('./assets/images/dropdown.svg');
	background-position: right 0px center;
	background-repeat: no-repeat;
	background-size: 18px 12px;
	width: 100%;
	height: 43px;
	text-align: center;
	cursor: pointer;
}

.header-nav .site-menu ul li .submenu-button.active {
	width: 43px;
	background-image: url('./assets/images/dropdown-up.svg');
}

.header-nav .site-menu ul li a {
	padding: 8px 0px 8px 0px;
	font-size: 22px;
	font-family: 'Montserrat', sans-serif;
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	display: block;
}

.header-nav .site-menu ul li.current-menu-item > a,
.header-nav .site-menu ul .current-menu-parent > a,
.header-nav .site-menu ul .current-menu-ancestor > a,
.header-nav .site-menu ul li > a:hover,
.header-nav .site-menu ul li > a:focus {
	color: var(--lightteal);
}

.header-nav .site-menu ul li.menu-btn a {
	color: var(--white);
	padding: 12px 20px;
	font-size: 18px;
	margin-top: 30px;
}


.header-nav .site-menu ul li.menu-btn a:hover,
.header-nav .site-menu ul li.menu-btn a:focus {
	color: var(--white);
}

.header-nav .site-menu ul li .sub-menu {
    margin: 0;
    padding: 0 0 20px;
    display: none;
    border-top: 0px;
} 

.header-nav .site-menu ul li .sub-menu li {
	line-height: 100%;
	border-bottom: 0px;
}

.header-nav .site-menu ul li .sub-menu li a {
    font-size: 18px;
    padding: 7px 0px;
	line-height: 120%;
    text-transform: none;
    color: var(--white);
}

.header-nav .site-menu ul li .sub-menu li a:hover {
	color: var(--lightteal);
}

.header-nav .site-menu .off-canvas-close {
	position: absolute;
	top: 30px;
	right: 20px;
	background-image: url('./assets/images/close.svg');
	background-size: 100% 100%;
	width: 28px;
	height: 28px;
	z-index: 999;
}

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { position: absolute; } to { position: fixed; } }
@-moz-keyframes fadeIn { from { position: absolute; } to { position: fixed; } }
@keyframes fadeIn { from { position: absolute; } to { position: fixed; } }

@media only screen and (min-width:600px) {

	.admin-bar.out-of-view .header-main {
		top: 46px;
	}

}

@media only screen and (min-width:768px) {
	
	.header {
		height: 80px;
	}

	.header-main {
		height: 80px;
		background-color: transparent;
	}
	
	.header-logo {
		width: 192px;
		padding: 12px 0;
	}
	
	.out-of-view .header-logo {
		padding: 12px 0;
		width: 178px;
	}
	
	.header-main .cart {
		top: 22px;
		right: 90px;
	}
	
	.toggle-nav {
	    right: 30px;
	    top: 7px;
	}
	
	.header-nav .site-menu ul li a {
		font-size: 24px;
	}	

	.out-of-view .header-main .cart {
		top: 17px;
	}
	
	.out-of-view .toggle-nav {
		top: 0px;
	}

}

@media only screen and (min-width:783px) {

	.admin-bar.out-of-view .header-main {
		top: 32px;
	}

}

@media only screen and (min-width:1200px) { 
	
	.header {
		height: 100px;
	}
	
	.header .container {
		padding: 0 40px;
		position: relative;
	}
	
	.header-main {
		height: 100px;
		position: absolute;
		transition: all 0s ease;
	}
	
	.out-of-view .header-main {
		transform: translate(0,-100%);
		position: absolute;
		height: 84px;
		opacity: 0;
		transition: all 0.3s ease;
		animation:fadeIn ease-in 1;
		animation-fill-mode:forwards;
		animation-duration:0.3s;
		animation-delay: 0.05s;
	}
	
	.scroll .header-main {
		box-shadow: -2px 2px 7px 0 rgba(0,0,0,0.20);
		opacity: 1;
		position: fixed;
		transform: translate(0,0);
	}
	
	.header-logo {
		display: inline-block;
		margin: 0 0 0 40px;
		transition: all 0s ease;
		position: absolute;
		top: 20px;
		left: 0;
		padding: 0;
		z-index: 999;
		width: 230px;
	}
	
	.out-of-view .header-logo {
		padding: 0;
		width: 200px;
		top: 17px;
	}
	
	.toggle-nav {
		display: none;
	}
	
	.header-nav,
	.show-nav .header-nav {
		position: absolute;
		top: 0px;
		left: 0;
		padding: 0 40px;
		width: 100%;
		height: inherit;
		float: none;
		visibility: visible;
		opacity: 1;
		text-align: right;
		transition: all 0.0s ease;
	}
	
	.out-of-view .header-nav {
		top: 0px;
	}	
	
	.header-nav .site-menu,
	.show-nav .header-nav .site-menu { 
		background: transparent;
		position: relative;
		width: 100%;
		height: auto;
		display: inline-block;
		right: auto;
		left: auto;
		top: auto;
		z-index: 9;
		padding: 0 0 0 0;
		transform: none;
		transition: all 0s ease;
	    overflow-y: inherit;
		text-align: right;
	}

	.header-nav .site-menu ul {
		list-style: none;
		margin: 0;
		padding: 0;
		font-size: 0px;
		display: inline-block;
	}

	.header-nav .site-menu ul li {
		display: inline-block;
		position: relative;
		padding: 0;
		margin: 0;
		width: auto;
	}
	
	.header-nav .site-menu ul li .submenu-button {
		display: none;
	}

	.header-nav .site-menu ul li a {
		color: var(--darkpurple);
		padding: 41px 0;
		margin: 0 0 0 22px;
		display: inline-block;
		position: relative;
		line-height: 100%;
		font-size: 18px;
	}

	.header-nav .site-menu ul li.menu-btn a {
		padding: 12px 20px;
		color: var(--white) !important;
		margin-top: 0px;
	}
	
	.out-of-view .header-nav .site-menu ul li a {
		padding: 33px 0;
	}
	
	.out-of-view .header-nav .site-menu ul li.menu-btn a {
		padding: 12px 20px;
	}
		
	
	.header-nav .site-menu ul li.current-menu-item > a,
	.header-nav .site-menu ul .current-menu-parent > a,
	.header-nav .site-menu ul .current-menu-ancestor > a,
	.header-nav .site-menu ul li > a:hover,
	.header-nav .site-menu ul li > a:focus {
		color: var(--darkteal);
	}
	
	.header-nav .site-menu .off-canvas-close {
		display: none;
	}
	
	.header-nav .site-menu ul li .sub-menu {
	    display: none;
	    position: absolute;
	    background: var(--darkpurple);
	    -webkit-transition: 500ms ease all;
	    transition: 500ms ease all;
	    left: calc(50% + 15px);
	    transform: translate(-50%,0);
	    z-index: 999;
	    padding: 25px 20px 25px;
	    width: 270px;
	    margin: 0;
	    box-shadow: -2px 2px 7px 0 rgba(0,0,0,0.20);
	}
	
	.header-nav .site-menu ul li:hover .sub-menu li {
		display: block;
		padding: 0;
	}
	
	.header-nav .site-menu ul li .sub-menu li {
		display: block;
	    margin: 0;
	    width: 100%;
	    text-align: center;
	}
	
	.header-nav .site-menu ul li .sub-menu li a:before {
		display: none;
	}
	
	.header-nav .site-menu ul li .sub-menu li a {
		font-size: 18px;
		width: auto;
		padding: 10px 0;
		color: var(--white);
		display: inline-block;
		text-decoration: none;
		margin: 0 auto;
		text-transform: none;
		background-color: transparent;
	}
	
	.header-nav .site-menu ul .sub-menu li.current-menu-item > a,
	.header-nav .site-menu ul .sub-menu .current-menu-parent > a,
	.header-nav .site-menu ul .sub-menu .current-menu-ancestor > a,
	.header-nav .site-menu ul .sub-menu li > a:hover,
	.header-nav .site-menu ul .sub-menu li > a:focus {
		color: var(--lightteal);
	}
	
	.header-nav .site-menu ul li:hover .sub-menu {
		display: block;
	}

}

@media only screen and (min-width:1280px) {
	
	.header-nav .site-menu ul li a {
		margin: 0 0 0 30px;
	}
	
}

/***************************
       PAGE CONTENT
***************************/

.main {
	min-height: calc(100vh - 500px);
}

.block-item {
	padding: 0 0 30px;
}

.block-item:first-child {
	padding-top: 50px;
}

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

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

.block-item ul {
	list-style: none;
	padding: 0;
}

.block-item ul li {
	padding: 2px 0 2px 28px;
	position: relative;
}

.block-item ul li:before {
	content: '';
	display: block;
	position: absolute;
	width: 20px;
	height: 15px;
	background-image: url('./assets/images/checkmark.svg');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center center;	
	left: 0;
	top: 7px;
}

.block-item.bg-darkpurple ul li:before,
.block-item .inner.bg-darkpurple ul li:before {
	background-image: url('./assets/images/checkmark-white.svg');	
}

.block-item.bg-teal ul li:before,
.block-item .inner.bg-teal ul li:before {
	background-image: url('./assets/images/checkmark-purple.svg');	
}


.bg-white {
	background-color: var(--white);
	color: var(--black);
}

.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5 {
	color: var(--darkpurple);
}

.bg-lightpurple {
	background-color: var(--lightpurple);
	color: var(--black);
}

.bg-lightpurple h2,
.bg-lightpurple h3,
.bg-lightpurple h4,
.bg-lightpurple h5 {
	color: var(--darkpurple);
}

.bg-xlightteal {
	background-color: var(--xlightteal);
	color: var(--black);
}

.bg-xlightteal h2,
.bg-xlightteal h3,
.bg-xlightteal h4,
.bg-xlightteal h5 {
	color: var(--darkpurple);
}

.bg-darkpurple {
	background-color: var(--darkpurple);
	color: var(--white);
}

.bg-darkpurple h2,
.bg-darkpurple h3,
.bg-darkpurple h4,
.bg-darkpurple h5 {
	color: var(--white);
}

.bg-darkpurple a:not(.btn) {
	color: var(--white);
}

.bg-teal {
	background-color: var(--darkteal);
	background-image: linear-gradient(90deg, var(--darkteal) 0%, var(--lightteal) 100%);
	color: var(--white);
}

.block-item.bg-teal {
	background: linear-gradient(90deg, var(--darkteal) 0%, var(--lightteal) 50%, var(--darkteal) 100%);
	background-size: 200% 100%;
	background-position: left center;
	animation: gradientSlide 10s ease-in-out infinite;
}

.bg-teal h2,
.bg-teal h3,
.bg-teal h4,
.bg-teal h5 {
	color: var(--white);
}

.bg-teal a:not(.btn) {
	color: var(--white);
}

.block-item.bg-white + .block-item:not(.bg-white),
.block-item.bg-lightpurple + .block-item:not(.bg-lightpurple),
.block-item.bg-xlightteal + .block-item:not(.bg-xlightteal),
.block-item.bg-darkpurple + .block-item:not(.bgdarkpurpleteal),
.block-item.bg-teal + .block-item:not(.bg-teal),
.block-item.bg-image + .block-item:not(.bg-image) {
	padding-top: 50px;
}

.block-item .icon-link {
	margin: 0 0 20px;
	line-height: 150%;
}

.block-item .icon-link a {
	display: inline-block;
	padding: 2px 0 2px 25px;
	position: relative;
	color: var(--darkpurple);
	text-decoration: none;
	font-weight: 600;
}

.block-item .icon-link a .icon {
	position: absolute;
	top: 2px;
	left: 0;
}

.block-item .icon-link a .icon svg {
	width: 16px;
	height: 16px;
	fill: var(--lightteal);
}

.block-item .icon-link a:hover {
	color: var(--darkpurple);
}

.block-item .icon-link a:hover .icon svg {
	fill: var(--lightteal);
}

.block-item .icon-link + .icon-link {
	margin-top: -10px;
}

.block-image-text .image {
	width: 100%;
	margin: 0 0 30px;
	border-radius: 20px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
	overflow: hidden;
}

.block-image-text .image img {
	width: 100%;
	display: block;
}

.block-image-text .column:nth-child(2) {
	align-self: center;
}

.block-video-text .column:nth-child(2) {
	align-self: center;
}

.block-video-text .video-container {
	width: 100%;
}

.block-quote blockquote {
	padding: 0;
	margin: 0;
}

.block-quote .text {
	font-size: 28px;
	color: var(--darkpurple);
	line-height: 120%;
}

.block-quote.bg-teal .text,
.block-quote.bg-darkpurple .text {
	color: var(--white);
}

.block-quote .subtext {
	font-size: 1.1em;
	font-weight: bold;
	margin-top: -10px;
	margin: 0 0 20px;
	display: block;
	color: var(--darkteal);
}

.block-quote.bg-darkpurple .subtext {
	color: var(--lightteal);
}

.block-quote.bg-teal .subtext {
	color: var(--darkpurple);
}

.block-featured .inner {
    margin: 0 0 30px;
    border-radius: 20px;
    padding: 30px 20px 15px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}

.block-featured .inner .column:first-child {
	align-self: center;
}

.block-featured .inner.bg-white h2,
.block-featured .inner.bg-white h3,
.block-featured .inner.bg-white h4 {
	color: var(--darkpurple);
}

.block-featured .image {
	margin: 0 auto 20px;
	width: 100%;
	max-width: 300px;
}

.block-featured .image img {
	width: 100%;
	display: block;
}

.block-double .column {
	padding-bottom: 30px;
}

.block-double .inner:not(.bg-none) {
    padding: 20px 20px 5px;
	border-radius: 20px;
	height: 100%;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);	
}

.block-logo-slider {
	text-align: center;
}

.block-logo-slider .intro {
	margin-bottom: 30px;
}

.block-logo-slider .logo-swiper {
	margin: 0 0 10px;
	padding: 10px 0;
}

.block-logo-slider .logo-swiper .outer {
	width: 100%;
	display: block;
	padding-bottom: 50%;
	border-radius: 10px;
	position: relative;
	transition: all 0.3s ease;
	background-color: var(--white);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 10px;
}

.block-logo-slider .logo-swiper .image {
	display: block;
	width: 80%;
	height: 70%;
	text-align: center;
	position: absolute;
	top: 15%;
	left: 10%;
}

.block-logo-slider .logo-swiper .image img {
	display: inline-block;
	line-height: 100%;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.block-logo-images .image {
	display: none;
	margin: 0 0 30px;
}

.block-logo-images .image.mobile {
	display: block;
}

.block-logo-images.image img {
	width: 100%;
	display: block;
}

.block-images .column {
	padding-bottom: 30px;
}

.block-images .item {
    position: relative;
    padding: 0 0 10px;
    background-color: var(--white);
	border-radius: 20px;
	overflow: hidden;
    box-shadow: 0px 5px 10px hsl(0deg 0% 0% / 10%);
    height: 100%;
	color: var(--black) !important;	
	text-decoration: none;
    display: flex;
    flex-direction: column;
}

.block-images .item h2,
.block-images .item h3,
.block-images .item h4 {
	color: var(--darkpurple);
}

.block-images .item .subtitle {
	margin: 0 0 15px;
	font-weight: bold;
}

.block-images .item .top {
	padding: 0 20px;
	flex: 1 auto;
}

.block-images .item .more {
	padding: 0 20px;
}

.block-images .item .more .btn {
	width: 100%;
}

.block-images a.item:hover {
    box-shadow: 0px 10px 25px hsl(0deg 0% 0% / 20%);		
}

.block-images .image {
	position: relative;
	overflow: hidden;
	margin: 0 0 20px;
}

.block-images .image img {
	width: 100%;
	display: block;
}

.block-links .column {
	padding-bottom: 30px;
}

.block-links .item {
    position: relative;
    padding: 20px 20px 1px;
	border-radius: 20px;
    background-color: var(--white);
    box-shadow: 0px 2px 20px hsl(0deg 0% 0% / 10%);
    height: 100%;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: var(--black);
}

.block-links.bg-darkpurple .item.bg-white {
	color: var(--black);
}

.block-links .item .content {
	flex: 1 auto;
}

.block-links .item .content h2,
.block-links .item .content h3,
.block-links .item .content h4 {
	color: var(--darkpurple);
}

.block-links .item .content ul li:before {
    background-image: url('./assets/images/checkmark.svg');	
}

.block-links .item .btn {
	width: 100%;
}

.block-links .item .price {
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: var(--blue);	
	font-size: 22px;
}

.block-links .item:hover {
    box-shadow: 0px 10px 25px hsl(0deg 0% 0% / 20%);	
}

.block-faq .inner {
    margin: 0 0 30px;
    border-radius: 20px;
    padding: 30px 20px 15px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
	color: var(--black);
}

.block-faq .inner.bg-darkpurple,
.block-faq .inner.bg-teal {
	color: var(--white);
}

.block-usps .column {
	padding-top: 20px;
	padding-bottom: 30px;
}

.block-usps .item {
    position: relative;
    height: 100%;
	text-align: center;
	padding: 40px 0 0;
}

.block-usps .item:before {
	content: '';
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	float: left;
	margin: 5px 15px 5px 0;
	background-color: var(--lightteal);
	background-image: url('./assets/images/checkmark-white.svg');
	background-size: 18px 15px;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translate(-50%, 0%);
}

.block-usps.bg-teal .item:before {
	background-color: var(--darkpurple);
}

.block-reviews {
	position: relative;
	overflow: hidden;
}

.block-reviews h2 {
	margin: 0 0 10px;
}

.block-reviews .reviews-swiper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;	
	padding: 20px 20px 30px;
	overflow: visible;
	margin: 30px 0 20px;
}

.block-reviews .reviews-swiper .swiper-slide {
	height: auto;
}

.block-reviews .reviews-swiper .swiper-slide:nth-child(even) .item {
	transform: translate(0, -20px);
}

.block-reviews .reviews-swiper .swiper-nav {
	width: 100%;
	max-width: 600px;
	position: relative;
	padding: 0 50px;	
    display: flex;
    align-items: center;
	margin: 20px 0 0;
}

.block-reviews .reviews-swiper .swiper-nav.swiper-nav-lock {
	display: none;
}

.block-reviews .reviews-swiper .swiper-button-next, 
.block-reviews .reviews-swiper .swiper-button-prev {
	display: block;
	width: 25px;
	height: 25px;
	border-radius: 0;
    background-color: transparent;
    background-image: url('./assets/images/chevron-right-lightteal.svg');
	background-size: 16px 25px;
	background-repeat: no-repeat;
	background-position: center center;
	left: auto;
	right: 0;
	top: 0;
	transition: all 0.3s ease;
	position: absolute;
	margin: 0;
}

.block-reviews.bg-teal .reviews-swiper .swiper-button-next, 
.block-reviews.bg-teal .reviews-swiper .swiper-button-prev {
    background-image: url('./assets/images/chevron-right-darkpurple.svg');	
}

.block-reviews .reviews-swiper .swiper-button-prev {
	transform: rotate(-180deg);
	right: auto;
	left: 0;
}

.block-reviews .reviews-swiper .swiper-button-next:after, 
.block-reviews .reviews-swiper .swiper-button-prev:after {
	display: none;
}

.block-reviews .reviews-swiper .swiper-button-next.swiper-button-lock,
.block-reviews .reviews-swiper .swiper-button-prev.swiper-button-lock {
	display: none;
}

.block-reviews .reviews-swiper .swiper-scrollbar {
	background-color: var(--xlightteal);
    left: auto;
    width: 100%;
    position: relative;
    top: auto;
    margin: 8px 0;
	height: 7px;
	bottom: auto;
}

.block-reviews.bg-xlightteal .reviews-swiper .swiper-scrollbar {
	background-color: var(--white);
}

.block-reviews.bg-teal .reviews-swiper .swiper-scrollbar {
	background-color: var(--white);
}

.block-reviews .reviews-swiper .swiper-scrollbar-drag {
	background-color: var(--lightteal);
}

.block-reviews.bg-teal .reviews-swiper .swiper-scrollbar-drag {
	background-color: var(--darkpurple);
}

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

.block-cta .container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	column-gap: 20px;
}

.block-cta .text {
	margin: 0 0 20px;
}

.block-cta p {
	margin: 0;
}

.block-cta .btn {
	margin-bottom: 20px;
}

.block-404 {
	min-height: calc(100vh - 500px);
	display: flex;
	align-items: center;
}

.block-404 .more {
	display: flex;
	flex-flow: wrap;
	justify-content: center;
	gap: 10px;
}

@media only screen and (min-width:768px) {
	
	.block-item {
		padding: 0 0 30px;
	}
	
	.block-item:first-child {
		padding-top: 60px;
	}
	
	.block-item.bg-white + .block-item:not(.bg-white),
	.block-item.bg-lightpurple + .block-item:not(.bg-lightpurple),
	.block-item.bg-xlightteal + .block-item:not(.bg-xlightteal),
	.block-item.bg-darkpurple + .block-item:not(.bgdarkpurpleteal),
	.block-item.bg-teal + .block-item:not(.bg-teal),
	.block-item.bg-image + .block-item:not(.bg-image) {
		padding-top: 60px;
	}
	
	.block-image-text.image-right .row {
		flex-direction: row-reverse;
	}
	
	.block-video-text.video-right .row {
		flex-direction: row-reverse;
	}
	
	.block-quote .text {
		font-size: 32px;
	}

	.block-featured .inner {
		margin: 0 0 20px;
		padding: 30px 30px 10px;	
	}
	
	.block-double .column {
		padding-bottom: 40px;
	}
		
	.block-double .inner:not(.bg-none) {
		padding: 30px 30px 10px;
	}
	
	.block-logo-images .image {
		display: block;
	}
	
	.block-logo-images .image.mobile {
		display: none;
	}

	.block-images .item .top,
	.block-images .item .more {
		padding: 0 30px;
	}
	
	.block-links .item {
		padding: 30px 30px 10px;
	}

	.block-reviews .inner {
		margin: 0 0 30px;
		padding: 45px 25px 30px;			
	}

	.block-links .column {
		padding-bottom: 50px;
	}
	
	.block-faq .inner {
		padding: 30px 30px 10px;
	}
	
	.block-usps .item {
		padding: 50px 0 0;
	}
	
	.block-newsletter {
		padding: 60px 0 30px;
	}
	
	.block-reviews .reviews-swiper {
		margin: 50px 40px 30px;
		padding: 30px 0 20px;
	}
	
	.block-reviews .reviews-swiper .swiper-slide:nth-child(even) .item {
		transform: translate(0, -30px);
	}
	
	.block-reviews .reviews-swiper .swiper-nav {
		margin: 50px 0 0;
	}
	
	.block-reviews .reviews-swiper .swiper-button-next, 
	.block-reviews .reviews-swiper .swiper-button-prev {
		width: 30px;
		height: 30px;
		background-size: 20px 30px;
	}
	
	.block-reviews .reviews-swiper .swiper-scrollbar {
		margin: 12px 0;
	}
	
	.block-cta .container {
		column-gap: 40px;
		flex-wrap: nowrap;
	}
	
	.block-cta .text {
		width: auto;
	}
	
	.block-cta .btn {
		width: auto;
		max-width: 350px;
		flex: none;
	}


}

@media only screen and (min-width:1024px) {
	
	.block-item {
		padding: 0 0 40px;
	}
	
	.block-item:first-child {
		padding-top: 60px;
	}
	
	.block-item.bg-white + .block-item:not(.bg-white),
	.block-item.bg-lightpurple + .block-item:not(.bg-lightpurple),
	.block-item.bg-xlightteal + .block-item:not(.bg-xlightteal),
	.block-item.bg-darkpurple + .block-item:not(.bgdarkpurpleteal),
	.block-item.bg-teal + .block-item:not(.bg-teal),
	.block-item.bg-image + .block-item:not(.bg-image) {
		padding-top: 60px;
	}
	
	.block-featured .inner {
		margin: 0 0 20px;
		padding: 50px 50px 30px;	
	}
	
	.block-links .item {
		padding: 40px 40px 20px;
	}
		
	.block-double .inner:not(.bg-none) {
		padding: 40px 40px 20px;
	}
	
	.block-faq .inner {
		padding: 40px 40px 20px;
	}
	
	.block-usps .item {
		padding: 50px 0 0;
	}

	.block-usps .item:before {
		width: 50px;
		height: 50px;
		background-size: 24px 20px;
		top: -25px;
	}
	
	.block-reviews .inner {
		margin: 0 -40px 30px;
		padding: 45px 70px 25px;
	}
	

}

@media only screen and (min-width:1280px) {	
	
	.block-featured .inner {
		margin: 0 0 20px;
		padding: 70px 70px 50px;	
	}
	
	.block-double .inner:not(.bg-none) {
		padding: 50px 50px 30px;
	}
	
	.block-faq .inner {
		padding: 50px 50px 30px;
	}
	
	
	
}

/***************************
       HOME 
***************************/

.home-top {
	position: relative;
	display: flex;
	justify-content: flex-end;
	min-height: 550px;
	padding: 0 !important;
	overflow: hidden;
	background-color: var(--lightpurple);
}

.home-top .image {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.home-top .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
    object-position: calc(var(--focal-point-left, 0.5) * 100%) calc(var(--focal-point-top, 0.5) * 100%);
}

.home-top .image:before {
	content: '';
	display: block;
	width: 100px;
	height: 100%;
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	background-image: linear-gradient(270deg, #e3e2ec 0%, rgba(227, 226, 236, 0) 100%);
}

.home-top .outer {
	position: relative;
	z-index: 3;
	width: 75%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-top .inner {
	width: 100%;
	max-width: 800px;
	text-align: center;
	padding: 20px 20px 1px;
}

.home-top .inner h1 {
	color: var(--darkpurple);
}

.home-top .inner .quote {
    color: var(--darkpurple);
	font-weight: bold;
	font-style: italic;
	line-height: 140%;
}

.home-top .inner .more  {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}

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

@media only screen and (min-width:768px) {
	
	.home-top {
		min-height: 450px;
		display: flex;
		justify-content: flex-end;
	}
	
	.home-top .image {
		width: 60%;
	}
	
	.home-top .image:before {
		width: 100px;
		height: 100%;
	}
	
	.home-top .image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.home-top .outer {
		width: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.home-top .inner {
		padding: 30px 30px 10px;
		font-size: 1.1em;
		text-align: left;
	}

	.home-top .inner .more  {
		justify-content: flex-start;
	}

	
}

@media only screen and (min-width:1024px) {
	
	.home-top {
		min-height: 500px;
	}
	
	.home-top:before {
		bottom: 10%;
		right: 60%;
		width: 1500px;
		height: 1500px;
	}
	
	.home-top .outer {
		width: 60%;
	}
	
	.home-top .inner {
		padding: 40px 40px 20px;
	}
	
}

@media only screen and (min-width:1280px) {
	
	.home-top {
		min-height: 550px;
	}
	
	.home-top .inner {
		padding: 50px 50px 10px;
	}
	
	
}

@media only screen and (min-width:1440px) {
	
	.home-top {
		min-height: 600px;
	}
	
	.home-top .image {
		width: 67%;
	}
	
	.home-top .outer {
		width: 67%;
	}
	
	
}

@media only screen and (min-width:1600px) {
	
	.home-top {
		min-height: 700px;
	}
	
	
}

/***************************
      PAGE TOP
***************************/

.page-top {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	text-align: center;
	min-height: 200px;
	padding: 50px 0 30px;
	background-color: var(--lightpurple);
}

.page-top.bg-image {
	min-height: 400px;
	justify-content: flex-end;
	align-items: flex-end;
	padding-bottom: 10px;
}

.page-top .image {
	width: 100%;
	display: block;
	position: absolute;
	height: 100%;
	padding: 0;
	margin: 0;
	top: 0;
	left: 0;
}

.page-top .image:before {
	content: '';
	display: block;
	width: 100%;
	height: 300px;
	position: absolute;
	z-index: 2;
	bottom: 0;
	right: 0;
	background-image: linear-gradient(0deg, rgba(227, 226, 236, 1)  0%, rgba(227, 226, 236, 0) 100%);
}

.page-top .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
    object-position: calc(var(--focal-point-left, 0.5) * 100%) calc(var(--focal-point-top, 0.5) * 100%);
}

.page-top .content h1 {
	margin: 0 0 20px;
}

.page-top .content .subtitle {
	font-size: 1.2em;
	line-height: 140%;
	margin: 0 0 30px;
}

.page-top .inner {
	width: 100%;
	display: block;
	z-index: 2;
	position: relative;
}

.page-top.bg-image .inner {
	width: 100%;
}

.page-top .inner .content h1 {
	margin: 0 0 10px;
	color: var(--white);
}

.page-top.bg-image .inner .content h1 {
	color: var(--darkpurple);
}

.page-top .inner .content p {
	font-size: 18px;
}

.page-top.bg-image .inner .content p {
	font-size: 18px;
    text-shadow: 0 0 20px var(--lightpurple);
}

.page-top.bg-teal .inner .content p {
    color: var(--darkpurple);
    font-weight: bold;
    text-shadow: none;	
}


@media only screen and (min-width:768px) {
	
	.page-top {
		min-height: 300px;
		padding: 70px 0 50px;
	}
	
	.page-top.bg-image {
		min-height: 400px;
		align-items: center;
		padding-bottom: 50px;
	}
	
	.page-top .image {
		width: 75%;
	}
	
	.page-top .image:before {
		width: 67%;
		height: 100%;
		background-image: linear-gradient(270deg, rgba(227, 226, 236, 1)  0%, rgba(227, 226, 236, 0) 100%);
	}
	
	.page-top.bg-image .inner {
		width: 60%;
	}

	
	.page-top .inner .content p {
		font-size: 20px;
	}
	
}

@media only screen and (min-width:1024px) {
	
	.page-top {
		min-height: 350px;
	}
	
	.page-top.bg-image {
		min-height: 550px;
	}
	
	.page-top .image {
		width: 75%;
		left: 0;
	}
	
	.page-top .image:before {
		width: 67%;
	}
	
}

@media only screen and (min-width:1280px) {
	
	.page-top {
		min-height: 400px;
	}
	
	.page-top.bg-image {
		min-height: 600px;
	}
	
}

@media only screen and (min-width:1440px) {

	.page-top .image {
		width: 80%;
	}
	
}

@media only screen and (min-width:1600px) {
	
	.page-top {
		min-height: 400px;
	}
	
	.page-top.bg-image {
		min-height: 650px;
	}
	
}

/***************************
      POSTS
***************************/

.post-loop .column {
	padding-bottom: 30px;
}

.post-loop .item {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.3s ease;
	background-color: var(--white);
	color: var(--black);
    box-shadow: 0px 5px 10px hsl(0deg 0% 0% / 10%);
	text-align: center;
}

.post-loop.bg-teal .item {
	color: var(--black);
}

.post-loop .item:hover {
    box-shadow: 0px 10px 25px hsl(0deg 0% 0% / 20%);	
}

.post-loop .item .cat {
	position: absolute;
	top: 20px;
	left: 20px;
    padding: 5px 15px;
    background-color: var(--purple);
    color: var(--white);
    font-size: 15px;
    border-radius: 10px;
	z-index: 2;
	max-width: calc(100% - 40px);
}

.post-loop .item .image {
	margin: 0;
    background-color: var(--darkpurple);
	border-radius: 0px;
	overflow: hidden;
}

.post-loop .item .image img {
	transition: all 0.3s ease;
	width: 100%;
	display: block;
}

.post-loop .item:hover .image img {
	opacity: 0.5;
}

.post-loop .item .top {
	padding: 0 20px 1px;
	flex: 1;
}

.post-loop .item h3 {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0px;
    margin: 0 0 10px;
    padding: 20px 0 0;
    transition: all 0.3s ease;
    line-height: 150%;
    color: var(--darkpurple);
}

.post-loop .item .top .date {
	color: var(--darkteal);
}

.post-loop .item .more {
	flex: none;
	padding: 0 20px 10px;
	width: 100%;
}

.post-archive .filter {
	width: 100%;
	max-width: 600px;
	margin: 0 auto 30px;
}

.post-archive .filter .facetwp-type-search {
    width: 100%;
    min-width: 100%;
	margin: 0;
}

.post-archive .filter .facetwp-type-search .facetwp-input-wrap {
    width: 100%;
}

.post-archive .filter .facetwp-type-search input.facetwp-search {
	border-color: var(--lightteal);
}

.post-archive .filter .facetwp-type-search .facetwp-icon {
    opacity: 1;
}

.post-archive .filter .facetwp-type-search .facetwp-icon:before {
    background-image: url('./assets/images/search.svg');
    width: 40px;
	animation: none;
}

.post-archive .navigation {
	margin: 20px 0;
}

.post-archive .navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5px;
}

.post-archive .navigation ul li {
    display: flex;
	align-items: center;
	justify-content: center;
    background-color: var(--softgreen);
	width: 48px;
	height: 48px;
	text-align: center;
    font-size: 20px;
	font-weight: bold;
	line-height: 100%;
	transition: all 0.3s ease;
	border-radius: 50%;
	padding: 0;
}

.post-archive .navigation ul li:before {
	display: none;
}

.post-archive .navigation ul li span {
    display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 48px;
}

.post-archive .navigation ul li a {
	color: var(--white);
	text-decoration: none;
	width: 100%;
	height: 100%;
    display: flex;
	align-items: center;
	justify-content: center;
}

.post-archive .navigation ul li.active,
.post-archive .navigation ul li:hover {
	background-color: var(--darkpurple);
	color: var(--white);
}

.post-archive .navigation ul li.active a,
.post-archive .navigation ul li:hover a {
	color: var(--white);
}

.post-top h1 {
	color: var(--white);
}

.post-top .cat {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin: 0 0 30px;
}

.post-top .cat span {
    padding: 5px 15px;
    background-color: var(--purple);
    color: var(--white);
	font-size: 15px;
	border-radius: 10px;
}

.post-top .date {
	font-size: 1.2em;
	margin: 0 0 30px;
}

.post-top .image {
	width: 100%;
	margin: 0 0 30px;
	border-radius: 20px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
	overflow: hidden;
}

.post-top .image img {
	width: 100%;
	display: block;
}

.post-content .share {
	text-align: center;
    margin: 0 0 20px;
    position: relative;
}

.post-content .share b {
	font-weight: normal;
	text-transform: lowercase;
}

.post-content .share.hide-mobile {
	display: none;
	text-align: center;
}

.post-content .share span {
	display: block;
	margin: 0 0 20px 0;
	color: var(--purple);
	font-size: 1.2em;
	font-weight: bold;
}

.post-content .share a {
	background-color: var(--softgreen);
	width: 42px;
	height: 42px;
	display: inline-block;
	padding: 10px 0;
	text-align: center;
	border-radius: 50%;
	margin: 0 2px 10px;
}

.post-content .share a svg {
	fill: var(--white);
	width: 22px;
	height: 22px;
}

.post-content .share a:hover {
	transform: scale(1.1);
}

.post-block {
	margin: 0 0 30px;
}

.post-block-image .image {
	width: 100%;
	display: block;
	overflow: hidden;
	position: relative;
	border-radius: 20px;
	margin: 0 0 30px;
}

.post-block-image .image img {
	width: 100%;
	display: block;
}

.post-block-image .image .image-caption {
	right: 20px;
}

.post-block-featured .inner {
    margin: 0 0 30px;
    border-radius: 20px;
    padding: 30px 20px 15px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
	position: relative;
}

.post-block-featured .inner.bg-white h2,
.post-block-featured .inner.bg-white h3,
.post-block-featured .inner.bg-white h4 {
	color: var(--darkpurple);
}

.post-block-quote {
	text-align: center;
}

.post-block-quote blockquote {
	padding: 0;
	margin: 0;
}

.post-block-quote blockquote .text {
	font-size: 28px;
	color: var(--darkpurple);
	line-height: 120%;	
}

.post-block-quote .subtext {
	font-size: 1.1em;
	font-weight: bold;
	margin: 0 0 20px;
	display: block;
	color: var(--darkteal);
}

.block-quote blockquote {
	padding: 0;
	margin: 0;
}

@media only screen and (min-width:768px) {
	
	.post-loop .item h3 {
		font-size: 20px;
	}
	
	.post-archive .filter {
		margin: 0 auto 50px;
	}
	
	.post-block {
		margin: 0 0 50px;
	}
	
    .post-block-text {
        padding: 0 30px;
    }
	
	.post-block-featured .inner {
		padding: 30px 30px 10px;
		margin: 0 0 50px;
	}
	
    .block-quote .text {
        font-size: 32px;
    }

}

@media only screen and (min-width:1024px) {
	
    .post-block-text {
        padding: 0 50px;
    }
	
	.post-block-featured .inner {
		padding: 40px 40px 20px;
	}

}

@media only screen and (min-width:1280px) {
	
	.post-loop .column {
		padding-bottom: 50px;
	}
	
    .post-block-text {
        padding: 0 70px;
    }
	
	.post-block-featured .inner {
		padding: 70px 70px 50px;
	}

}

/***************************
      Review
***************************/


.review-loop .item {
	background-color: var(--xlightteal);
	padding: 20px;
	height: 100%;
	border-radius: 20px;
	position: relative;
	text-align: left;
	transition: all 0.3s ease;
	box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}

.review-loop.bg-xlightteal .item {
	background-color: var(--white);
}

.review-loop.bg-teal .item {
	background-color: var(--darkteal);
}

.review-loop.bg-darkpurple .item {
	background-color: var(--darkpurple-hover);
}

.review-loop .item p {
	margin: 0 0 10px;
	line-height: 160%;
}

.review-loop .item:hover {
	scale: 1.05;
}

@media only screen and (min-width:768px) {
	
	.review-loop .item {
		padding: 30px;
	}
	
}

@media only screen and (min-width:1024px) {
	
	.review-loop .item {
		padding: 40px;
	}
	
}

/***************************
      Video Container
***************************/

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0;
	height: 0;
	overflow: hidden;
	margin: 0 0 30px 0;
	z-index: 1;
	background-position: center center;
	background-size: cover;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}

.video-container iframe,  
.video-container object,  
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0px;
}

.video-container .playbutton {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0);
	cursor: pointer;
	transition: all 0.3s ease;
}

.video-container .playbutton:hover {
	background-color: rgba(0,0,0,.2);
}

.video-container .playbutton .playicon {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90px;
	height: 90px;
	background-image: url('./assets/images/playbutton.svg');
	background-size: 90px 90px;
	background-repeat: no-repeat;
	background-position: center center; 
	margin: -45px 0 0 -45px;
	transition: all 0.3s ease;
	outline: none;
}

.video-container .playbutton .playicon:hover {
	transform: scale(1.05);
}

.video-container .caption {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 20px 25px;
	color: #fff;
	text-shadow: 1px 1px 1px rgb(0,0,0,0.5);
	text-align: center;
	width: 100%;
}

.video-container .caption.hidden {
	display: none;
}

@media only screen and (min-width:1024px) {
	
	.video-container .caption {
		padding: 25px;
	}
	
}


/***************************
		   ACCORDION
***************************/

.accordion {
	margin: 0 0 20px;
	overflow: hidden;
}

.accordion .accordion-item .accordion-item-title {
	cursor: pointer;
	line-height: 100%;
	padding: 15px 30px 15px 0;
    margin: 0;
    position: relative;
	transition: all 0.0s ease;
	border-top: 1px solid var(--purple);
}

.accordion .accordion-item .accordion-item-title h3 {
	color: var(--darkpurple);
	font-size: 18px;
	margin: 0;
}

.block-faq .inner.bg-darkpurple .accordion .accordion-item .accordion-item-title h3,
.block-faq .inner.bg-teal .accordion .accordion-item .accordion-item-title h3 {
	color: var(--white);
}

.accordion .accordion-item:first-child .accordion-item-title {
	border-top: 0px;
}

.accordion .accordion-item .accordion-item-title:before {
	content: '';
	display: block;
    width: 0px;
    height: 0px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--darkpurple);
    position: absolute;
    right: 3px;
    top: 20px;
    transition: all 0.3s ease;
}

.block-faq .inner.bg-darkpurple .accordion .accordion-item .accordion-item-title:before ,
.block-faq .inner.bg-teal .accordion .accordion-item .accordion-item-title:before  {
	border-bottom-color: var(--white);
}

.accordion .accordion-item .accordion-item-title:hover {
	color: var(--lightteal);
}

.accordion .accordion-item .accordion-item-title:hover:before {
	border-bottom-color: var(--lightteal);
}

.accordion .accordion-item .accordion-item-title.active h3 {
	color: var(--lightteal);
}

.block-faq .inner.bg-darkpurple .accordion .accordion-item .accordion-item-title.active h3 {
	color: var(--white);	
}

.block-faq .inner.bg-teal .accordion .accordion-item .accordion-item-title.active h3 {
	color: var(--white);
}

.accordion .accordion-item .accordion-item-title.active:before {
	border-bottom-color: var(--lightteal);
}

.accordion .accordion-item .accordion-item-title.active:before {
	transform: rotate(180deg);
}

.accordion .accordion-item .accordion-item-text {
	display: none;
	position: relative;
	padding: 5px 0 1px;
}



/***************************
      Notification bar
***************************/

.notification-bar {
	background: linear-gradient(
		90deg,
		var(--darkteal) 0%,
		var(--purple) 50%,
		var(--darkteal) 100%
	);
	background-size: 200% 100%;
	background-position: left center;
	animation: gradientSlide 10s ease-in-out infinite;
	margin: 0;
	padding: 17px 50px 14px 20px;
	position: relative;
	z-index: 99;
	color: var(--white);
	font-weight: 500;
	display: none;
	text-align: center;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.notification-bar:hover {
	background: linear-gradient(
		90deg,
		var(--purple) 0%,
		var(--darkpurple) 50%,
		var(--purple) 100%
	);
	background-size: 200% 100%;
	background-position: left center;
	animation: gradientSlide 10s ease-in-out infinite;
	color: var(--white);
}

.notification-bar.visible {
	display: flex;
}

.notification-bar p {
	margin: 0;
	font-size: 16px;
	line-height: 120%;
	cursor: pointer;
}

.notification-bar p:after {
	content: '';
	display: inline-block;
	width: 24px;
	height: 12px;
	background-image: url('./assets/images/arrow.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	margin: 0 0 0 10px;
}

.notification-bar p:hover {
	text-decoration: none;
}

.notification-bar .close {
	width: 20px;
	height: 20px;
	position: absolute;
	right: 15px;
	top: 15px;
	cursor: pointer;
}

.notification-bar .close:before,
.notification-bar .close:after {
	content: '';
	position: absolute;
	width: 20px;
	height: 3px;
	background-color: var(--white);
	top: 10px;
	left: 0;
	transition: all 0.3s ease;
}

.notification-bar .close:before {
	transform: rotate(-45deg);
}

.notification-bar .close:after {
	transform: rotate(45deg);
}

.notification-bar .close:hover {
	transform: scale(1.05);
}

@media only screen and (min-width:768px) {
	
	.notification-bar {
		padding: 15px 50px 15px 50px;
	}
	
	.notification-bar p {
		font-size: 18px;
		max-width: 1200px;
	}
		
}


/***************************
		   FORMS
***************************/

.gform_wrapper {
	margin: 0 0 15px 0;
}

.gform_title {
	margin: 20px 0 0;
	font-size: 22px;
}

.gform_fields {
	list-style-type: none;
	margin: 0 0 10px;
	padding: 0;
}

.gfield {
	margin: 0 0 10px 0;
	display: block;
	width: 100%;
	padding: 0px;
	border: 0px;
}

.gfield_label {
	padding: 0 0 5px;
	font-weight: 600;
	color: var(--darkpurple);
	line-height: 150%;
	display: block;
}

.inner.bg-darkpurple .gfield_label {
	color: var(--lightteal);
}

.hide-label .gfield_label,
.hide-labels .gfield_label {
	display: none;
}

.gfield_checkbox, 
.gfield_radio {
	margin: 0;
	list-style-type: none;
	padding: 0;
	position: relative;
	padding: 0;
}

.gfield_checkbox .gchoice,
.gfield_radio .gchoice,
.ginput_container_consent{
	line-height: 120%;
	position: relative;
	padding: 0px 0 10px 30px;
}

.ginput_container_consent [type="checkbox"],
.gfield_checkbox [type="checkbox"],
.gfield_radio [type="radio"] {
	position: absolute;
	top: 0px;
	left: 0;
}

.gform_body .gfield:before, .gform_body .gfield_checkbox li:before {
	display: none;
}

.gfield_radio .gchoice label {
	display: flex;
}

.validation_error,
.validation_message {
	font-size: 14px;
	font-weight: 500;
	color: var(--red);
	padding: 0;
	margin: 0 0 10px;
    display: block;
    width: 100%;
}

h2.gform_submission_error {
	font-size: 16px;
	font-weight: 500;
	color: var(--red);
}

h2.gform_submission_error:after {
	display: none;
}

.gform_confirmation_message {
    background: var(--green);
    color: #fff;
    padding: 10px;
    margin: 0.5em 0 25px;
}

.gform_validation_container, .gform_wrapper .gform_validation_container, body .gform_wrapper .gform_body ul.gform_fields li.gfield.gform_validation_container, body .gform_wrapper li.gform_validation_container, body .gform_wrapper ul.gform_fields li.gfield.gform_validation_container {
    display: none!important;
    position: absolute!important;
    left: -9000px;
}



.gfield:after {
	content: " ";
	display: table;
	clear: both;	
}

.gfield .instruction {
	display: none;
}

.gform_required_legend {
	display: none;
}

.gsection_title {
	font-size: 20px;
	margin: 20px 0 0;
}

.gform_wrapper .gfield_visibility_hidden,
.gform_wrapper .gf_invisible {
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

.gform_fields {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
}

.gform_fields .gfield {
	width: 100%;
	display: block;
	padding-left: 10px;
	padding-right: 10px;
}

.screen-reader-text {
	display: none;
}

.ui-datepicker {
	background: var(--white);
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.20);
    border-radius: 10px;
    font-size: 15px;
}

.ui-datepicker-header {
    padding: 10px;
    display: flex;
    gap: 5px;
}

.ui-datepicker-month {
	width: auto;
    min-width: auto;
    margin: 0 0 10px 0;
    height: 36px;
    display: inline-block;
    line-height: 100%;
	font-size: 14px;
    padding: 2px 25px 2px 10px;
    background-position: right 7px center;
}

.ui-datepicker-year {
	width: 75px;
	flex: none;
    min-width: auto;
    margin: 0 0 10px 0;
    height: 36px;
	font-size: 14px;
    display: inline-block;
    line-height: 100%;
    padding: 2px 25px 2px 10px;
    background-position: right 7px center;
}

.ui-datepicker-calendar {
	margin: 0;
	border: 0px;
	border-spacing: 0;
	text-align: center;
	padding: 0 10px 10px;
}

.ui-datepicker-calendar tr td {
	text-align: center;
	padding: 2px;
}

.ui-datepicker-calendar tr td a {
	background: var(--white);
	display: inline-block;
	text-decoration: none;
	width: 35px;
	height: 35px;
	border-radius: 3px;
	padding: 9px;
	color: var(--xdarkgrey);
}

.ui-datepicker-calendar tr td span {
	display: inline-block;
	text-decoration: none;
	width: 35px;
	height: 35px;
	border-radius: 3px;
	padding: 9px;
}

.undefined span {
	background: var(--lightbeige);
	color: var(--xdarkgrey);
}

.undefined a {
	color: var(--white);
}

.ui-state-hover {
	background-color: var(--purple) !important;
	color: #ffffff !important;	
}

.ui-datepicker-current-day a {
	background: var(--purple) !important;
	color: #ffffff !important;	
}

.ui-datepicker-unselectable span {
	background: #fff;
	color: #c7c7c7;
}

.ui-datepicker-today span,
.ui-datepicker-today a {
	background: var(--xlightteal) !important;
	color: #c7c7c7 !important;
}

.ui-datepicker-today span:hover,
.ui-datepicker-today a:hover {
	background: var(--xlightteal) !important;	
}

.ui-datepicker-today .ui-state-active {
	background: var(--purple) !important;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    font-size: 0px;
	border-radius: 3px;
    width: 36px;
    height: 36px;
    display: inline-block;
    background-color: var(--lightteal);
    background-image: url('./assets/images/chevron-right-white.svg');
    background-repeat: no-repeat;
    background-position: center left 14px;
    background-size: 8px 14px;
    margin: 0;
    float: left;
	flex: none;
}

.ui-datepicker-prev {
	transform: rotate(-180deg);
}

.ui-datepicker-next {
    background-position: center left 15px;
    margin: 0 0 10px 2px;
}

.ui-datepicker-prev-hover,
.ui-datepicker-next-hover {
	background-color: var(--darkteal) !important;
}

.ui-datepicker-prev.ui-state-disabled, .ui-datepicker-next.ui-state-disabled {
	opacity: 0.5;
}

.ui-datepicker-title {
	width: auto;
    display: flex;
	gap: 5px;
    float: right;	
	flex: 1;
}


@media only screen and (min-width:768px) {
	
	.gsection_title {
		font-size: 22px;
	}	
	
	.gform_fields .gfield.gfield--width-half {
		width: 50%;
	}
	
}

@media only screen and (min-width:1024px) {
	
	.gsection_title {
		font-size: 24px;
	}	
	
}

/***************************
          FOOTER
***************************/

.footer {
	background-color: var(--darkpurple);
	color: var(--white);
}

.footer-main {
	padding: 40px 0 20px;
}

.footer-main {
	padding: 40px 0 20px;
}

.footer-main .logo {
	width: 220px;
	display: inline-block;
	margin: 0 0 40px;
}

.footer-main .tagline {
    font-style: italic;
    font-weight: 600;
    font-size: 22px;
    color: var(--white);
    text-align: center;
	margin: 0 0 30px;
}

.footer-main .info {
	color: var(--white);
}

.footer-main .info a {
	color: var(--white);
}

.footer-main a {
	text-decoration: none;
	color: var(--white);
}

.footer-main a:hover {
	text-decoration: none;
	color: var(--lightteal);
}

.footer-main h3 {
	color: var(--white);
	font-size: 20px;
}

.footer-main ul {
	list-style-type: none;
	padding: 0;
}

.footer-main ul li a {
	position: relative;
	display: block;
	padding: 0 0 0 15px;
}

.footer-main ul li a:before {
	content: '';
	display: block;
	width: 10px;
	height: 15px;
	background-image: url('./assets/images/dropdown-lightteal.svg');
	background-repeat: no-repeat;
	background-size: 10px 15px;
	background-position: center;
	transform: rotate(-90deg);
	position: absolute;
	left: 0;
	top: 6px;
}

.footer-main .icon-link {
	margin: 0 0 20px;
	line-height: 150%;
}

.footer-main .icon-link a {
	display: block;
	padding: 2px 0 2px 25px;
	position: relative;
	color: var(--white);
}

.footer-main .icon-link a .icon {
	position: absolute;
	top: 2px;
	left: 0;
}

.footer-main .icon-link a .icon svg {
	width: 16px;
	height: 16px;
	fill: var(--white);
}

.footer-main .icon-link a:hover {
	color: var(--blue);
}

.footer-main .icon-link a:hover .icon svg {
	fill: var(--blue);
}

.footer-main .icon-link + .icon-link {
	margin-top: -10px;
}

.footer .socials {
	margin: 0 0 30px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.footer .socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background-color: var(--softgreen);
}

.footer .socials a svg {
	width: 22px;
	height: 22px;
	fill: var(--white);
	transition: all 0.3s ease;
}

.footer .socials a:hover {
	background: var(--lightteal);
	transform: rotate(-360deg);
}

.footer .socials a:hover svg {
	fill: var(--white);
}


.footer-bottom {
	padding: 25px 0 5px;
	text-align: center;

	background: linear-gradient(
		90deg,
		var(--darkteal) 0%,
		var(--purple) 50%,
		var(--darkteal) 100%
	);
	background-size: 200% 100%;
	background-position: left center;

	animation: gradientSlide 10s ease-in-out infinite;
}

@keyframes gradientSlide {
	0% {
		background-position: left center;
	}
	50% {
		background-position: right center;
	}
	100% {
		background-position: left center;
	}
}




.footer-bottom .copy {
	font-size: 16px;
	color: var(--white);
}

.footer-bottom .copy a {
	color: var(--white);
	text-decoration: none;
}

.footer-bottom .copy a:hover {
	color: var(--lightteal);
}

.footer-bottom .copy span {
	display: block;
}

@media only screen and (min-width:768px) {
	
	.footer-main {
		padding: 60px 0 40px;
	}
	
	.footer-main h3 {
		font-size: 22px;
	}
	
	.footer-main .logo {
		margin: 0 0 60px;
	}
	
	.footer-main .quote {
		align-self: center;
	}
	
	.footer-main .tagline {
		font-size: 24px;
		text-align: right;
		margin: 0 0 60px;
	}
	
	.footer-bottom {
		padding: 30px 0 30px 0;
	}
	
	.footer-bottom .copy span {
		display: inline-block;
	}
	
	.footer-bottom .copy span:before {
		content: '|';
		padding: 0 10px 0 10px;
	}
	
	.footer-bottom .copy span:first-child:before {
		display: none;
	}

	
}

@media only screen and (min-width:1024px) {
	
	.footer-main {
		padding: 100px 0 80px;
	}
	
	.footer-bottom {
		padding: 40px 0 20px;
	}
	
}