.wpcf7-not-valid-tip {
	margin-top: 10px;
}

.wpcf7-response-output {
	display: none!important;
}

.banner__button {
	border: 1px solid black;
	padding: 6px 23px;
	line-height: 115%;
	background: #000;
	color: #fff;
	margin-top: 16px;
	transition: 0.2s ease;
}

.banner__button:focus,
.banner__button:hover {
	background: #fff;
	color: #000;
}

.banner__button:before {
	content: none!important;
}


.banner__button svg {
	display: none!important;
}
.calendly {
	position: sticky;
	bottom: 30px;
	left: calc(100% - 170px);
	width: fit-content;
}
.calendly a{
	position: relative;
	background-color: #0e0e0e;
	border: none;
	color: #fff;
	cursor: pointer;
	font-family: PT Mono, monospace;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	line-height: 1.143;
	min-width: 115px;
	padding: 15px 15px 13px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color .25s 
		cubic-bezier(.66, .29, .46, .54);
	animation: heartbeat 4s infinite;
	z-index: 10;
}


@keyframes heartbeat
{
	0% {
		transform: scale( 1 );
	}
	40% {
		transform: scale( 1 );
	}
	50% {
		transform: scale( .85 );
	}
	60% {
		transform: scale( 1 );
	}
	70% {
		transform: scale( .85 );
	}
	80% {
		transform: scale( 1 );
	}
	90% {
		transform: scale( .85 );
	}
	100% {
		transform: scale( 1 );
	}
}

@media (max-width: 768px) {
	.calendly {
		bottom: 12px;
	}
}