@charset "utf-8";
/* CSS Document */

:root {
--blue: #27225A;
}

.main_container_practice {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas: 
		"practice-areas-nav"
		"practice-areas-text-holder"
	
}
.practice-areas-text-holder{
	margin: 4rem 5% 2rem 5%;
	background: repeating-linear-gradient(to bottom right, #27225A, #0044c1);
	border-bottom-left-radius: 60px;
	border-top-right-radius: 60px;
}


.practice-areas-text {
	padding: 3rem;
	font-family: roboto;
	color: white;
}

.logo-float {
	position: absolute;
    left: 30%;
	top: 70%;
	opacity: .15;
	height: clamp(15rem, 40vw, 30rem);
}

.logo-float-lit {
	position: absolute;
    left: 30%;
	top: 50%;
	opacity: .15;
	height: clamp(15rem, 40vw, 30rem);
}


.practice-areas-text h3{
	font-size: clamp(1em, 4vw, 1.5em);
	font-family: Roboto;
}

.practice-title {
	font-size: clamp(.8em, 4vw, 2.5em);
	font-weight: bold;
 	color: white;
	margin-top: .5em;
}

.practice-areas-text a{
	font-size: 1em;
	font-family: Roboto;
	color: white;
	font-weight: bold;
	text-decoration: none;
}

.practice-areas-text a:hover{
	font-size: 1em;
	font-family: Roboto;
	color: white;
	text-decoration: underline;
}

.practice-areas-nav {
	display: block;
padding-top: 2.5rem;
	background-color: var(--blue);
	color: white;
}

.practice-areas-nav a {
	display: block;
		padding: 1rem;
		color: white;
		text-align: center;
		font-size: clamp(.8rem, 2vw, 1.5rem);
		transtion: 0.3s;
		text-decoration: none;
		margin: 10px auto;
		width: 100%;
}

.practice-areas-nav a:hover{
		color: firebrick;
		background-color: white;
	margin: 10px auto;
	width: 100%
	}

@media screen and (min-width: 720px) {
	
.main_container_practice {
	display: grid;
	grid-template-columns: 1fr 20%;
	
}
	
.practice-areas-nav {
	display: block;
	padding-top: 2.5rem;
	background-color: var(--blue);
	color: white;
}

.practice-areas-nav a {
	display: block;
		padding: 1rem;
		color: white;
		text-align: center;
		font-size: clamp(.8rem, 2vw, 1.5rem);
		transtion: 0.3s;
		text-decoration: none;
		margin: 0 auto;
		width: 96%;
}

.practice-areas-nav a:hover{
		color: firebrick;
		background-color: white;
	margin: 0 auto;
	width: 96%;
	}
	
}