/* CSS Variables */
:root{
	--white-font: #fff;
	--white-bg: #fff;
	--white-hover: #ffffff30;
	--black-font: #121212;
	--black-bg: #121212;
	--black-bg-30: #1212124D;
	--black-bg-40: #12121266;
	--black-bg-60: #12121299;
	--black-bg-70: #121212B3;
	--white-bg-0: #FFFFFF00;
	--white-bg-40: #FFFFFF40;
	--orange-font: #DD5C14;
	--pink:#DB00B2;
	--purple: #8859AA;
	--orange: #DD5C14;
	--aqua-bg: #E8FCF9;
	--beige-bg: #FFFBF3;
	--grey-font: #8E8C8C;
	--light-grey: #E6E6E6;
	--grey: #BEBEBE;
	--grey-border: #C4C4C4;
	--focus: #7ACCC0;
}
html, body, div, main, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
pre {
	padding: 100px 20px;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup,
main, nav, section, summary {
    display: block;
}
audio,canvas, video {
    display: inline-block;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* General styling */
*, :before, :after {
  -webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:root {
  -webkit-tap-highlight-color: transparent; /* no more color over a link when tapped, usually iOS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; /* antialiasing, Mozilla only */
  -webkit-font-smooth: always; /* text has no sharp edges, Safari only */
}
html, body {
    overflow-x: hidden;
}
html {
	-ms-overflow-style: scrollbar; /* scrollbar in case of overflow for IE */
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	position: relative;
	min-height: 100vh;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-justify-content: space-between;
	justify-content: space-between;
    font: 16px/1.6 'Montserrat', sans-serif;
    font-weight:500;
    color: #000;
    background: #FFF;
	overflow: hidden;
}

p {
	font-size: 16px;
	line-height: 1.6;
	font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'seravek-web', sans-serif;
}
h1, h2 {
	font-size: 40px;
	line-height: 1.2;
	text-transform: uppercase;
}
h2 {

}
h3 {
	font-size: 20px;
	line-height: 1.6;
}
h1, h2, h3, h4, h5, h6,
h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a,
article h1 a, article h2 a, article h3 a, article h4 a, article h5 a, article h6 a  {
	margin-bottom: 20px;
  text-rendering: optimizeLegibility;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
	text-decoration:none;
}
.font60 {
	font-size: 28px;
}
.font50 {
	font-size: 24px;
}
.font40 {
	font-size: 24px;
}
@media only screen and (min-width: 600px) {

}
@media only screen and (min-width: 768px) {
	.font60 {
		font-size: 48px;
	}
	h2 {
		margin-bottom: 10px;
	}
}
@media only screen and (min-width: 1025px) {
	.font30 {
		font-size: 30px;
		line-height: 1.6;
	}
	.font40 {
		font-size: 40px;
		line-height: 1.1;
	}
	.font50 {
		font-size: 50px;
		line-height: 1;
	}
	.font60 {
		font-size: 60px;
		line-height: 1;
	}
	h3 {
		font-size: 24px;
	}
	h2 {
		font-size: 30px;
		line-height: 1.4

	}
	h1 {
		font-size: 60px;
		line-height: 60px;
	}
}
@media only screen and (max-width: 769px) {
	h1, h2, h3, h4, h5, h6,
	h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a,
	article h1 a, article h2 a, article h3 a, article h4 a, article h5 a, article h6 a {
		margin-bottom: 5px;
	}
}
article ul li,
article ol li,
article p {
	word-break: break-word;
}
article table tr:first-child{
	background:#d5d5d5!important;
}
article table tr:nth-child(odd){
	background:#f9f7f6;
}
article table tr:nth-child(even){
	background:#fff;
}
span {
  	display: inline;
}
a {
	display: inline-block;
	line-height: 0;
	color: inherit;
	cursor: pointer;
	text-decoration: none;
	transition:.4s;
}
a:focus, a:active {
	outline: none;
}
a:not([class]):focus {
  	outline: none;
	box-shadow: none;
}
img {
	max-width: 100%;
	height: auto;
}
iframe {
	width: 100%;
}

@media only screen and (max-width: 769px) {
	iframe.youtube {
		max-height: 410px;
	}
}
img.size-portrait-thumbnail {
	width:auto;
	max-width:unset;
}
ol {
	list-style: decimal;
	list-style-position:inside;
}
ul {
	list-style: disc;
	list-style-position:inside;
}
li {
	list-style: none;
}
nav ul, nav ol {
  margin: 0;
  list-style: none;
}
b, strong, th, legend {
	font-weight: bold;
}
small {
	font-size: 75%;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
  vertical-align: baseline;
}
sub {
	bottom: -.25em;
}
sup {
	top: -.5em;
}
abbr[title] {
  text-decoration: underline dotted;
}
abbr[data-original-title], abbr[title] {
  cursor: help;
}
del {
  text-decoration: line-through;
}
table {
	margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
	border-collapse: collapse;
	border-spacing: 0;
}
th, td {
	border: 1px solid #eceeef;
	padding: 10px;
}
caption {
	font-size: 15px;
  padding: 10px 0;
  caption-side: bottom;
}
figcaption {
  font-size:15px;
}
legend {
	margin-bottom: 5px;
}
label {
	display: block;
	cursor: pointer;
}
button, input, textarea {
	font-family: inherit;
	line-height: normal;
	margin: 0;
}
textarea {
	min-height: 80px;
	resize: vertical;
}
[type="submit"], [type="reset"], [type="button"],
[type="text"], [type="email"], [type="tel"], [type="search"],
button {
	border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
	appearance: none;
}
button, [type="submit"], [type="reset"], [type="button"] {
   cursor: pointer;
}
textarea:focus, button:focus,
div[contenteditable="true"]:focus, [class~="btn"]:focus,
[type="text"]:focus, [type="tel"]:focus, [type="email"]:focus, [type="password"]:focus, [type="submit"]:focus {
  outline: 0;
}
[hidden] {
	display: none;
}
[tabindex="-1"]:focus {
  outline: 0 !important;
}
p + h2, p + h3, p + h4,
ul + h2, ul + h3, ul + h4,
ol + h2, ol + h3, ol + h4,
code + h2, code + h3, code + h4,
table + h2, table + h3, table + h4,
blockquote + h1, blockquote + h2, blockquote + h3, blockquote + h4 {
    margin-top: 35px;
}
button[disabled],
html input[disabled] {
    cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}
input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}
/* WordPress Core */
.alignnone {
  margin: 5px 20px 5px 0;
}
.aligncenter,
div.aligncenter  {
  display: block;
  margin: 30px auto 40px auto;
}
div.aligncenter{
	width: 90%!important;
	margin: 0 auto;
	padding:10px;
	border:1px solid #41ee6e;
}
div.aligncenter img{
	width: 100%;
}
.alignright {
  float:right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  background: #fff;
  max-width: 100%; /* Image does not overflow the content area */
  text-align: left;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  padding: 0;
  width: auto;
	margin-bottom: 10px;
}
.wp-caption p.wp-caption-text,
.wp-block-image figcaption{
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
	text-align: center;
	font-style: italic;
	margin:0px;
}
.full-width {
	width:100%;
	overflow:hidden;
}
.has__gallery .gallery{
	margin: auto -6px;
	padding: 6px 0;
	line-height: 1;
	overflow-x: hidden;
}
.has__gallery .gallery .gallery-item {
	float: left;
	margin: 0;
	text-align: center;
	padding: 6px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.has__gallery .gallery .gallery-caption,
.has__gallery .gallery .gallery-icon {
	margin: 0;
}
.has__gallery .gallery .gallery-caption {
	font-size: 13px;
	margin: 4px 0;
}
.has__gallery .gallery-columns-1 .gallery-item {
	width: 100%;
}
.has__gallery .gallery-columns-2 .gallery-item {
	width: 50%;
}
.has__gallery .gallery-columns-3 .gallery-item {
	width: 33.333%;
}
.ie8 .has__gallery .gallery-columns-3 .gallery-item,
.ie7 .has__gallery .gallery-columns-3 .gallery-item {
	width: 33%;
}
.has__gallery .gallery-columns-4 .gallery-item {
	width: 25%;
}
.has__gallery .gallery-columns-5 .gallery-item {
	width: 20%;
}
.has__gallery .gallery-columns-6 .gallery-item {
	width: 16.665%;
}
.has__gallery .gallery-columns-7 .gallery-item {
	width: 14.285%;
}
.has__gallery .gallery-columns-8 .gallery-item {
	width: 12.5%;
}
.has__gallery .gallery-columns-9 .gallery-item {
	width: 11.111%;
}
.has__gallery .gallery img {
	max-width: 100%;
	height: auto;
	border: none;
	padding: 0;
	border-radius:15px;
}
@media(max-width:1200px){
	.has__gallery .gallery-columns-4 .gallery-item,
	.has__gallery .gallery-columns-5 .gallery-item,
	.has__gallery .gallery-columns-6 .gallery-item,
	.has__gallery .gallery-columns-7 .gallery-item,
	.has__gallery .gallery-columns-8 .gallery-item,
	.has__gallery .gallery-columns-9 .gallery-item {
		width:33%;
	}
}
@media(max-width:767px){
	.has__gallery.gallery-columns-2 .gallery-item,
	.has__gallery .gallery-columns-3 .gallery-item,
	.ie8 .has__gallery .gallery-columns-3 .gallery-item,
	.ie7 .has__gallery .gallery-columns-3 .gallery-item,
	.has__gallery .gallery-columns-4 .gallery-item,
	.has__gallery .gallery-columns-5 .gallery-item,
	.has__gallery .gallery-columns-6 .gallery-item,
	.has__gallery .gallery-columns-7 .gallery-item,
	.has__gallery .gallery-columns-8 .gallery-item,
	.has__gallery .gallery-columns-9 .gallery-item {
		width: 100%;
	}
}
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
    white-space: nowrap;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}
html.js, html.no-js, html {
    margin-top: 0 !important;
}

/* End of WordPress Core */
/* General Theme Style */
.h-align{
  text-align:center;
}
.clear:after,
.clear:before,
.row:after,
.row:before{
	clear:both;
	display:block;
	width:100%;
	content:'';
}
.container{
	width:100%;
	max-width:1420px;
	padding:0px 15px;
	margin:0 auto;
	display:block;
	position:relative;
}
.container.small {
	max-width: 940px;
}
.container.medium {
	max-width: 1180px;
}
.container:before,
.container:after{
	content:"";
	display:block;
	clear:both;
}
.img-abs{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top:0;
	left: 0;
}
@media only screen and (max-width: 769px) {
	.container {
		padding: 0 15px;
	}
}
/* Row */
.row{
	display: block;
	width: 100%;
}
.row > .item{
	display: inline-block;
	padding: 15px;
	vertical-align: top;
}
.row > .item.item19{
	width: 19%;
}
.row > .item.item24{
	width: 24%;
}
.row > .item.item32{
	width: 32%;
}
.row > .item.item49{
	width: 49%;
}
.row > .item.item50{
	width: 50%;
	float: left;
}
.row > .item.item65{
	width: 65%;
	float: left;
}
.row > .item.item35{
	width: 35%;
	float: left;
}
.row > .item.full-item{
	width: 100%;
}
/* Flex */
.flex-row, .flex-row.reverse, .flex-column, .flex-column.reverse{
	display: flex;
}
.flex-row{
	flex-direction: row;
}
.flex-column{
	flex-direction: column;
}
.flex-row.reverse{
	flex-direction: row-reverse;
}
.flex-column.reverse{
	flex-direction: column-reverse;
}
.flex-item{
	position: relative;
	padding: 0 10px;
}
.flex-item.item10{
	flex: 1 1 10%;
}
.flex-item.item20{
	flex: 1 1 20%;
}
.flex-item.item25{
	flex: 1 1 25%;
}
.flex-item.item30{
	flex: 1 1 30%;
}
.flex-item.item32{
	flex: 1 1 32%;
}
.flex-item.item40{
	flex: 1 1 40%;
}
.flex-item.item50{
	flex: 1 1 50%;
}
.flex-item.item60{
	flex: 1 1 60%;
}
.flex-item.item70{
	flex: 1 1 70%;
}
.flex-item.item80{
	flex: 1 1 80%;
}
.flex-item.item90{
	flex: 1 1 90%;
}
.align-center {
	align-items: center;
}
@media only screen and (max-width: 600px) {
	.flex-item.item32 {
		flex: 1 1 100%;
	}
}
@media only screen and (max-width: 769px) {
	* {
		text-align: center;
	}
	.flex-item {
		padding: 0;
	}
}
@media only screen and (max-width: 1025px) {
	.flex-row,
	.flex-row.reverse {
		flex-direction: column;
	}
	.flex-item {
		margin-bottom: 20px;
	}
	.flex-item.item50 {
		width: 100%;
	}
}

svg.social-media {
    fill: transparent;
    transition: fill 0.3s ease-in-out;
}
svg.social-media circle {
    transition: stroke 0.3s ease-in-out;
}
svg.social-media path {
	fill: var(--white-font);
}
svg.social-media:hover {
    fill: var(--pink);
}
svg.social-media:hover circle {
    stroke: var(--pink);
}
body.nav-black header svg.social-media circle {
	stroke: var(--black-font);
}
body.nav-black header svg.social-media mask path {
	fill: white;
}
body.nav-black header svg.social-media path {
	fill: var(--black-font);
}
body.nav-black header svg.social-media:hover circle {
	stroke: var(--pink);
}
body.nav-black header svg.social-media:hover path{
	fill: var(--white-font);
}
body.show-menu header svg.social-media circle {
	stroke: var(--pink);
}
body.show-menu header svg.social-media mask path {
	fill: var(--white-font);
}
body.show-menu header svg.social-media path {
	fill: var(--white-font);
}
body.show-menu header svg.social-media:hover circle {
	stroke: var(--pink);
}
body.show-menu header svg.social-media:hover path{
	fill: var(--white-font);
}
@media only screen and (max-width: 769px) {
.social-media-container .bandcamp path {
	  transform: skew(-25deg, 0deg) translateX(8px);
	}
}
.w700 {
	width: 100%;
	max-width: 701px;
	margin: 0 auto;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb50 {
	margin-bottom: 50px;
}
.mb100 {
	margin-bottom: 100px;
}
.black-bg {
	background-color: var(--black-bg);
}
.grey-font {
	color: var(--grey-font);
}
.pink-font {
	color: var(--pink);
}
.purple-font {
	width: 100%;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 600;
	text-wrap: pretty;
	color: var(--purple);
	margin-bottom: 40px;
}
.orange-font {
	font-size: 20px;
	line-height: 1.4;
	font-weight: 600;
	color: var(--orange);
}
@media only screen and (min-width: 1320px) {
	.purple-font {
		font-size: 20px;
	}
}
@media only screen and (max-width: 769px) {
	.purple-font {
		font-size: 18px;
		margin-bottom: 30px;
	}
	.mb30 {
		margin-bottom: 20px;
	}
	.mb50 {
		margin-bottom: 30px;
	}
	.mb100 {
		margin-bottom: 10px;
	}
}
.text-center {
	text-align: center;
}
.relative {
	position: relative;
}
section {
	padding: 50px 0 100px;
}
section.hero {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
}
section.hero::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100%;
	height: 55px;
	background: url(../img/hero-white-ellipse.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateX(-50%);
	z-index: 1;
}
.black-bg section.hero::before {
	background-image: url('../img/hero-black-ellipse.svg');
}
section.hero .hero-info {
	color: var(--white-font);
	z-index: 10;
	margin: auto;
}
section.contact-addresses {
	padding: 50px 0 150px;
}
@media only screen and (max-width: 769px) {
	section {
		padding: 50px 0;
	}
	section.hero {
		min-height: 60vh;
	}
	section.hero::before {
		bottom: -1px;
		height: 30px;
	}
}

.btn, .btn-wrapper {
  position: relative;
  display: inline-flex;
	justify-content: center;
	align-items: center;
}
.btn-wrapper p {
	display: inline-flex;
}
.btn, input.btn {
    display: inline-flex;
	min-width: 155px;
    max-width: fit-content;
    color: var(--white-font);
    min-height: 35px;
    text-align: center;
    cursor: pointer;
    font-family: 'seravek-web';
    text-transform: uppercase;
    text-decoration: none;
		background-color: var(--pink);
		-webkit-mask-image: url('../img/Button.svg');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
		-webkit-mask-position: center;
		mask-image: url('../img/Button.svg');
    mask-repeat: no-repeat;
    mask-size: contain;
		mask-position: center;
    border-radius: 20px;
    border: none;
    transition: all .3s ease-in-out;
    position: relative;
    z-index: 1;
}
.btn:hover, input.btn:hover {
		background-color: var(--purple);
}
@media only screen and (max-width: 769px) {
	.btn, input.btn {
		font-size: 14px;
	}
	input.btn {
		margin-top: 25px;
	}
}

.black-after {
	position: relative;
}
.black-after::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.black-after.opacity30::after {
	background-color: var(--black-bg-30)
}
.black-after.opacity40::after {
	background-color: var(--black-bg-40)
}
.black-after.opacity60::after {
	background-color: var(--black-bg-60)
}
.black-after.opacity70::after {
	background-color: var(--black-bg-70)
}
.black-after.gradient::after {
	background: linear-gradient(var(--white-bg-0), var(--black-bg));
	border-radius: 20px;
}
.border20 {
	border-radius: 20px;
}
.border50 {
	border-radius: 50px;
}
.height-fit {
	height: fit-content;
}

.ws-navigation {
	width: 100%;
}
.ws-navigation ul {
	display: flex;
	gap: 5px;
}
.ws-navigation li {
	border-radius: 100%;
}
.ws-navigation li a {
	display: inline-flex;
  align-items: center;
  justify-content: center;
	width: 30px;
  height: 30px;
	border-radius: 100%;
  background-color: transparent;
  color: var(--black-font);
  font-weight: normal;
  transition: all 0.1s ease;
	cursor: pointer;
	transition: .1s ease-in-out;
}
.ws-navigation li:hover a {
	color: var(--white-font);
	background-color: var(--pink);
}
.ws-navigation li.active a{
	color: var(--white-font);
	background-color: var(--pink);
	cursor: unset;
}
.ws-navigation li.active a {
	cursor: unset;
}

/*form adds */
span.wpcf7-list-item{
	margin: 0;
  }
  .wpcf7-not-valid-tip{
	font-size: 12px;
	color:#ff0000;
	line-height: 16px;
  }
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output,
  .wpcf7 form.failed .wpcf7-response-output,
  .wpcf7 form.aborted .wpcf7-response-output,
  .wpcf7 form.sent .wpcf7-response-output{
	border: none;
	font-size: 14px;
	padding: 0;
	margin:5px 0;
	line-height: 18px;
  }
  .wpcf7 form.invalid .wpcf7-response-output{
	  color:#ff0000;
		text-align: center;
  }
  .wpcf7 form.sent .wpcf7-response-output {
	  color:#41ee6e;
  }
  .wpcf7-form input[type=checkbox] {
	position: relative;
	visibility: hidden;
	  width: auto;
	  display: inline-block;
	  padding: 0;
	  line-height: 0;
  }
  .wpcf7-form input[type=checkbox]+span:before {
	display: block;
	position: absolute;
	content: '';
	height: 21px;
	width: 21px;
	top: 0px;
	border: 1px solid var(--pink);
	border-radius: 100%;
	left: 0;
  }
  .wpcf7-form input[type=checkbox]+span:after {
	display: block;
	position: absolute;
	height: 11px;
	width: 11px;
	top: 5px;
	left: 5px;
	visibility: hidden;
	background-color: var(--pink);
	border-radius: 100%;
  }
  .wpcf7-form input[type=checkbox]:checked+span:before {
	background: transparent
  }
  .wpcf7-form input[type=checkbox]:checked+span:after {
	visibility: visible
  }
  .wpcf7-form input[type=checkbox] + span {
	font-size: 16px;
	vertical-align: middle;
	margin-left: 10px;
	line-height: 20px; /* Match the checkbox size */
  }

  /* Form additional styles */
  .wpcf7,
  .wpcf7-container {
	display: inline-block;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
  }

  .wpcf7 input:not([type="submit"]):not([type="checkbox"]),
  .wpcf7 textarea,
  form textarea,
  form input:not([type="submit"]):not([type="checkbox"]) {
	width: 100%;
	border: none;
	border-bottom: 1px solid var(--purple);
	padding: 10px 0;
	font-size: 16px;
	line-height: 1.6;
	color: var(--black-font);
	text-align: start;
	background-color: transparent;
	transition: 0.4s;
  }
  .black-bg .wpcf7 input:not([type="submit"]):not([type="checkbox"]),
  .black-bg .wpcf7 textarea,
  .black-bg form textarea,
  .black-bg form input:not([type="submit"]):not([type="checkbox"]) {
	color: var(--focus);
  }

  .wpcf7 input:not([type="submit"]):not([type="checkbox"]):focus,
  form input:not([type="submit"]):not([type="checkbox"]):focus,
  .wpcf7 textarea:focus,
  form textarea:focus {
	border-color: var(--focus);
  }

  .wpcf7 .item br {
	display: none;
  }

  .wpcf7 .item label,
  form label {
	text-align: left;
	font-size: 16px;
	line-height: 1.6;
	font-family: 'Montserrat';
	position: relative;
  }

  .wpcf7 .item.terms-item span {
	display: block;
	text-align: left;
	margin-bottom: 6px;
  }

  .wpcf7 .item.terms-item span.wpcf7-form-control-wrap label span {
	display: inline-block;
	width: 90%;
	font-size: 14px;
	margin-left: 0;
  }
.black-bg .wpcf7 .item.terms-item span.wpcf7-form-control-wrap label span {
	color: var(--focus);
}
  form input[type=checkbox] + span {
	font-size: 16px;
	vertical-align: middle;
	margin-left: 10px;
  }

  form abbr.required {
	text-decoration: none !important;
	color: var(--purple);
	cursor: default !important;
	border-bottom: 0 !important;
	margin-left: -3px;
  }

  .wpcf7 .item a {
	color: var(--pink);
	text-decoration: underline;
  }

  .wpcf7 .item a:hover {
	color: var(--purple);
  }

  .wpcf7 p:last-of-type {
	text-align: center;
  }

  .wpcf7-spinner {
	position: absolute;
	margin-top: 40px;
  }

  textarea{
	  height: 163px;
	  resize: none;
  }

  input::placeholder,
  textarea::placeholder {
	color: var(--black-font);
  }
  .black-bg input::placeholder,
  .black-bg textarea::placeholder {
	color: var(--focus);
  }
	.black-bg .contact-form .purple-font {
		color: var(--white-font);
	}
  .wpcf7 .item.submit  {
	text-align: center;
  }
  .wpcf7 .terms-item {
	padding: 0 15px;
  }
  .wpcf7 .terms-item span.grey-font {
	padding-left: 20px;
  }
  .wpcf7 .item.terms-item span.wpcf7-form-control-wrap label span.pink-font {
	display: inline;
}
@media(max-width:767px) {
.wpcf7 .item.item50,
  .wpcf7 .item.full-item{
  width: 100%;
		padding: 15px 0 0 0;
}
.wpcf7 .item.terms-item {
	padding: 10px 0 0 0;
margin-bottom: -10px;
}
  .wpcf7 .item.terms-item span.wpcf7-form-control-wrap label span{
	  font-size: 12px;
  }
}

/* START SINGLE CONTENT AREA */
.content-area h2,
.content-area h3,
.content-area h4,
.content-area h5 {
    font-size: 40px;
    line-height: 1.1;
    text-transform: unset;
}
.content-area p {
	font-size: 20px;
	line-height: 1.7;
	margin-bottom: 40px;
}
.content-area p:last-of-type {
	margin-bottom: 10px;
}
.content-area p:has(iframe) {
	position: relative;
  width: 100%;
  overflow: hidden;
}
.content-area p:has(iframe)::before {
	content: "";
  display: block;
  padding-top: 56.25%;
}
.content-area p iframe {
	position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  aspect-ratio: 16 / 9;
}
.content-area p:has(img) .alignnone {
	margin: 0;
}
.content-area p:has(img) {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 20px;
}
.content-area p:has(img):last-of-type {
	margin-bottom: 40px;
}
.content-area img {
	flex: 1 1 25%;
	width: 100%;
  border-radius: 20px;
}
.content-area a {
	position: relative;
	display: inline;
	color: var(--orange);
  font-weight: 600;
}
.content-area a::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 60%;
		background-color: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}
.content-area a:hover:hover::after {
    transform: scaleX(1);
}
.content-area q,
.content-area blockquote {
	padding: 20px 0;
	border-top: 1px solid var(--grey-border);
	border-bottom: 1px solid var(--grey-border);
	margin-bottom: 20px;
}
.content-area q p,
.content-area blockquote p {
	font-size: 36px;
	line-height: 1.4;
	font-weight: 700;
	font-style: normal;
	color: var(--pink);
	margin-bottom: 0;
}
.content-area q cite,
.content-area blockquote cite {
	font-size: 18px;
	line-height: 1.2;
	font-weight: 500;
	color: var(--purple);
}
.content-area ol,
.content-area ul {
	list-style: none;
	font-size: 20px;
	line-height: 1.8;
	margin-bottom: 20px;
}
.content-area ol {
  counter-reset: li-counter;
}
.content-area li {
	position: relative;
	padding-left: 50px;
	margin-bottom: 15px;
}
.content-area ol li {
	counter-increment: li-counter;
}
.content-area ol li::before {
	content: counter(li-counter);
 display: flex;
 align-items: center;
 justify-content: center;
 position: absolute;
 top: 50%;
 left: 0;
 transform: translateY(-50%);
 background-color: var(--pink);
 border-radius: 50%;
 color: #fff;
 font-weight: bold;
 width: 30px;
 height: 30px;
}
.content-area ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	background-color: var(--purple);
	width: 6px;
	height: 6px;
	border-radius: 100%;
}
.content-area .recommended-articles ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
@media only screen and (max-width: 769px) {
	.content-area * {
		text-align: start;
	}
	.content-area h2,
	.content-area h3,
	.content-area h4,
	.content-area h5 {
		font-size: 24px;
		margin-bottom: 15px;
	}
	.content-area h3 {
		font-size: 24px;
	}
	.content-area p {
		font-size: 16px;
	}
	.content-area p:has(img) {
		flex-direction: column;
		margin-bottom: 15px;
	}
	.content-area li {
		font-size: 18px;
		padding-left: 45px;
		margin-bottom: 5px;
	}
	.content-area ol li::before {
		top: 17px;
		width: 28px;
		height: 28px;
		font-size: 16px;
	}
	.content-area ul li::before {
		top: 10px;
		transform: translateY(0);
	}
	.content-area q p, .content-area blockquote p {
		font-size: 24px;
		display: inline-flex;
		margin-bottom: 10px;
	}

	.content-area
	.single .recommended-articles {
		padding-bottom: 20px;
	}
	.single .recommended-articles .title-info-description h2 {
		font-size: 28px;
		margin-bottom: 20px;
	}
	.single-artist-page section.contact-addresses,
	 {
		padding-top: 0;
	}
}
/* END SINGLE CONTENT AREA */

/* START CONTACT ADDRESSES FOOTER */

.contact-addresses .flex-row {
	flex-direction: row;
}
.contact-addresses .contact-address{
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    color: var(--black-font);
    padding: 0 20px;
}
.contact-addresses .contact-address:first-of-type {
    border-right: 1px solid var(--purple);
}
.contact-addresses .contact-address span {
    position: relative;
    height: fit-content;
}
.black-bg + .contact-addresses {
	background-color: var(--black-bg);
}
.black-bg + .contact-addresses .contact-address {
	color: var(--white-font);
}

@media only screen and (max-width: 769px) {
	.single section.contact-addresses,
	.page-template-artists section.contact-addresses {
		padding-top: 0;
	}
}
/* END CONTACT ADDRESSES FOOTER */

/* START DEFAULT TEMPLATE */
section.default_template,
section.page_404 {
	padding: 170px 0 100px;
}
/* END DEFAULT TEMPLATE */
