* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	border: 0;
	scroll-behavior: smooth;
	background: var(--color-main-background);
	/* background-size: cover; */
    /* background-image: linear-gradient(to bottom, rgba(13, 1, 0, 1), rgba(13, 1, 0, 0)), url("../img/thin-cobweb-v2.svg"); */


	/* background-repeat: no-repeat;
  	background-attachment: fixed; */
}

body {
	min-height: 100%;
	height: auto;
	overflow-x: hidden;
	/* font-family: 'Bitter', serif; */
	font-family: var(--text-font);
	font-size: var(--font-size);
	color: var(--color-text);
}

/* body.body-no-scroll {
	overflow:hidden;
	max-height: 100vh;
} */

a {
	/* color: #000; */
	color: var(--color-link);
	text-decoration: none;
	outline: 0;
	/* font-weight: 500; */
	/* text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); */
	/* animation: glow 1s ease-in-out infinite alternate; */
}

/* @-webkit-keyframes glow {
	from {
		text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
	}
	to {
		text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
	}
} */

a:hover {
	color: var(--color-link-hover);
	text-decoration: underline;
	/* text-decoration-color: var(--color-primary-accent-hover); */
	font-weight: 500;
	transition:all .25s ease-in-out;
}

p a:hover, a.uline:hover {
	text-decoration: underline;
}

@media only screen and (max-width: 600px) {}

@media only screen and (min-width: 1000px) {}

h1, h2, .entry-content h3, .pre-title {
	font-family: var(--header-font);
}

 button, .button, .tiny-text, nav {
	 	font-family: var(--text-font);
 }


h1, h2, h3 {
	word-wrap: break-word;
	white-space: normal;
}

.container-small, .small-text-col .main>.container {
    max-width: 900px;
    background: yellow;
}

.main>.container, .main>article {
	padding-top: 40px;
}

a.anchor {
	display: block;
	position: relative;
	top: -80px;
	visibility: hidden;
}

.container-wide {
	max-width: 9999px;
	width: auto;
	padding: 0 20px;
}


/* Round CTA Button  */
#round-button a {
	display: inline-flex;
	width: 70px;
	height: 70px;
	animation: wiggle 6s infinite;
}


#round-button .elementor-button-content-wrapper {
	align-items: center;
	width: 100%;
}

#round-button a:before {
	content: "";
	display: block;
	padding-top: 100%
}

@keyframes wiggle {
	95% {
		transform: translate(1px, 1px) rotate(0deg);
	}

	95.5% {
		transform: translate(-1px, -2px) rotate(-1deg);
	}

	96% {
		transform: translate(-3px, 0px) rotate(1deg);
	}

	96.5% {
		transform: translate(3px, 2px) rotate(0deg);
	}

	97% {
		transform: translate(1px, -1px) rotate(1deg);
	}

	97.5% {
		transform: translate(-1px, 2px) rotate(-1deg);
	}

	98% {
		transform: translate(-3px, 1px) rotate(0deg);
	}

	98.5% {
		transform: translate(3px, 1px) rotate(-1deg);
	}

	99% {
		transform: translate(-1px, -1px) rotate(1deg);
	}

	99.5% {
		transform: translate(1px, 2px) rotate(0deg);
	}

	100% {
		transform: translate(1px, -2px) rotate(-1deg);
	}
}



/* Blinds Hero  */

.hero {
	width: 100%;
	position: relative;
	top: 0;
	left: 0;
	background: transparent;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background-position: center center;
	background-size: cover;
	padding-bottom: 0;
}



.blinds-container {
	
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	mix-blend-mode: multiply;
	height: 90%;
	max-height: 600px;
	width: 100%;

	padding: 2.5rem 0;
	background-color: #fff;
}


.blinds-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media only screen and (max-width:1000px) {
	img.blinds-image {
		height:600px!important;
	}
}

.blinds-container span {
	position: absolute;
	overflow: hidden;
}



.blinds-container ul,
.blinds-container li {
	padding: 0;
	margin: 0;
	list-style: none;
	display: block;
	height: 100%;
}

.blinds-container li {
	display: none;

}


.blinds-container li.active {
	display: block;
	overflow: hidden;
	width: 100%;
	height: auto;
}

.blind-text {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 5px;
	text-align: center;
	width: 100%;
		
}

.blind-text h1.home-page-h1 {
	display: flex;
	justify-content: center;
	flex-wrap:wrap;
	color: #fff;
	font-size: 60px;
	font-weight: 600;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	word-break: keep-all;

}



@media only screen and (max-width:550px) {
	.blind-text h1.home-page-h1 {
		font-size:40px;

	}


} 

 