/* ESSENTIALS CHILD THEME: "PROVEN" */

body {
	--color-primary: #2a3573;
	--color-secondary: #e1ac22;	
	--color-gray:#e4edf9;
	--color-dark: #505050;
	--color-dark-blue: #022b60;
	--color-light-blue: #d8e5ed;
	--color-light-gray: #edf1f5;
	--color-white: #fff;
	--color-near-white: #f9fbfd;
	--color-black: #041216;
	--color-near-black: #000;
	--color-warning: #f10f0f;
	--color-border: #cecece;
}

.button {
	border-radius: 0;
}

/* HERO BANNER */

.hero {
	position: relative;
	width: 100%;
	margin-top: calc(var(--header-height) + 0px);
}

.hero::after {
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0.4;
	z-index: 0;
}

.hero-holder {
	position: relative;
}

.hero-inner {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.hero-content {
	z-index: 1;
	width: 54%;
	position: relative;
	line-height: 1.4;
	font-weight: 500;
	color: var(--color-primary);
	font-size: 1rem;
	min-height: 280px;
	padding: 30px 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.hero-content .hero-title {
	font-weight: 900;
	line-height: 1.15;
	font-size: 1.688rem;
	margin-bottom: 10px;
	color: var(--color-secondary);
	text-shadow: 0 0 10px #000;
}

.hero-content .hero-subtitle {
	margin-bottom: 10px;
	color: var(--color-white);
	font-size: 20px;
	text-shadow: 0 0 10px #000;
}

.hero-content .button {
	padding-left: 10px;
	padding-right: 10px;
	font-size: 0.75rem;
	text-transform: none;
}

.hero-form {
	z-index: 1;
	align-self: center;
	position: relative;
}

.hero-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.hero-image:after {
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-connect form {
	margin-top: 20px;
	display: none;
}

.hero-connect form.is-active {
	display: block;
}

.hero-connect h2 i {
	transition: 0.3s all ease-in-out;
}
.hero-connect h2 {
	margin: -10px 0;
	cursor: pointer;
}

.hero-connect h2.is-active i {
	transform: scaleY(-1);
}

@media screen and (min-width: 768px) {
	.hero-content {
		min-height: 605px;
	}

	.hero-content .button {
		padding-left: 20px;
		padding-right: 20px;
		font-size: 1.25rem;
	}

	.hero-form {
		width: 450px;
	}
}
.hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

@media screen and (min-width: 1025px) {
.hero {
	margin-top: 0;
}

.hero-inner {
	height: 100vh;
	max-height: 1000px;
	padding-top: 120px;
	min-height:700px
}

	.hero-content {
		width: 55%;
		font-size: 1.625rem;
	}

.hero-content .hero-subtitle {
	margin-bottom: 20px;
	font-size: 20px;
	max-width: 600px;
}

	.hero-content .button {
		font-size: 1.5rem;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.hero-content .hero-title {
		font-size: 3.125rem;
		margin-bottom: 15px;
	}
}

@media screen and (min-width: 1200px) {
	.hero-content {
		max-width: 800px;
		font-size: 1.875rem;
	}

	.hero-content .hero-subtitle {
		margin-bottom: 30px;
	}

	.hero-content .hero-title {
		font-size: 2.4rem;
	}
}

/* SOCIAL REVIEWS */
.social-reviews {
	padding-top: 20px;
	padding-bottom: 20px;
	color: var(--color-primary);
	background-color: var(--color-gray);
}

.social-reviews-holder {
	position: relative;
}

.social-reviews-items {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.social-reviews-item {
	position: relative;
	text-align: center;
	padding: 0 20px;
}

.social-reviews-item-icon {
	font-size: 1.875rem;
}

.social-reviews-content {
	line-height: 1.8;
	font-size: 1rem;
}

.social-reviews-content p {
	margin-bottom: 5px;
}

.social-reviews-item .social-reviews-stars {
	display: flex;
	gap: 4px;
	justify-content: center;
	margin-bottom: 0;
	color: var(--color-secondary);
}

@media only screen and (min-width: 767px) {
	.social-reviews {
		padding-top: 35px;
		padding-bottom: 35px;
	}

	.social-reviews-items {
		flex-direction: row;
		gap: 30px;
	}

	.social-reviews-item {
		padding-left: 60px;
		text-align: left;
		padding-right: 0;
		flex: 1;
	}

	.social-reviews-item-icon {
		position: absolute;
		top: 0;
		left: 0;
		line-height: 1.5;
		font-size: 2.5rem;
	}

	.social-reviews-info {
		display: flex;
		justify-content: start;
		align-items: center;
		gap: 10px;
	}

	.social-reviews-item ul {
		justify-content: left;
	}
}

/* INTRO */
.intro {
	padding-top: 30px;
	padding-bottom: 54px;
}

.intro h2 {
	font-size: 2.5rem;
}

.intro-image {
	margin-bottom: 20px;
}

.intro-image img {
	width: 100%;
	display: block;
}

.intro-content {
	font-size: 1.25rem;
}
.intro-content h1 {
	font-size: 40px;
}
@media screen and (min-width: 768px) {
	.intro {
		padding-top: 70px;
		padding-bottom:70px;
	}

	.intro h2 {
		font-size: 3.125rem;
	}

	.intro-holder {
		display: flex;
	}

	.intro-image {
		width: 43.3%;
		margin-bottom: 0;
		margin-right: var(--gutter-size);
	}

	.intro-content {
		flex: 1;
		align-self: center;
	}
}

@media screen and (min-width: 1025px) {
	.intro-image {
		margin-right: 45px;
	}
}

/* CASES */
.cases {
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: var(--color-gray);
}

.cases-content {
	max-width: 890px;
	margin: 0 auto 50px;
	font-size: 1.375rem;
	text-align: center;
}

.cases-content h2 {
	font-size: 2.5rem;
}

.cases-item {
	display: flex;
	padding: 15px 0;
	margin-top: -1px;
	font-weight: bold;
	min-height: 108px;
	align-items: center;
	font-size: 1.125rem;
	color: var(--color-primary);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.cases-item i {
	width: 70px;
	display: block;
	font-size: 1.875rem;
	color: var(--color-secondary);
}

.cases-item span {
	flex: 1;
	display: block;
	text-transform: uppercase;
	margin-bottom: 0;
	line-height: 1.3;
	letter-spacing: 2px;
	text-align: left;
	font-weight: 500;
}

@media screen and (min-width: 768px) {
	.cases {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.cases-content {
		line-height: 1.5;
		margin-bottom: 80px;
	}

	.cases-content h2 {
		font-size: 3.125rem;
		margin-bottom: 40px;
	}

	.cases-content p:last-child {
		margin-bottom: 0;
	}

	.cases-holder {
		display: flex;
		column-gap: 60px;
		grid-template-columns: repeat(2, 1fr);
	}

	.cases-item {
		font-size: 1.25rem;
	}

	.cases-item i {
		width: 60px;
	}
}

/* BRANDS */
.brands {
	padding-top: 30px;
	padding-bottom: 30px;
}

.brands-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	align-items: center;
}

.brands-item {
	display: flex;
	justify-content: center;
}

.brands-image {
	max-width: 100%;
}

.brands-image img {
	width: 100%;
	height: auto;
	max-width: 160px;
	display: block;
	margin: 0 auto;
}

@media screen and (min-width: 480px) {
	.brands-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 768px) {
	.brands {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.brands-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (min-width: 1025px) {
	.brands-grid {
		grid-template-columns: repeat(6, 1fr);
	}
}

/* FEATURES */
.features {
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;
	color: var(--color-white);
	background: linear-gradient(to bottom, rgba(2, 61, 138, 1) 0%, rgba(1, 31, 69, 1) 100%);
}

.features h2 {
	font-size: 2.5rem;
	margin-bottom: 35px;
	color: #fff;
}

.features-holder {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 50px;
}

.features-item {
	display: block;
	font-weight: 500;
	font-size: 1.25rem;
	position: relative;
	transition: all 0.3s ease;
	padding-bottom: 10px;
	cursor: pointer;
	outline: none;
}

.features-item i {
	font-size: 1.75rem;
	color: var(--color-secondary);
}

.features-item-name {
	margin-bottom: 20px;
	color: #fff;
}

.features-item-icon {
	margin-bottom: 16px;
}

.features-item-icon i {
	font-size: 3rem;
}

.features-item-content {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: var(--color-primary);
	padding: 20px;
	border-radius: 6px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 10;
	color: var(--color-white);
	font-size: 1rem;
	font-weight: normal;
	text-align: left;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.features-item.active .features-item-content,
.features-item:focus .features-item-content {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.features-item-content p {
	color: #fff;
	margin-bottom: 0;
}

.features-item .fa-plus {
	transition: transform 0.3s ease;
}

.features-item.active .fa-plus,
.features-item:focus .fa-plus {
	transform: rotate(45deg);
}

@media only screen and (min-width: 767px) {
	.features {
		padding-top: 80px;
		padding-bottom: 50px;
	}

	.features h2 {
		font-size: 3.125rem;
		margin-bottom: 60px;
	}

	.features-holder {
		grid-template-columns: repeat(2, 1fr);
	}

	.features-item-content {
		max-width: 90%;
		margin: 0 auto;
	}
}

@media only screen and (min-width: 1025px) {
	.features-holder {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* TESTIMONIALS */
.testimonials {
	margin-top: 40px;
	margin-bottom: 40px;
	text-align: center;
}

.testimonials h2 {
	font-size: 2.5rem;
}

.testimonials-slide {
	width: 100%;
	max-width: 920px;
	font-size: 1.25rem;
	margin-left: auto;
	margin-right: auto;
}

.testimonials-slide p {
	font-size: inherit;
}

.testimonials-slider {
	position: relative;
	padding: 0 25px;
}

@media only screen and (min-width: 767px) {
	.testimonials {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.testimonials h2 {
		margin-bottom: 30px;
	}

	.testimonials-name {
		font-size: 1.25rem;
	}

	.testimonials-slide {
		line-height: 1.8;
		font-size: 1.375rem;
	}

	.testimonials-slider {
		padding-left: 80px;
		padding-right: 80px;
	}
}

/* PREFACE */
.preface {
	/* background-color: var(--color-gray); */
	padding: 60px 0;
}
.preface.odd {
	padding: 45px 0;
	background-color: var(--color-gray);
}

.preface-image {
	margin-left: calc(var(--gutter-size) * -1);
	margin-right: calc(var(--gutter-size) * -1);
}

.preface-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	aspect-ratio: 375 / 230;
}

.preface-content {
	font-size: 1.375rem;
	padding: var(--gutter-size) 0;
}

.preface-content p:last-child {
	margin-bottom: 0;
}

.preface-content h2 {
	font-size: 2.5rem;
}

@media only screen and (min-width: 767px) {
	.preface-holder {
		display: flex;
		flex-direction: row-reverse;
	}
	
	.preface.odd .preface-holder {
	flex-direction: revert;
}

	.preface-content {
		flex: 1;
		line-height: 1.55;
		align-self: center;
		padding-top: calc(var(--gutter-size) * 2);
		padding-bottom: calc(var(--gutter-size) * 2);
	}

	.preface-image {
		width: 404px;
		margin-left: 0;
		aspect-ratio: unset;
		margin-left: calc(var(--gutter-size) * 2);
	}
}

@media only screen and (min-width: 1024px) {
	.preface-holder {
		min-height: 599px;
	}

	.preface-image {
		margin: 0;
		width: 504px;
		margin-left: 120px;
	}

	.preface-content h2 {
	font-size: 2.6rem;
}
}

@media only screen and (min-width: 1200px) {
	.preface-image {
		margin-left: 100px;
	}
	.preface.odd .preface-holder .preface-image {
	margin-left: 0;
	margin-right: 100px;
}
}

/* RECOVERED */
.recovered {
	padding-top: 40px;
	padding-bottom: 40px;
	text-align: center;
}

.recovered-holder {
	position: relative;
}

.recovered-items {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

.recovered-item {
	font-size: 1.125rem;
	padding: 0 20px;
}

.recovered-item-title {
	font-size: 1.25rem;
	color: var(--color-primary);
	text-transform: uppercase;
	font-weight: 700;
	line-height: 1.3;
}

.recovered-item-title strong {
	font-size: 3.125rem;
	display: block;
}

.recovered-item-tag {
	font-size: 1rem;
	text-decoration: none;
	font-style: italic;
	font-weight: 700;
	display: inline-flex;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.recovered-item-tag i {
	display: none;
	padding-right: 10px;
	font-size: 1.875rem;
}

.recovered-item p {
	margin-bottom: 10px;
}

.recovered-item-tag:focus span,
.recovered-item-tag:hover span {
	text-decoration: underline;
}

.recovered-item-link {
	font-size: 1rem;
	font-weight: 700;
}

.recovered-item-link i {
	padding-left: 7px;
}

.recovered-link {
	text-align: center;
	margin-top: 20px;
}

@media only screen and (min-width: 767px) {
	.recovered {
		padding-top: 120px;
		padding-bottom: 120px;
		text-align: left;
	}

	.recovered-items {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}

	.recovered-item {
		font-size: 1.25rem;
		padding: 0;
	}

	.recovered-item-title {
		font-size: 1.5rem;
		margin-bottom: 20px;
	}

	.recovered-item-title strong {
		font-size: 3.75rem;
		margin-bottom: 4px;
	}

	.recovered-item-tag {
		font-size: 1.125rem;
		margin-bottom: 18px;
	}

	.recovered-item-tag i {
		display: unset;
	}

	.recovered-item p {
		margin-bottom: 25px;
	}

	.recovered-item-link {
		font-size: 1.125rem;
	}

	.recovered-link {
		margin-top: 80px;
	}
}

@media only screen and (min-width: 1025px) {
	.recovered-items {
		grid-template-columns: repeat(3, 1fr);
		gap: 50px;
	}
}

/* VIDEOS */
.videos {
	background-color: var(--color-primary);
	padding-top: 35px;
	padding-bottom: 45px;
}

.videos .swiper-pagination {
	bottom: 0;
}

.videos .swiper-slide {
	margin-bottom: 50px;
}

.videos-content {
	text-align: center;
	max-width: 930px;
	margin: 0 auto 25px;
}

.videos-content p:last-child {
	margin-bottom: 0;
}

.videos-content h2 {
	font-size: 2.5rem;
	color: var(--color-white);
	text-transform: capitalize;
	margin-bottom: 12px;
}

.videos-item {
	text-align: center;
	text-decoration: none;
}

.videos-item:focus,
.videos-item:hover {
	color: var(--color-white);
}

.videos-item p,
.videos-content p {
	font-size: 1.25rem;
	color: var(--color-white);
}

.videos-item p {
	line-height: 1.2;
	font-weight: 700;
}

.videos-item p:last-child {
	margin-bottom: 0;
}

.videos-item-img {
	margin-bottom: 20px;
	overflow: hidden;
	position: relative;
	max-height: 190px;
}

.videos-item-img i {
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 67px;
	height: 67px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.25rem;
	background-color: var(--color-secondary);
	border-radius: 100%;
	color: var(--color-primary);
}

.videos-item-img img {
	display: block;
	transition: 200ms all ease-in-out;
	border-radius: 6px;
}

.videos-item:focus .videos-item-img img,
.videos-item-img:hover img {
	transform: scale(1.05);
}
.js-videos-slider.videos-slider {
	padding: 35px 00px;
}
.videos .swiper-button-container button {
	background: var(--color-alternate) !important;
	font-size: 12px!important;
}
.videos .swiper-button-container button::after {
	color: #fff!important;
	font-size: 20px!important;
}



@media only screen and (min-width: 767px) {
	.videos {
		padding-top: 90px;
		padding-bottom: 90px;
	}

	.videos-content {
		margin-bottom: 35px;
	}

	.videos-content h2 {
		font-size: 3.125rem;
		margin-bottom: 23px;
	}
}

/* ATTORNEYS */
.attorneys {
	padding-top: 40px;
	padding-bottom: 40px;
}

.attorneys-title {
	text-align: center;
	font-size: 3.125rem;
}

@media screen and (min-width: 768px) {
	.attorneys {
		padding-top: 80px;
		padding-bottom: 90px;
	}

	.attorneys-title {
		margin-bottom: 80px;
	}
}

/* NEWS */
.news {
	padding-top: 35px;
	padding-bottom: 45px;
	background-color: var(--color-gray);
}

.news-slider {
	position: relative;
}

.news-heading {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 24px;
}

.news-item {
	background-color: var(--color-white);
	padding: 32px;
	font-size: 1.25rem;
	box-shadow: 0 3px 75px rgba(0, 0, 0, 0.051);
}

.news-item h3 {
	font-weight: bold;
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: var(--color-primary);
}

.news-item h3 a {
	color: inherit;
}

.news-item ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 8px;
	font-size: 0.875rem;
}

.news-item li {
	align-items: center;
	display: inline-flex;
}

.news-item li i {
	font-weight: normal;
	margin-right: 5px;
	color: var(--color-primary);
}

.news-item li a {
	color: var(--color-secondary);
}

.news-item li:not(:last-child) {
	margin-right: 5px;
}

.news-item p {
	margin-bottom: 15px;
}

.news .swiper-button-prev {
	left: -25px;
}

.news .swiper-button-next {
	right: -25px;
}

@media only screen and (min-width: 767px) {
	/* news */
	.news {
		padding-top: 80px;
		padding-bottom: 100px;
	}

	.news-heading {
		font-size: 3.125rem;
		margin-bottom: 48px;
	}

	.news-item {
		padding: 45px;
	}

	.news-item h3 {
		font-size: 1.875rem;
		margin-bottom: 8px;
	}

	.news-item ul {
		font-size: 1rem;
		margin-bottom: 18px;
	}

	.news-item li:not(:last-child) {
		margin-right: 10px;
	}

	.news-slider {
		padding-left: 90px;
		padding-right: 90px;
	}

	.news .swiper-button-prev {
		left: 0;
	}

	.news .swiper-button-next {
		right: 0;
	}
}

/* ACTION */
.action {
	width: 100%;
	position: relative;
	color: var(--color-white);
	background-color: var(--color-gray);
	/* margin-bottom: 80px; */
}

.action-content {
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	padding-top: 45px;
	font-size: 1.125rem;
	padding-bottom: 45px;
	text-transform: uppercase;
}

.action-content p {
	letter-spacing: 1px;
	color: #fff;
}

.action-content h2 {
	font-size: 2.5rem;
	margin-bottom: 15px;
	color: var(--color-primary);
	text-transform: none;
}

p.action-call-text {
	color: var(--color-secondary);
	margin-bottom: 10px;
	display: none;
}



.fas.fa-mobile.small-margin-right {
	font-weight: normal !important;
}


.action-phone.tel-link {
	display: none;
}

.action-phone {
	line-height: 1;
	color: var(--color-secondary);
	display: inline-flex;
	align-items: center;
	font-weight: 700;
	font-size: 2.563rem;
	text-decoration: none;
}

.action-phone:hover,
.action-phone:focus {
	color: var(--color-alternate);
}

.action-phone i {
	font-size: 66%;
	margin-right: 14px;
}

.action-form {
	padding-bottom: 50px;
}

.action-image {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.action-image:after {
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background:#222;
	opacity: 0.8;
}

.action-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.action-content-inner {
	width: 100%;
	margin: 0 auto;
	max-width: 540px;
}

.action .gform_wrapper{
	background-color: var(--color-primary);
}

@media only screen and (min-width: 767px) {
	.action-content h2 {
		font-size: 2.5rem;
		margin-bottom: 30px;
	}

	.action-form {
		width: 350px;
		display: flex;
		padding-bottom: 0;
		align-items: center;
/* 		background-color: rgba(42, 53, 115, 0.7); */
	}

	.action-content {
		flex: 1;
		align-self: center;
		padding-left: 50px;
		padding-right: 50px;
	}

	.action-holder {
		width: 100%;
		display: flex;
		min-height: 550px;
	}
}

@media only screen and (min-width: 1025px) {
	.action-form {
		width: 412px;
	}

	.action-phone {
		font-size: 2.813rem;
	}
}

/* INFO */
.info {
	padding-top: 40px;
	padding-bottom: 40px;
	text-align: center;
	font-size: 1.25rem;
}

.info p:last-child {
	margin-bottom: 0;
}

.info a {
	font-weight: 700;
}

@media screen and (min-width: 768px) {
	.info {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}

/* attorney box */
.attorney-single-box {
	padding: 0;
	display: block;
	margin-bottom: 20px;
	position: relative;
	text-decoration: none;
}

.attorney-result-image-container {
	position: relative;
	transition: all 200ms ease-out;
	background-color: var(--color-light-blue);
}

.attorney-result-image-container:before {
	left: 0;
	bottom: 0;
	width: 100%;
	content: "";
	height: 130px;
	display: block;
	position: absolute;
	background: linear-gradient(180deg, rgba(0, 66, 118, 0) 0%, #004276 100%);
}

.attorney-result-image-container img {
	width: 100%;
	height: auto;
	display: block;
}

.attorney-result-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	width: 100%;
	height: 100%;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	color: var(--color-white);
	background: rgba(2, 62, 138, 0.8);
	transition: opacity 200ms ease-out;
}

.attorney-single-box:hover .attorney-result-overlay,
.attorney-single-box:focus .attorney-result-overlay {
	opacity: 1;
}

.attorney-single-box:hover .attorney-single-box-info,
.attorney-single-box:focus .attorney-single-box-info {
	opacity: 0;
}

.attorney-single-box .attorney-single-box-info {
	padding: 20px 0;
	text-align: center;
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: 1;
	transition: opacity 200ms ease-out;
}

.attorney-single-box-info h2,
.attorney-single-box-info p {
	margin: 0;
	color: var(--color-white);
}

.attorney-single-box h2 {
	margin-bottom: 5px;
	font-size: 1.3rem;
}

.attorney-single-box-info p {
	font-size: 1rem;
	text-transform: uppercase;
}

@media screen and (min-width: 650px) {
	.attorney-results {
		display: grid;
		grid-row-gap: 15px;
		grid-column-gap: 15px;
		grid-template-columns: repeat(2, 1fr);
	}

	.attorney-single-box {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 768px) {
	.attorney-results {
		grid-template-columns: repeat(3, 1fr);
	}
}

.row-narrow.module-benefits-c-content.bottom p {
	color: var(--color-primary);
}
@media screen and (min-width: 1025px) {
	.attorney-results {
		grid-template-columns: repeat(4, 1fr);
	}
}
.module-benefits-c-content {
	margin-bottom: 60px;
	text-align: center;
}
.row-narrow.module-benefits-c-content h2 {
	font-size: 45px;
}
.row-narrow.module-benefits-c-content.bottom p {
	max-width: 1080px;
	margin-bottom: 0;
}

.row-narrow.module-benefits-c-content.bottom {
	margin-top: 55px;
	max-width: 1280px;
	margin-bottom: 0;
}

.row-narrow.module-benefits-c-content p {
	max-width: 688px;
	margin-left: auto;
	margin-right: auto;
}


.module-benefits-c-boxes {
	flex-wrap: wrap;
}

.module-benefits-c-box {
	text-align: center;
	margin-bottom: 60px;
}

.module-benefits-c-box p:last-of-type {
	margin: 0;
}

.module-benefits-c-box .box-icon {
	margin-bottom: 20px;
}

.module.module-benefits-c {
	background-color: var(--color-gray);
}

.module.module-benefits-c .module-benefits-c-box .box-content h3 {
	font-size: 22px;
}
@media screen and (min-width: 768px) {
	.module-benefits-c-boxes {
		justify-content: center;
	}

	.module-benefits-c-box {
		padding: 0 60px;
		margin-bottom: 40px;
		width: 50%;
	}
}

@media screen and (min-width: 1200px) {
.module-benefits-c-boxes {
	flex-wrap: nowrap;
	justify-content: flex-start;
	column-gap: 25px;
	align-items: flex-start;
}

	.module-benefits-c-box {
		width: auto;
		flex: 1;
		margin: 0;
		padding: 0 20px;
	}

	.module-benefits-c-box:nth-child(2n) {
		margin-right: 0;
	}

	.module-benefits-c-box:last-of-type {
		margin: 0;
	}
}
 

@media screen and (min-width:280px) and (max-width:767px) {
.preface.odd {
	padding: 0 !important;
}	
	
.hero-content {
	width: 100%; 
}	
.hero-content .hero-subtitle {
	font-size: 16px;
	line-height: 1.2;
}

.intro-content h1 {
	font-size: 28px;
}
.intro-content p {
	margin: 0;
}
.preface.odd .preface-content {
	padding-bottom: 0 !important;
}
.module.module-benefits-c {
	padding: 40px 0;
}

.row-narrow.module-benefits-c-content h2 {
	font-size: 35px;
}

.module.module-benefits-c .module-benefits-c-box .box-content h3 {
	font-size: 22px;
	margin-bottom: 5px;
}

.row-narrow.module-benefits-c-content.bottom {
	margin-top: 0px;
}
.preface-content h2 {
	font-size: 1.8rem;
}

.preface-content {
	padding-top: 50px;
}
	
.preface {
	padding-bottom: 30px;
}
.videos-content h2 {
	font-size: 2rem;
}
.videos .swiper-slide {
	margin-bottom: 20px;
}

.action-content h2 {
	font-size: 2rem;
 
}	
.action-phone {
	font-size: 2rem;
 
}	
	.action {
	margin-bottom: 0;
}
	
.preface-image img {
	aspect-ratio: 375 / 430;
}	
.videos-item-img img {
	margin: 0 auto;
}
.hero-form {
	width: 100%;
}	

.videos .swiper-button-container {
	bottom: 3px;
	position: relative;
}


	
	
}




@media screen and (min-width:767px) and (max-width:1024px) {
 .intro-content h1 {
	font-size: 22px;
	margin-top: -6px;
}
.intro {
	padding-bottom: 30px !important ;
}	

.preface.odd .column {
	padding-left: 0;
}
.preface.odd .preface-image {
	margin: 0;
	margin-right: calc(var(--gutter-size) * 2);
}

.module.module-benefits-c {
	padding: 40px 0;
}

.row-narrow.module-benefits-c-content h2 {
	font-size: 38px;
}

.module-benefits-c-box {
	padding: 0 10px!important ;
	width: 33%!important ;
}
.module-benefits-c-boxes {
	justify-content: center;
	align-items: flex-start;
}
	
.videos-content h2 {
	font-size: 2.4rem;
	margin-bottom: 23px;
}
.action-content h2 {
	font-size: 2rem;
	margin-bottom: 30px;
}
.action-phone {
	font-size: 2rem;
 
}
.videos {
	padding-bottom: 50px;
}

.videos-item-img img {
	margin: 0 auto;
}
.videos .swiper-button-container {
	bottom: 3px;
	position: relative;
}	
	
}



@media screen and (min-width:1024px) and (max-width:1279px) {
	.hero-content .hero-title {
	font-size: 2.5rem;
	margin-bottom: 15px;
}
 
.preface.odd .preface-image {
	margin: 0;
	margin-right: calc(var(--gutter-size) * 2);
}
.intro-content h1 {
	font-size: 35px;
}
.intro {
	padding-top: 70px;
	padding-bottom: 30px;
}
.module.module-benefits-c {
	padding: 50px 0;
}
	.module-benefits-c-box {
	padding: 0 10px!important ;
	width: 33%!important ;
}
.module-benefits-c-boxes {
	justify-content: center;
	align-items: flex-start;
}
	
	
}
img.choose-ico {
    max-width: 60px;
    width: 100%;
   
}