/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Oct 26 2022 | 14:40:01 */
:root {
	--coral-color: #FF6A55;
	--grey-color: #F3F3F3;
}
.fade-up{
	transform: translate(0px, 10px);
	opacity: 0;
}
/* Fade up */
.fade-up.active{
	animation: fadeup 1s ease 0s 1 normal forwards;
}

@keyframes fadeup {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.uppercase{
	text-transform: uppercase;
}

.center-text{
	text-align: center;
}

.text-coral{
	color: var(--coral-color);
}

.text-white{
	color:white;
}

button {
    background-color: transparent;
    width: 430px;
    padding: 20px 0;
    border-radius: 50px;
}

@media screen and (max-width: 700px){
	button {
		width: 215px;
		padding: 15px 0;
	}
}

.background-black button {
    color: white;
    border-color: white;
}

.background-black button:hover {
    border-color: var(--coral-color);
	background-color: var(--coral-color) !important;
}

.background-black button:hover svg {
    fill: white;
}

.arrow-link svg {
    top: 1px;
    position: relative;
} 

.arrow-link .text-white svg, .arrow-link.text-white svg {
    fill: white;
}

.arrow-link a:hover svg{
	fill: var(--coral-color);
}

.arrow-link a:hover{
	color: var(--coral-color);
}

.arrow-link:hover .text-white svg {
    fill: black;
}

a{
	text-decoration:none;
}

a.text-white:hover{
	color: var(--coral-color);
}

.background-black{
	background-color: black;
	color: white;
}

.background-grey{
	background-color: var(--grey-color);
}

.background-coral{
	background-color: var(--coral-color);	
}

.background-white{
	background-color: #fff;	
}

.full-height{
	height: 100vh;
}

.align-middle{
	display: flex;
	align-items: center;
}

.horizontal-center{
	display: flex;
	justify-content: center;
}

.full-height-bg-image {
	height: 100vh;
	width: 100%;
	position: absolute;
	background-repeat: no-repeat !important;
	opacity: 0.6;
	background-size: cover !important;
}

.full-height-inner, header#masthead, footer#colophon{
	padding-left: 50px;
	padding-right: 50px;
}

.full-height h1, .full-height h2, .full-height h3, .full-height h4, .full-height p{
	position: relative;
}

.full-height h1, .full-height h2, .full-height h3, .full-height h4{
	margin: 0;
}

.full-height h1{
	font-size: 14rem;
	line-height: 0.8;
}

.full-height h2{
	font-size: 4rem;
	line-height: 1;
}

.constrained-width{
	max-width: 1155px;
	justify-self: center;
}

@media screen and (max-width:700px){
	.full-height h2 {
		font-size: 2.5rem;
	}
	.mob-row-reverse {
		flex-direction: column-reverse;
	}
	.hide-mob{
		display:none !important;
	}
	.full-height-inner, header#masthead, footer#colophon{
		padding-left: 20px;
		padding-right: 20px;
	}
} 

@media screen and (min-width:701px){

	.show-mob{
		display:none !important;
	}
} 

@media screen and (max-width:500px){
	.full-height h2 {
		font-size: 2rem;
	}
} 


@keyframes arrow-animation {
  20%    { transform: translateX(5px);opacity: 0;}
  50%   { transform: translateX(-7px); opacity: 0;}
  100%   { opacity: 1; transform: translateX(0px); }
}

.arrow-link:hover svg {
  animation: arrow-animation 1s;
}

.one-half{
	width:25%;
}

.one-quarter {
    width: 25%;
}

.one-third {
    width: 33.33%;
}

.two-thirds {
    width: 66.66%;
}

.three-quarters{
	width:75%;
}

