/*////// HERO SECTION //////*/
section.hero-section {
	padding-top: 12rem;
    background: #09C;	
}
section.hero-section div.hero-container {
	padding: 12rem 20rem;
	min-height: 136rem;
	min-height: 108rem;
	align-items: center;
	background: linear-gradient(180deg, #09C 15.38%, #0B0B0B 100%);
}

/*//// FLEX ////*/
div.hero-container div.hero-flex-container {}
div.hero-flex-container div.hero-flex-item {}

/*// FLEX SPECIFICS //*/
#hero-flex-item-1 {
	padding-top: 6rem;
	text-align: center;
}
#hero-flex-item-3 {
	text-align: center;
}

/*// ELEMENTS //*/
div.hero-flex-item h1 {
	display: inline-block;
	margin: 0 auto;
	padding: 3rem 4rem;
	max-width: 192rem;
	color: #FFF;
	text-align: center;
	font-family: Montserrat;
	font-size: 5.6rem;
	line-height: 1.2;	
	font-style: normal;
	font-weight: 700;
	border: 1px solid rgba(255,255,255, .77);
}
div.hero-flex-item p {
	color: #FFF;
	text-align: center;
	font-family: Montserrat;
	font-size: 3.2rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.43; /* 143.75% */
	opacity: 0;
	transform: translateY(5rem);
	transition: opacity 0.4s ease, transform 0.4s ease;
}
div.hero-flex-item.animated p {
	opacity: 1;
	transform: none;
}

/*/ HERO CIRCLES /*/
#circle-flex-container {
	justify-content: space-between;
    padding: 12rem 0 10rem 0;
}
div.hero-flex-container div.hero-circle {
	position: relative;
	z-index: 100;
	max-width: 34rem;
	height: 34rem;
	border-radius: 34rem;
	/*background: #D9D9D9;*/
	background-color: transparent;
	background-size: 130%;
	background-repeat: no-repeat;
	background-position: left center;
	transition: all .4s ease;
	opacity: 0;
	transform: translateY(5rem);
	/*transition: opacity 0.4s ease, transform 0.4s ease;*/
}
div.hero-flex-container.animated div.hero-circle {
	opacity: 1;
	transform: none;
}

/*// DOWN ARROW //*/
div.hero-flex-container.animated div.hero-circle div.hero-circle::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 2rem;
    width: 16px;
    height: 16px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: translateX(-50%) rotate(45deg);
    animation: bounce-arrow 4.5s ease-in-out infinite;
}
div.hero-flex-container.animated div.hero-circle:hover div.hero-circle::after {
	transform: translateX(-50%) translateY(7px) rotate(45deg);
}

/*// ANIMATION //*/
@keyframes bounce-arrow {
    0%, 9% {
        transform: translateX(-50%) translateY(0) rotate(45deg);
    }
    4.5% {
        transform: translateX(-50%) translateY(7px) rotate(45deg);
    }
    100% {
        transform: translateX(-50%) translateY(0) rotate(45deg);
    }
}
div.hero-flex-container.animated div.hero-circle:nth-child(1) div.hero-circle::after {
    animation-delay: 0s;
}
div.hero-flex-container.animated div.hero-circle:nth-child(2) div.hero-circle::after {
    animation-delay: 0.25s;
}
div.hero-flex-container.animated div.hero-circle:nth-child(3) div.hero-circle::after {
    animation-delay: 0.5s;
}
div.hero-flex-container.animated div.hero-circle:nth-child(4) div.hero-circle::after {
    animation-delay: 0.75s;
}

/*// HERO CIRCLES //*/
#hero-circle-1 {
	transition-delay: 1s;
}
#hero-circle-2 {
	transition-delay: 1.2s;
}
#hero-circle-3 {
	transition-delay: 1.4s;
}
#hero-circle-4 {
	transition-delay: 1.6s;
}

/*// ELEMENT IMAGES //*/
div.hero-circle:hover div.hero-circle:hover {
	background-size: 135%;
}
#element-1 {
	background-image: url('/wp-content/uploads/2025/12/ehrenstein-home-earth-hard-left.png');	
}
#element-2 {
	background-image: url('/wp-content/uploads/2025/12/ehrenstein-home-water-hard-left.png');	
}
#element-3 {
	background-image: url('/wp-content/uploads/2025/12/ehrenstein-home-wind-hard-left.png');	
}
#element-4 {
	background-image: url('/wp-content/uploads/2025/12/ehrenstein-home-fire-hard-left.png');	
}


/*// ELEMENT DROPDOWNS //*/
div.hero-circle div.dropdown {
	position: absolute;
	left: 0;
	top: 50%;
	width: 34rem;
	height: 90rem;
	max-height: 0;
	transition: max-height .3s ease;
	overflow: hidden;
	padding: 0 2rem;
}
div.hero-circle:hover div.dropdown,
div.hero-circle.open div.dropdown {
	max-height: 60rem;
	padding: 2rem 2rem;
}
div.hero-circle:hover div.dropdown h3,
div.hero-circle.open div.dropdown h3 {
    margin: 18rem 0 0 0;
    position: relative;
    z-index: 100;
    font-size: 5rem;	
	color: #fff;
	text-align: center;
	text-transform: capitalize;
}
div.hero-circle:hover div.dropdown p,
div.hero-circle.open div.dropdown p {
	margin: 2rem 0 0 0;
	position: relative;
	z-index: 100;
	font-size: clamp( 14px, 2rem, 20px );
	font-weight: 400;
	color: #fff;
	text-align: center;
}
div.hero-circle:hover div.dropdown p.emphasis,
div.hero-circle.open div.dropdown p.emphasis {
	font-size: clamp( 20px, 2.6rem, 26px );
	font-style: italic;
}
div.hero-circle:hover div.dropdown a.learn,
div.hero-circle.open div.dropdown a.learn {
	display: inline-block;
	position: relative;
	left: 50%;
	z-index: 100;
	transform: translateX(-50%);
	margin: 4rem auto 0 auto;
	padding: .5rem 2rem;
	font-size: clamp( 14px, 2rem, 20px );
	font-weight: 400;
	color: #fff;
	text-align: center;
	border: 1px solid #ffffff;
}
/*/ DROPDOWN BACKGROUND /*/
div.dropdown div.dropdown-back {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	opacity: .9;
}
#dropdown-1 div.dropdown-back {	background: #7A3B03; }
#dropdown-2 div.dropdown-back {	background: #00548E; }
#dropdown-3 div.dropdown-back { background: #ae8d47; }
#dropdown-4 div.dropdown-back {	background: #a9230b; }





/*////// STORY SECTION //////*/
section.story-section {}
section.story-section div.story-container {
	padding: 12rem 31.5rem 6rem 31.5rem;
	background: #ffffff;
}

/*//// FLEX ////*/
div.story-container div.story-flex-container {}
div.story-flex-container div.story-flex-item {}

/*// FLEX SPECIFICS //*/
#story-flex-item-1 {
	text-align: center;
}
#story-flex-item-1 {}

/*// ELEMENTS //*/
div.story-flex-item h2 {
	display: inline-block;
	margin: 0 auto 9rem auto;
	padding: 3rem 4rem;	
	color: #069;
	text-align: center;
	font-family: Montserrat;
	font-size: 5.6rem;
	line-height: 1.2;
	font-style: normal;
	font-weight: 700;
	/*border: 1px solid rgba(255, 255, 255, .77);	*/
	border: 1px solid rgba(0, 102, 153, .77);
}
div.story-flex-item h3 {
	margin: 0 0 3.3rem 0;
	color: #000;
	font-family: Montserrat;
	font-size: 3.9rem;
	line-height: 1.2;
	font-style: normal;
	font-weight: 600;
	text-align: left;
}
div.story-flex-item p {
	color: #000;
	font-family: Montserrat;
	font-size: clamp( 14px, 2rem, 20px );
	line-height: 1.6; /* 160% */
	font-style: normal;
	font-weight: 400;
	text-align: left;
}

/*//// TESTIMONIAL ////*/
div.testimonial-block {
	position: relative;
	width: 90%;
	max-width: 94.6rem;
	padding: 3.4rem 3.7rem 4.3rem 4.8rem;
	margin: 12rem auto;
	border: 2px solid #FF5917;
	background: rgba(217, 217, 217, 0.00);
}
div.testimonial-block:before {
	content: '';
	position: absolute;
}
div.testimonial-block:after {
	content: '';
	position: absolute;
}
div.testimonial-block p.quote {
	margin: 0 0;
	margin-bottom: 4rem;
	color: #000;
	font-family: Montserrat;
	font-size: clamp( 18px, 2.4rem, 24px );
	line-height: 1.41; /* 141.667% */
	font-style: italic;
	font-weight: 400;
}
div.testimonial-block p.name {
	margin: 0 0;
	padding-right: 12rem;
	color: #FF5917;
	font-family: Montserrat;
	font-size: clamp( 18px, 2.4rem, 24px );
	line-height: 1.41;
	font-style: italic;
	font-weight: 600;
	text-align: right;
}

/* QUOTES */
div.open-quote {
	position: absolute;
    left: 0;
    top: 0;
    transform: translate(-100%, -57%);
}
div.close-quote {
	position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(100%, 60%);
}





/*////// ELEMENTS SECTION //////*/
section.elements-section {}
section.elements-section div.elements-container {
	padding: 17rem 31.5rem;
	background: #ffffff;
	background: rgba(237, 240, 242, 0.36);
}

/*//// FLEX ////*/
div.elements-container div.elements-flex-container {}
div.elements-flex-container div.elements-flex-item {}

/*// FLEX SPECIFICS //*/
#elements-flex-item-1 {
	text-align: center;
}
#elements-flex-item-2 {}

/*// ELEMENTS //*/
div.elements-flex-item h2 {
	margin: 0 auto;
	margin-bottom: 8rem;
	display: inline-block;
	padding: 3rem 4rem;	
	color: #069;
	text-align: center;
	font-family: Montserrat;
	font-size: 5.6rem;
	line-height: 1.2;
	font-style: normal;
	font-weight: 700;
	/*border: 1px solid rgba(255, 255, 255, .77);	*/
	border: 1px solid rgba(0, 102, 153, .77);
}
div.elements-flex-item h3 {
	margin: 0 0;
	margin-bottom: 6.5rem;
	color: #000;
	text-align: center;
	font-family: Montserrat;
	font-size: 3.9rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
div.elements-flex-item p {
	margin: 0 0;
	margin-bottom: 2rem;
	color: #000;
	font-family: Montserrat;
	font-size: clamp( 14px, 2rem, 20px );
	line-height: 1.6; /* 160% */
	font-style: normal;
	font-weight: 400;
}
div.elements-flex-item p.indent {
	padding-left: 4.5rem;
}





/*////// EARTH SECTION //////*/
section.earth-section {
	margin-bottom: 1rem;
}
section.earth-section div.earth-container {
	max-height: 59rem;
	padding: 0 0;
	background: #F1F1F1;
}

/*//// FLEX ////*/
div.earth-container div.earth-flex-container {
	position: relative;
	height: 59rem;
	overflow: hidden;
    justify-content: space-between;
    align-content: flex-start;	
}
div.earth-flex-container div.earth-flex-item {}

/*// ELEMENTS //*/
div.earth-flex-item img {}
div.earth-flex-item h3 {
    margin: 0 0;
    margin-bottom: 3rem;	
	color: #7A3B03;
	font-family: Montserrat;
	font-size: 5.6rem;
	line-height: 1.2;
	font-style: normal;
	font-weight: 700;
	white-space: nowrap;
}
div.earth-flex-item h3 span {
	color: #7A3B03;
	font-family: Montserrat;
	font-size: 5.6rem;
	line-height: 1.2;
	font-style: normal;
	font-weight: 300;
}
div.earth-flex-item p {
	color: #000;
	font-family: Montserrat;
	font-size: clamp( 20px, 2.6rem, 26px );
	font-style: normal;
	font-weight: 400;
	line-height: 3.6rem;
	white-space: nowrap;
}
div.earth-flex-item p span {
	color: #7A3B03;
	font-family: Montserrat;
	font-size: clamp( 20px, 2.6rem, 26px );
	line-height: 1.384; /* 138.462% */
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;	
}
div.earth-flex-item p.court {
    margin: 0 0;
    padding: 4rem 0 0 16rem;
	color: #000;
	font-family: Montserrat;
	font-size: clamp( 20px, 2.6rem, 26px );
	line-height: 1.38;
	font-style: italic;
	font-weight: 500;
	white-space: nowrap;
}
div.earth-flex-item p.court span {
	color: #7A3B03;
	font-family: Montserrat;
	font-size: clamp( 20px, 2.6rem, 26px );
	line-height: 1.38; /* 138.462% */	
	font-style: italic;
	font-weight: 700;
}

/*// FLEX SPECIFICS //*/
#earth-flex-item-0 {
	padding: 10rem 0 0 0;
    margin: 0 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
    background: var(--00548-e, #00548E);
    background: #7A3B03;
    transition: width .3s ease, padding .3s ease, opacity .3s ease;
}
#earth-flex-item-0 h3,
#earth-flex-item-0 h3 span, 
#earth-flex-item-0 p,
#earth-flex-item-0 p span,
#earth-flex-item-0 p.court, 
#earth-flex-item-0 p.court span {
	color: #ffffff;
}

#earth-flex-item-1 {}
#earth-flex-item-2 {
	padding: 10rem 15rem 0 15rem;
	transition: width .3s ease, padding .3s ease, opacity .3s ease;
}


/*//// ELEMENT ANIMATION ////*/
/*div.earth-flex-container:hover #earth-flex-item-0 {
    width: 60%;
	padding: 10rem 15rem 0 15rem;
    opacity: 1;
}
div.earth-flex-container:hover #earth-flex-item-2 {
	padding: 10rem 0 0 0;
    margin: 0 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
}*/

/*//// CLICK TO - ALL ELEMENTS ////*/
a.click-to-hard {
	position: absolute;
	top: 1.6rem;
	right: 3rem;
	color: #ffffff;
    font-family: Montserrat;
    font-size: clamp( 13px, 1.9rem, 20px );;
    line-height: 1.2;
    font-style: normal;
    font-weight: bold;
    white-space: nowrap;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .05em;
    cursor: pointer;
}
a.click-to-soft {
    position: absolute;
    top: 1.4rem;
    left: 3rem;
    color: #000;
    font-family: Montserrat;
    font-size: clamp( 13px, 1.9rem, 20px );;
    line-height: 1.2;    
    font-style: normal;
    font-weight: bold;
    white-space: nowrap;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .05em;
    cursor: pointer;
}
/* ARROW USING BORDERS */
.click-to-soft::after {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    width: 16px;
    height: 16px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transition: transform 0.3s ease;	
}
.click-to-hard::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    width: 16px;
    height: 16px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transition: transform 0.3s ease;
}
/* ARROW POINTING RIGHT (TO HARD) */
.click-to-hard::after {
    transform: translateY(-50%) rotate(-45deg);
}

/* ARROW POINTING LEFT (TO SOFT) */
.click-to-soft::after {
    transform: translateY(-50%) rotate(135deg);
}

#earth-flex-item-2 a.click-to-soft { color: #7A3B03; }
#earth-flex-item-2 a.click-to-soft::after { 
    border-right: 3px solid #7A3B03;
    border-bottom: 3px solid #7A3B03;
}

#water-flex-item-2 a.click-to-soft { color: #fff; }
#water-flex-item-2 a.click-to-soft::after { 
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

#wind-flex-item-2 a.click-to-soft { color: #6A7175; }
#wind-flex-item-2 a.click-to-soft::after { 
    border-right: 3px solid #6A7175;
    border-bottom: 3px solid #6A7175;
}

#fire-flex-item-2 a.click-to-soft { color: #FBB03B; }
#fire-flex-item-2 a.click-to-soft::after { 
    border-right: 3px solid #FBB03B;
    border-bottom: 3px solid #FBB03B;
}

a.click-to-hard:hover {
	text-decoration: underline;
}
a.click-to-soft:hover {
	text-decoration: underline;
}

/*//// OPEN SLIDER STATE ////*/
div.earth-flex-container.open #earth-flex-item-0 {
    width: 60%;
	padding: 10rem 15rem 0 15rem;
    opacity: 1;
}
div.earth-flex-container.open #earth-flex-item-2 {
	padding: 10rem 0 0 0;
    margin: 0 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
}


/*//// IMAGE SWITCHER ////*/
div.image-switch {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #ffffff;
	opacity: 0;
	transition: opacity .2s ease ;
}
div.splat-flex-container.open div.image-switch {
	opacity: 1;
}


/*ANIMATED ICON*/
/*div.earth-flex-container.open div.touch-me {
	display: inline-block;
	position: absolute;
	top: 12rem;
	left: 50%;
	z-index: 1000;
	transform: translate(-50%,-50%);
	width: 8rem;
	height: 8rem;
}
div.earth-flex-container div.touch-me {
	display: none;
	animation: orbit 22s ease infinite;
}
div.earth-flex-container div.touch-me svg {
	width: 100%;
	height: auto;
  	fill: #ffffff;
  	color: #ffffff;
}
@keyframes orbit {
	from {
		transform: rotate(0deg) translateX(10rem) rotate(0deg);
	}
	to {
		transform: rotate(360deg) translateX(10rem) rotate(-360deg);
	}
}*/




/*////// WATER SECTION //////*/
section.water-section {
	margin-bottom: 1rem;
}
section.water-section div.water-container {
	max-height: 59rem;
	padding: 0 0;
	background: var(--00548-e, #00548E);
}

/*//// FLEX ////*/
div.water-container div.water-flex-container {
	position: relative;
	height: 59rem;
	overflow: hidden;
    justify-content: space-between;
    align-content: flex-start;		
}
div.water-flex-container div.water-flex-item {}

/*// FLEX SPECIFICS //*/
#water-flex-item-0 {
	padding: 10rem 0 0 0;
    margin: 0 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
    background: var(--00548-e, #00548E);
    background: #3dafc0;
    transition: width .3s ease, padding .3s ease, opacity .3s ease;
}
#water-flex-item-0 h3,
#water-flex-item-0 h3 span, 
#water-flex-item-0 p,
#water-flex-item-0 p span,
#water-flex-item-0 p.court, 
#water-flex-item-0 p.court span {
	color: #ffffff;
}
#water-flex-item-1 {}
#water-flex-item-2 {
	padding: 10rem 15rem 0 15rem;
	transition: width .3s ease, padding .3s ease, opacity .3s ease;
}

/*// ELEMENTS //*/
div.water-flex-item img {}
div.water-flex-item h3 {
    margin: 0 0;
    margin-bottom: 3rem;	
	color: #ffffff;
	font-family: Montserrat;
	font-size: 5.6rem;
	line-height: 1.2;	
	font-style: normal;
	font-weight: 700;
	white-space: nowrap;
}
div.water-flex-item h3 span {
	color: #ffffff;
	font-family: Montserrat;
	font-size: 5.6rem;
	line-height: 1.2;	
	font-style: normal;
	font-weight: 300;
}
div.water-flex-item p {}
div.water-flex-item p {
	color: #ffffff;
	font-family: Montserrat;
	font-size: clamp( 20px, 2.6rem, 26px );
	line-height: 1.38; /* 138.462% */
	font-style: normal;
	font-weight: 400;
	white-space: nowrap;
}
div.water-flex-item p span {
	color: #ffffff;
	font-family: Montserrat;
	font-size: clamp( 20px, 2.6rem, 26px );
	line-height: 1.38; /* 138.462% */
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;	
}
div.water-flex-item p.court {
    margin: 0 0;
    padding: 4rem 0 0 16rem;
	color: #ffffff;
	font-family: Montserrat;
	font-size: clamp( 20px, 2.6rem, 26px );
	line-height: 1.38;	
	font-style: italic;
	font-weight: 500;
	white-space: nowrap;
}
div.water-flex-item p.court span {
	color: #ffffff;
	font-family: Montserrat;
	font-size: clamp( 20px, 2.6rem, 26px );
	line-height: 1.38; /* 138.462% */	
	font-style: italic;
	font-weight: 700;
}

/*//// OPEN SLIDER STATE ////*/
div.water-flex-container.open #water-flex-item-0 {
    width: 60%;
	padding: 10rem 15rem 0 15rem;
    opacity: 1;
}
div.water-flex-container.open #water-flex-item-2 {
	padding: 10rem 0 0 0;
    margin: 0 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
}
/*//// ELEMENT ANIMATION ////*/
/*div.water-flex-container:hover #water-flex-item-0 {
    width: 60%;
	padding: 10rem 15rem 0 15rem;
    opacity: 1;
}
div.water-flex-container:hover #water-flex-item-2 {
	padding: 10rem 0 0 0;
    margin: 0 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
}*/








/*////// WIND SECTION //////*/
section.wind-section {
	margin-bottom: 1rem;
}
section.wind-section div.wind-container {
	max-height: 59rem;
	padding: 0 0;
	background: #F1F1F1;
}

/*//// FLEX ////*/
div.wind-container div.wind-flex-container {
	position: relative;
	height: 59rem;
	overflow: hidden;
    justify-content: space-between;
    align-content: flex-start;		
}
div.wind-flex-container div.wind-flex-item {}

/*// FLEX SPECIFICS //*/
#wind-flex-item-0 {
	padding: 10rem 0 0 0;
    margin: 0 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
    background: var(--00548-e, #00548E);
    background: #ae8d47;
    transition: width .3s ease, padding .3s ease, opacity .3s ease;
}
#wind-flex-item-0 h3,
#wind-flex-item-0 h3 span, 
#wind-flex-item-0 p,
#wind-flex-item-0 p span,
#wind-flex-item-0 p.court, 
#wind-flex-item-0 p.court span {
	color: #ffffff;
}
#wind-flex-item-1 {}
#wind-flex-item-2 {
	padding: 10rem 15rem 5rem 15rem;
	transition: width .3s ease, padding .3s ease, opacity .3s ease;
}

/*// ELEMENTS //*/
div.wind-flex-item img {}
div.wind-flex-item h3 {
    margin: 0 0;
    margin-bottom: 3rem;	
	color: #6A7175;;
	font-family: Montserrat;
	font-size: 5.6rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;	
}
div.wind-flex-item h3 span {
	color: #6A7175;
	font-family: Montserrat;
	font-size: 5.6rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.2;
}
div.wind-flex-item p {
	color: #6A7175;
	font-family: Montserrat;
	font-size: clamp( 20px, 2.6rem, 26px );
	font-style: normal;
	font-weight: 400;
	line-height: 3.6rem;
	white-space: nowrap;
}
div.wind-flex-item p span {
	color: #6A7175;
	font-family: Montserrat;
	font-size: clamp( 20px, 2.6rem, 26px );
	font-style: normal;
	font-weight: 700;
	line-height: 1.38; /* 138.462% */
	text-transform: uppercase;	
}
div.wind-flex-item p.court {
    margin: 0 0;
    padding: 4rem 0 0 16rem;
	color: #6A7175;
	font-family: Montserrat;
	font-size: clamp( 20px, 2.6rem, 26px );
	font-style: italic;
	font-weight: 500;
	line-height: 1.38;
	white-space: nowrap;
}
div.wind-flex-item p.court span {
	color: #6A7175;
	font-family: Montserrat;
	font-size: clamp( 20px, 2.6rem, 26px );
	font-style: italic;
	font-weight: 700;
	line-height: 1.38; /* 138.462% */	
}

/*//// OPEN SLIDER STATE ////*/
div.wind-flex-container.open #wind-flex-item-0 {
    width: 60%;
	padding: 10rem 15rem 0 15rem;
    opacity: 1;
}
div.wind-flex-container.open #wind-flex-item-2 {
	padding: 10rem 0 0 0;
    margin: 0 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
}
/*//// ELEMENT ANIMATION ////*/
/*div.wind-flex-container:hover #wind-flex-item-0 {
    width: 60%;
	padding: 10rem 15rem 0 15rem;
    opacity: 1;
}
div.wind-flex-container:hover #wind-flex-item-2 {
	padding: 10rem 0 0 0;
    margin: 0 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
}*/




/*////// FIRE SECTION //////*/
section.fire-section {
	margin-bottom: 1rem;
}
section.fire-section div.fire-container {
	max-height: 59rem;
	padding: 0 0;
	background: var(--00548-e, #00548E);
}

/*//// FLEX ////*/
div.fire-container div.fire-flex-container {
	position: relative;
		height: 59rem;
	overflow: hidden;
    justify-content: space-between;
    align-content: flex-start;		
}
div.fire-flex-container div.fire-flex-item {}

/*// FLEX SPECIFICS //*/
#fire-flex-item-0 {
	padding: 10rem 0 0 0;
    margin: 0 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
    background: var(--00548-e, #00548E);
    background: #a9230b;
    transition: width .3s ease, padding .3s ease, opacity .3s ease;
}
#fire-flex-item-0 h3,
#fire-flex-item-0 h3 span, 
#fire-flex-item-0 p,
#fire-flex-item-0 p span,
#fire-flex-item-0 p.court, 
#fire-flex-item-0 p.court span {
	color: #ffffff;
}
#fire-flex-item-1 {}
#fire-flex-item-2 {
	padding: 10rem 15rem 0 15rem;
	transition: width .3s ease, padding .3s ease, opacity .3s ease;
}

/*// ELEMENTS //*/
div.fire-flex-item img {}
div.fire-flex-item h3 {
    margin: 0 0;
    margin-bottom: 3rem;	
	color: #FBB03B;
	font-family: Montserrat;
	font-size: 5.6rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	white-space: nowrap;
}
div.fire-flex-item h3 span {
	color: #FBB03B;
	font-family: Montserrat;
	font-size: 5.6rem;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
}
div.fire-flex-item p {
	color: #ffffff;
	font-family: Montserrat;
	font-size: clamp( 20px, 2.6rem, 26px );
	font-style: normal;
	font-weight: 400;
	line-height: 3.6rem;
	white-space: nowrap;
}
div.fire-flex-item p span {
	color: #FBB03B;
	font-family: Montserrat;
	font-size: clamp( 20px, 2.6rem, 26px );
	font-style: normal;
	font-weight: 700;
	line-height: 3.6rem; /* 138.462% */
	text-transform: uppercase;	
}
div.fire-flex-item p.court {
    margin: 0 0;
    padding: 4rem 0 0 16rem;
	color: #ffffff;
	font-family: Montserrat;
	font-size: clamp( 20px, 2.6rem, 26px );
	font-style: italic;
	font-weight: 500;
	line-height: 3.6rem;
	white-space: nowrap;
}
div.fire-flex-item p.court span {
	color: #FBB03B;
	font-family: Montserrat;
	font-size: clamp( 20px, 2.6rem, 26px );
	font-style: italic;
	font-weight: 700;
	line-height: 3.6rem; /* 138.462% */	
}

/*//// OPEN SLIDER STATE ////*/
div.fire-flex-container.open #fire-flex-item-0 {
    width: 60%;
	padding: 10rem 15rem 0 15rem;
    opacity: 1;
}
div.fire-flex-container.open #fire-flex-item-2 {
	padding: 10rem 0 0 0;
    margin: 0 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
}
/*//// ELEMENT ANIMATION ////*/
/*div.fire-flex-container:hover #fire-flex-item-0 {
    width: 60%;
	padding: 10rem 15rem 0 15rem;
    opacity: 1;
}
div.fire-flex-container:hover #fire-flex-item-2 {
	padding: 10rem 0 0 0;
    margin: 0 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
}*/



/*////// WAY SECTION //////*/
section.way-section {}
section.way-section div.way-container {
	min-height: 236rem;
	padding: 12rem 32.3rem;
	background: linear-gradient(180deg, #0B0B0B 0%, #09C 99.85%);
}


/*//// FLEX ////*/
div.way-container div.way-flex-container {}
div.way-flex-container div.way-flex-item {}

/*// FLEX SPECIFICS //*/
#way-flex-item-1 {}

/*// ELEMENTS //*/
div.way-flex-item h2 {
	margin: 0 0;
	margin-bottom: 8rem;
	color: #FFF;
	text-align: center;
	font-family: Montserrat;
	font-size: 5.6rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;	
}
div.way-flex-item h3 {
	margin: 0 0;
	margin-bottom: 2rem;
	color: #FBB03B;
	font-family: Montserrat;
	font-size: 3rem;
	line-height: 1.4; /* 140% */
	font-style: normal;
	font-weight: 700;
}
div.way-flex-item h3.dark {
	color: #FF5917;
}
div.way-flex-item p {
	margin: 0 0;
	margin-bottom: 2rem;
	color: #FFF;
	font-family: Montserrat;
	font-size: clamp( 14px, 2rem, 20px );
	font-style: normal;
	font-weight: 400;
	line-height: 3.2rem;
}
div.way-flex-item hr {
	display: inline-block;
	margin: 8rem auto;
	width: 100%;
	height: 0.1rem;
	background: #29ABE2;
	color: #29ABE2;
	text-align: center;
}
div.way-flex-item p a {
	position: relative;
	color: #FFF;
	font-family: Montserrat;
	font-size: clamp( 14px, 2rem, 20px );
	font-style: normal;
	font-weight: 500;
	line-height: 3.2rem;
	text-transform: uppercase;
	text-decoration: none;
}
div.way-flex-item p a:after {
	position: absolute;
	top: 50%;
	right: -3rem;
	transform: translateY(-50%);
	content: '';
	display: inline-block;
	width: 2rem;
	height: 2rem;
	background: url('/wp-content/uploads/2025/12/ehrenstein-navigation-icon-arrow-active.png') no-repeat center;
	background-size: contain;
	transition: all .3s ease;
}
div.way-flex-item p a:hover:after {
	right: -4rem;
	background-image: url('/wp-content/uploads/2025/12/ehrenstein-navigation-icon-arrow-active.png');
}





/*//////LAWDRAGON SECTION //////*/
section.lawdragon-section {}
section.lawdragon-section div.lawdragon-container {
    padding: 17rem 31.5rem;
    background: rgba(237, 240, 242, 1);

}
div.lawdragon-container div.lawdragon-flex-container {}
div.lawdragon-flex-container div.lawdragon-flex-item {}
#lawdragon-flex-item-0 {
	text-align: center;
}
div.lawdragon-flex-item img.article-cover {
    width: 80%;
    height: auto;
    transform: rotate(10deg);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
div.lawdragon-flex-item h2.section-h2 {
    margin: 0 auto;
    margin-bottom: 8rem;
    display: inline-block;
    padding: 3rem 4rem;
    color: #069;
    text-align: center;
    font-family: Montserrat;
    font-size: 5.6rem;
    line-height: 1.2;
    font-style: normal;
    font-weight: 700;
    /* border: 1px solid rgba(255, 255, 255, .77); */
    border: 1px solid rgba(0, 102, 153, .77);
}
div.lawdragon-flex-item h2 {
	color: #0B0B0B;
	margin-bottom: 1rem;
}
div.lawdragon-flex-item h3 {
	color: #0B0B0B;
	margin-top: 0;
	margin-bottom: 0;
	font-weight: 500;
}
div.lawdragon-flex-item p {
    margin: 0 0;
    margin-bottom: 2rem;
    font-family: Montserrat;
    font-size: clamp(14px, 2rem, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: 3.2rem;
}
div.lawdragon-flex-item p.article-meta {
	margin-top: 1rem;
	margin-bottom: 4rem;
	font-style: italic;
}

/*// DOWNLOAD BUTTON //*/
div.download-btn,
a.download-btn {
	position: relative;
    display: inline-block;
    width: auto;
    margin: 0 1rem 1rem 0;
    padding: 1rem 2rem;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #09C;
    font-size: 2rem;
    line-height: 1.2;
    cursor: pointer;
    background: #09C;
    color: #ffffff;
    transition: all .3s ease;	
}
div.download-btn:hover,
a.download-btn:hover {
	background: #ffffff;
    color: #09C;
}
/*/ PDF /*/
div.download-btn.pdf:after,
a.download-btn.pdf:after {
	content: "";
	position: absolute;
	top: 50%;
	right: -4rem;
	transform: translateY(-50%);
	width: 3rem;
	height: 4rem;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url('/wp-content/uploads/2026/04/PDF_file_icon.svg.png');
}



/*////// TESTIMONIALS SECTION //////*/
section.testimonials-section {}
section.testimonials-section div.testimonials-container { 
	padding: 12rem 16rem;
}

/*//// FLEX ////*/
div.testimonials-container div.testimonials-flex-container {}
div.testimonials-flex-container div.testimonials-flex-item {}
div.testimonials-flex-item h2 {
	margin: 0 0;
    margin-bottom: 6rem;
    padding-left: 4rem;
	color: #069;
	font-family: Montserrat;
	font-size: 5.6rem;
	line-height: 1.2;	
	font-style: normal;
	font-weight: 700;
}
div.testimonials-flex-item hr {
	width: 95%;
	max-width: 70rem;
	height: 0.1rem;
	margin: 8rem auto;
	background: #29ABE2;
}
div.testimonials-flex-item hr:last-of-type {
	display: none;
}

/*//// TESTIMONIAL SECTION TESTIMONIALS ////*/
div.testimonials-flex-item div.testimonial-block {
	position: relative;
	width: 90%;
	max-width: 94.6rem;
	padding: 0 0;
	margin: 0 auto;
	border: none;
	background: rgba(217, 217, 217, 0.00);
}

div.testimonials-flex-item div.testimonial-block p.quote {
	margin: 0 0;
	margin-bottom: 4rem;
	color: #000;
	font-family: Montserrat;
	font-size: clamp( 18px, 2.4rem, 24px );
	line-height: 1.41; /* 141.667% */
	font-style: italic;
	font-weight: 400;
}
div.testimonials-flex-item div.testimonial-block p.name {
	margin: 0 0;
	padding-right: 12rem;
	color: #FF5917;
	font-family: Montserrat;
	font-size: clamp( 18px, 2.4rem, 24px );
	line-height: 1.41;
	font-style: italic;
	font-weight: 600;
	text-align: right;
}

/* QUOTES */
div.testimonials-flex-item div.testimonial-block:before,
div.testimonials-flex-item div.testimonial-block:after,
div.testimonials-flex-item div.open-quote,
div.testimonials-flex-item div.close-quote {
	display: none;
}





/*//// GRANULAR RESPONSIVE CSS HERE ////*/
/*// VERY LARGE SCREEN //*/
@media only screen and (max-width: 1920px) { }
/*// LARGE SCREEN //*/
@media only screen and (max-width: 1800px) { }
/*// MEDIUM & LAPTOP //*/
@media only screen and (max-width: 1600px) { }
@media only screen and (max-width: 1440px) { } /*< DESIGN WIDTH */
/*// SMALL & TABLET //*/
@media only screen and (max-width: 1200px) { }
@media only screen and (max-width: 1100px) { }
/*// MOBILE SCREEN //*/
@media only screen and (max-width: 1024px) { }

/*// SMALL MOBILE //*/
@media only screen and (max-width: 851px) {

			/*////// HERO SECTION //////*/
			section.hero-section { padding: 0 0; }
			section.hero-section div.hero-container { padding: 12rem 3rem 8rem 3rem; }

			div.hero-flex-item h1 { font-size: 4.8rem; }

			/*// CIRCLES //*/
			#circle-flex-container { justify-content: space-between; padding: 8rem 0 8rem 0; }
			div.hero-flex-container div.hero-circle,
			div.hero-flex-container div.hero-circle div.hero-circle { height: 0 !important; }
			div.hero-flex-container div.hero-circle {  padding: 0 0 50% 0 !important; }
			div.hero-flex-container div.hero-circle div.hero-circle { padding: 0 0 100% 0 !important; background-size: 133%; }
			#hero-circle-1, #hero-circle-2, #hero-circle-3, #hero-circle-4 { width: 49%; max-width: 49%; }
			div.hero-flex-container.animated div.hero-circle div.hero-circle::after,
			div.hero-circle div.dropdown,
			div.hero-circle.open div.dropdown h3,
			div.hero-circle.open div.dropdown p { display: none; }

			div.hero-flex-item p { font-size: 2.6rem; }


			/*////// STORY SECTION //////*/
			section.story-section { padding: 0 0; }
			section.story-section div.story-container { padding: 8rem 3rem; }
			div.story-flex-item h2 { width: 100%; font-size: 4.8rem; }


			/*////// ELEMENTS SECTION //////*/
			section.elements-section { padding: 0 0; }
			section.elements-section div.elements-container { padding: 8rem 3rem; }
			div.elements-flex-item h2 { width: 100%; margin-bottom: 4rem; font-size: 4.8rem; }
			div.elements-flex-item p.indent { padding-left: 2.4rem; }


			/*////// EARTH SECTION //////*/
			section.earth-section { padding: 0 0; }
			section.earth-section div.earth-container { max-height: initial; padding: 0 0; }
			div.earth-container div.earth-flex-container { height: auto; }
			#earth-flex-item-0 { display: none; order: 2; }
			#earth-flex-item-1 { order: 1; }
			#earth-flex-item-2 { padding: 8rem 3rem; order: 3; }
			div.earth-flex-container.open #earth-flex-item-0 { display: block; width: 100%; padding: 8rem 3rem; }
			div.earth-flex-container.open #earth-flex-item-2 { display: none; }
			/*/ CONTENT /*/
			div.earth-flex-item p { white-space: initial }
			div.earth-flex-item p.court { padding: 3rem 0 0 0; white-space: initial; }
			/*/ CLICK TO /*/
			a.click-to-soft,
			a.click-to-hard { font-size: 12px; }
			a.click-to-soft::after { width: 9px; height: 9px; }
			a.click-to-hard::after { width: 9px; height: 9px; }


			/*////// WATER SECTION //////*/
			section.water-section { padding: 0 0; }
			section.water-section div.water-container { max-height: initial; padding: 0 0; }
			div.water-container div.water-flex-container { height: auto; }
			#water-flex-item-0 { display: none; order: 2; }
			#water-flex-item-1 { order: 1; }
			#water-flex-item-2 { padding: 8rem 3rem; order: 3; }
			div.water-flex-container.open #water-flex-item-0 { display: block; width: 100%; padding: 8rem 3rem; }
			div.water-flex-container.open #water-flex-item-2 { display: none; }
			/*/ CONTENT /*/
			div.water-flex-item p { white-space: initial }
			div.water-flex-item p.court { padding: 3rem 0 0 0; white-space: initial; }


			/*////// WIND SECTION //////*/
			section.wind-section { padding: 0 0; }
			section.wind-section div.wind-container { max-height: initial; padding: 0 0; }
			div.wind-container div.wind-flex-container { height: auto; }
			#wind-flex-item-0 { display: none; order: 2; }
			#wind-flex-item-1 { order: 1; }
			#wind-flex-item-2 { padding: 8rem 3rem; order: 3; }
			div.wind-flex-container.open #wind-flex-item-0 { display: block; width: 100%; padding: 8rem 3rem; }
			div.wind-flex-container.open #wind-flex-item-2 { display: none; }
			/*/ CONTENT /*/
			div.wind-flex-item p { white-space: initial }
			div.wind-flex-item p.court { padding: 3rem 0 0 0; white-space: initial; }
			

			/*////// FIRE SECTION //////*/
			section.fire-section { padding: 0 0; }
			section.fire-section div.fire-container { max-height: initial; padding: 0 0; }
			div.fire-container div.fire-flex-container { height: auto; }
			#fire-flex-item-0 { display: none; order: 2; }
			#fire-flex-item-1 { order: 1; }
			#fire-flex-item-2 { padding: 8rem 3rem; order: 3; }
			div.fire-flex-container.open #fire-flex-item-0 { display: block; width: 100%; padding: 8rem 3rem; }
			div.fire-flex-container.open #fire-flex-item-2 { display: none; }
			/*/ CONTENT /*/
			div.fire-flex-item p { white-space: initial }
			div.fire-flex-item p.court { padding: 3rem 0 0 0; white-space: initial; }
			/*/ ANIMATIONS /*/
			/*div.fire-flex-item p.fade,
			div.fire-flex-item p.court.fade { opacity: 0; transform: translateY(-10px); transition: all .3s ease; transition-delay: .5s; }
			div.fire-flex-item p.fade.animated,
			div.fire-flex-item p.court.fade.animated { opacity: 1; transform: none; }*/


			/*////// WAY SECTION //////*/
			section.way-section { padding: 0 0; }
			section.way-section div.way-container { padding: 8rem 3rem; }
			div.way-flex-item hr { margin: 4rem auto }


			/*////// LAWDRAGON SECTION //////*/
			section.lawdragon-section { padding: 0 0; }
			section.lawdragon-section div.lawdragon-container { padding: 8rem 3rem; }
			div.lawdragon-flex-item h2.section-h2 { width: 100%; margin-bottom: 8rem; font-size: 4.8rem; }
			div.lawdragon-flex-item img.article-cover { width: 60%; margin: 0 auto; margin-bottom: 3rem; }			


			/*////// TESTIMONIALS SECTION //////*/
			section.testimonials-section { padding: 0 0; }
			section.testimonials-section div.testimonials-container { padding: 8rem 3rem; }
			#testimonials-flex-item-1 { padding-bottom: 0; }
			#testimonials-flex-item-1 hr:last-of-type { display: block; }
			#testimonials-flex-item-2 {}
			div.testimonials-flex-item h2 { padding-left: 0; }
			div.open-quote { left: 4rem; opacity: .4; }
			div.close-quote { right: 4rem; opacity: .4; }
			div.testimonials-flex-item div.testimonial-block p.name { padding-right: 2rem; }

} 
@media only screen and (max-width: 480px) { 

			/*////// HERO SECTION //////*/
			section.hero-section { padding: 0 0; }
			section.hero-section div.hero-container { padding: 12rem 3rem 8rem 3rem; }

			div.hero-flex-item h1 { font-size: 4.8rem; }

			/*// CIRCLES //*/
			#circle-flex-container { justify-content: space-between; padding: 8rem 0 8rem 0; }
			div.hero-flex-container div.hero-circle,
			div.hero-flex-container div.hero-circle div.hero-circle { height: 0 !important; }
			div.hero-flex-container div.hero-circle {  padding: 0 0 50% 0 !important; }
			div.hero-flex-container div.hero-circle div.hero-circle { padding: 0 0 100% 0 !important; background-size: 133%; }
			#hero-circle-1, #hero-circle-2, #hero-circle-3, #hero-circle-4 { width: 49%; max-width: 49%; }
			div.hero-flex-container.animated div.hero-circle div.hero-circle::after,
			div.hero-circle div.dropdown,
			div.hero-circle.open div.dropdown h3,
			div.hero-circle.open div.dropdown p { display: none; }

			div.hero-flex-item p { font-size: 2.6rem; }


			/*////// STORY SECTION //////*/
			section.story-section { padding: 0 0; }
			section.story-section div.story-container { padding: 8rem 3rem; }
			div.story-flex-item h2 { width: 100%; font-size: 4.8rem; }


			/*////// ELEMENTS SECTION //////*/
			section.elements-section { padding: 0 0; }
			section.elements-section div.elements-container { padding: 8rem 3rem; }
			div.elements-flex-item h2 { width: 100%; margin-bottom: 4rem; font-size: 4.8rem; }
			div.elements-flex-item p.indent { padding-left: 2.4rem; }


			/*////// EARTH SECTION //////*/
			section.earth-section { padding: 0 0; }
			section.earth-section div.earth-container { max-height: initial; padding: 0 0; }
			div.earth-container div.earth-flex-container { height: auto; }
			#earth-flex-item-0 { display: none; order: 2; }
			#earth-flex-item-1 { order: 1; }
			#earth-flex-item-2 { padding: 8rem 3rem; order: 3; }
			div.earth-flex-container.open #earth-flex-item-0 { display: block; width: 100%; padding: 8rem 3rem; }
			div.earth-flex-container.open #earth-flex-item-2 { display: none; }
			/*/ CONTENT /*/
			div.earth-flex-item p { white-space: initial }
			div.earth-flex-item p.court { padding: 3rem 0 0 0; white-space: initial; }
			/*/ CLICK TO /*/
			a.click-to-soft,
			a.click-to-hard { font-size: 12px; }
			a.click-to-soft::after { width: 9px; height: 9px; }
			a.click-to-hard::after { width: 9px; height: 9px; }


			/*////// WATER SECTION //////*/
			section.water-section { padding: 0 0; }
			section.water-section div.water-container { max-height: initial; padding: 0 0; }
			div.water-container div.water-flex-container { height: auto; }
			#water-flex-item-0 { display: none; order: 2; }
			#water-flex-item-1 { order: 1; }
			#water-flex-item-2 { padding: 8rem 3rem; order: 3; }
			div.water-flex-container.open #water-flex-item-0 { display: block; width: 100%; padding: 8rem 3rem; }
			div.water-flex-container.open #water-flex-item-2 { display: none; }
			/*/ CONTENT /*/
			div.water-flex-item p { white-space: initial }
			div.water-flex-item p.court { padding: 3rem 0 0 0; white-space: initial; }


			/*////// WIND SECTION //////*/
			section.wind-section { padding: 0 0; }
			section.wind-section div.wind-container { max-height: initial; padding: 0 0; }
			div.wind-container div.wind-flex-container { height: auto; }
			#wind-flex-item-0 { display: none; order: 2; }
			#wind-flex-item-1 { order: 1; }
			#wind-flex-item-2 { padding: 8rem 3rem; order: 3; }
			div.wind-flex-container.open #wind-flex-item-0 { display: block; width: 100%; padding: 8rem 3rem; }
			div.wind-flex-container.open #wind-flex-item-2 { display: none; }
			/*/ CONTENT /*/
			div.wind-flex-item p { white-space: initial }
			div.wind-flex-item p.court { padding: 3rem 0 0 0; white-space: initial; }
			

			/*////// FIRE SECTION //////*/
			section.fire-section { padding: 0 0; }
			section.fire-section div.fire-container { max-height: initial; padding: 0 0; }
			div.fire-container div.fire-flex-container { height: auto; }
			#fire-flex-item-0 { display: none; order: 2; }
			#fire-flex-item-1 { order: 1; }
			#fire-flex-item-2 { padding: 8rem 3rem; order: 3; }
			div.fire-flex-container.open #fire-flex-item-0 { display: block; width: 100%; padding: 8rem 3rem; }
			div.fire-flex-container.open #fire-flex-item-2 { display: none; }
			/*/ CONTENT /*/
			div.fire-flex-item p { white-space: initial }
			div.fire-flex-item p.court { padding: 3rem 0 0 0; white-space: initial; }
			/*/ ANIMATIONS /*/
			/*div.fire-flex-item p.fade,
			div.fire-flex-item p.court.fade { opacity: 0; transform: translateY(-10px); transition: all .3s ease; transition-delay: .5s; }
			div.fire-flex-item p.fade.animated,
			div.fire-flex-item p.court.fade.animated { opacity: 1; transform: none; }*/


			/*////// WAY SECTION //////*/
			section.way-section { padding: 0 0; }
			section.way-section div.way-container { padding: 8rem 3rem; }
			div.way-flex-item hr { margin: 4rem auto }
			

			/*////// LAWDRAGON SECTION //////*/
			section.lawdragon-section { padding: 0 0; }
			section.lawdragon-section div.lawdragon-container { padding: 8rem 3rem; }
			div.lawdragon-flex-item h2.section-h2 { width: 100%; margin-bottom: 8rem; font-size: 4.8rem; }
			div.lawdragon-flex-item img.article-cover { width: 60%; margin: 0 auto; margin-bottom: 3rem; }


			/*////// TESTIMONIALS SECTION //////*/
			section.testimonials-section { padding: 0 0; }
			section.testimonials-section div.testimonials-container { padding: 8rem 3rem; }
			#testimonials-flex-item-1 { padding-bottom: 0; }
			#testimonials-flex-item-1 hr:last-of-type { display: block; }
			#testimonials-flex-item-2 {}
			div.testimonials-flex-item h2 { padding-left: 0; }
			div.open-quote { left: 4rem; opacity: .4; }
			div.close-quote { right: 4rem; opacity: .4; }
			div.testimonials-flex-item div.testimonial-block p.name { padding-right: 2rem; }

}

/*// LANDSCAPE ORIENTATION - TABLET & SMALLER //*/
@media screen and (max-width: 1024px) and (orientation: landscape) { }
@media screen and (max-width: 813px) and (orientation: landscape) { }