/*
Theme Name: 305 West End (DD.NYC)
Theme URI: https://westendsite.wpenginepowered.com/
Description: The theme for WordPress. Designed with LOVE by DigitalDesign.NYC
Author: dd.nyc
Version: 1.a
*/

html {
	scroll-padding-top: 120px;
}

.website-accessibility {
	cursor: pointer;
}

/*
.grecaptcha-badge {
visibility: hidden !important;
}*/

.input-box {
	margin: 0 0 max(10px, 10rem)!important;
}

.wpcf7-not-valid-tip {
	margin: -2px 0 max(10px, 10rem);
  	color: #f00!important;
  	opacity: 0.8;
}

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

.blog-col .blog-item,
.blog-block .blog-item {
	position:relative;
	overflow:hidden;
}

.blog-item a::before {
	content:'';
	display:block;
	position:absolute;
	left:-1000px;
	right:-1000px;
	top:-1000px;
	bottom:-1000px;
}

.tabs-link2 {
	margin: 0 0 -1px;
	padding: 0 max(20px, 25rem) max(15px, 15rem);
	font-size: var(16px, 18rem);
	line-height: 140%;
	letter-spacing: -0.03em;
	color: var(--black-400);
	text-decoration: none;
	text-align: center;
	border-bottom: 1px solid transparent;
}

.tabs-link2:hover {
	color: var(--black);
}

.tabs-link2.active {
	color: var(--black);
	border-bottom: 1px solid var(--black);
}

.contact-adress a {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	color:#000;
	text-decoration: none;
}

.contact-adress span {
	position: relative;
}

.contact-adress span::after {
	position: absolute;
	left: 0;
	bottom: 1px;
	content: '';
	height: 1px;
	background:#000;
	transform: scaleX(0);
    transform-origin: right;
    transition: transform 1s var(--ease-out-expo);
    width: 100%;
}

.contact-adress:hover span::after {
	transform: scaleX(1);
	transform-origin: left;
}