/*# sourceMappingURL=layout-styles.css.map */

body {
	margin: 0;
	overflow-x: hidden;
	color: #13283d;
	font-family: "Karla";
	position: relative;
	font-size: 20px;
}

h1, .h1 {
	font-size: 4.8rem;
	text-transform: capitalize;
}

h2, .h2, .header, .subheader {
	font-size: 3rem;
	font-weight: 600;
	font-family: "Karla";
	text-transform: capitalize;
}

h3, .h3 {
	font-size: 1.8rem;
}

h4, .h4 h5, .h5 {
	font-size: 1.5rem;
}

p, li, a {
	font-family: "Spectral";
}

p {
	line-height: 1.7;
}

.title {
	font-family: "Karla";
	text-transform: uppercase;
}

ul, ol {
	padding-left: 0;
}

li {
	list-style-type: none;
}

li::before {
	content: "»";
	font-size: 1vw;
	padding-right: .5vw;
}

a {
	display: inline-block;
	transition: all .5s ease-in-out;
	text-decoration: none;
}

a:hover, a:focus, a:active {
	color: #009ba4;
}

.green-clip::after {
	content: "";
	background-color: #009ba4;
	display: block;
	position: absolute;
	width: 47%;
	height: 100%;
	top: 0;
	right: 0;
	-webkit-clip-path: polygon(83% 0, 100% 0%, 100% 100%, 23% 100%);
	clip-path: polygon(83% 0, 100% 0%, 100% 100%, 23% 100%);
	z-index: -1;
}

.button {
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
	font-family: "Karla";
	border-radius: 8vw;
	transition: .4s;
	padding: .8vw 2vw;
	text-align: center;
	text-decoration: none;
	font-size: 18px;
	display: inline-block;
}

.button.green {
	background-color: #009ba4;
}

.button.dark {
	background-color: #014888;
}

.phone-button {
	text-decoration: none;
	font-family: "Karla";
	font-weight: 600;
}

.phone-button img {
	width: 1.5vw;
	height: auto;
	position: relative;
	top: .3vw;
	right: .3vw;
}

.grey-line {
	position: relative;
}

.grey-line::before {
	content: "";
	border-bottom: 1.3px solid #c3c3c3;
	display: block;
	width: 29%;
	position: absolute;
	right: 0;
}

.green-line::before {
	content: "";
	border-left: 2px solid #009ba4;
	display: block;
	height: 60px;
	position: absolute;
	top: -20px;
}

.banner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #014888;
	padding: 2.3vw 8vw;
	color: #fff;
}

.banner a {
	color: #fff;
	transition: .3s;
}

.banner h3 {
	font-size: 1.32vw;
	margin: 0;
}

.banner p {
	margin: 0;
	line-height: 1.5;
}

.banner .phone-button {
	margin-left: 2vw;
}

.banner a:hover {
	color: #009ba4;
}

.banner .button.green:hover {
	background-color: #06639b;
	color: #fff;
}

#slider {
	position: relative;
}

#slider .slide {
	position: absolute;
	opacity: 0;
}

.resize-1 {
	width: auto;
	height: 4vw;
}

.resize-2 {
	width: auto;
	height: 8vw;
}

.resize-3 {
	width: auto;
	height: 5vw;
}

.resize-4 {
	width: auto;
	height: 3vw;
}

.form {
	width: 24vw;
	position: relative;
	z-index: 2;
	background-color: rgba(245, 245, 245, .82);
	border-radius: 10px;
	padding: 1.5vw 2vw 1vw;
	box-shadow: -3px 4px 11px rgba(0, 0, 0, .25);
}

.form p {
	color: #6a6a6a;
	margin: 0;
}

.form .title {
	color: #13283d;
	font-size: 1.6vw;
	margin: 0;
	font-weight: 700;
}

form {
	font-family: "Spectral";
	font-weight: 400;
}

form input {
	background-color: #fff;
	color: #6a6a6a;
	padding: 0 .5vw;
	border: 0;
	display: block;
	margin: .5vw;
	width: 92%;
	height: 3vw;
	font-size: 1.2vw;
	font-family: "Spectral" !important;
}

form input.input-1 {
	display: inline-block;
	width: 41%;
	vertical-align: top;
}

form textarea {
	background-color: #fff;
	color: #6a6a6a;
	padding: .5vw;
	border: 0;
	margin: .5vw;
	width: 92%;
	height: 10vw;
	font-size: 1.2vw;
	font-family: "Spectral" !important;
}

form button.button.dark {
	border: 0;
	margin: 1vw;
	position: relative;
	left: 21%;
	font-size: 1.02vw;
	cursor: pointer;
}

input::placeholder, textarea::placeholder {
	color: #6a6a6a;
	opacity: 1;
	font-family: "Spectral" !important;
	font-weight: 400;
	font-size: 1.2vw;
}

.button.green:hover {
	background-color: #014888;
	color: #fff;
}

.button.dark:hover {
	background-color: #009ba4;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		filter: blur(10px);
	}
	
	100% {
		opacity: 1;
		filter: blur(0px);
	}
}

.fadeIn {
	opacity: 0;
	filter: blur(10px);
}

.fadeIn.active {
	animation: fadeIn .1s ease forwards;
	-webkit-animation: fadeIn .1s ease forwards;
}

@keyframes fadeUp {
	0% {
		opacity: 0;
		transform: translateY(2vw);
		filter: blur(10px);
	}
	
	100% {
		transform: translateY(0);
		opacity: 1;
		filter: blur(0px);
	}
}

.fadeUp {
	position: relative;
	opacity: 0;
	transform: translateY(2vw);
	filter: blur(10px);
}

.fadeUp.active {
	animation: fadeUp .5s ease forwards;
	-webkit-animation: fadeUp .5s ease forwards;
}

.logged-in .desktop-nav {
	top: 32px;
}

.desktop-nav {
	background-color: #13283d;
	height: 6.323vw;
	padding: 1vw 0;
	top: 0;
	position: sticky;
	position: -webkit-sticky;
	z-index: 777;
	width: 100%;
}

.desktop-nav .logo {
	display: inline-block;
	width: auto;
	height: 4.6vw;
	vertical-align: middle;
	margin-left: 3vw;
	margin-top: 1vw;
}

.desktop-nav .phone-button {
	position: absolute;
	right: 2.4vw;
	top: .5vw;
	color: white;
}

.desktop-nav .links {
	float: right;
	margin-top: 2.2vw;
	margin-right: 3vw;
}

.desktop-nav .links a, .desktop-nav .links p {
	font-weight: 500;
	display: inline-block;
	color: #fff;
	padding: 0 1vw 1vw;
	text-decoration: none;
	font-family: "Karla";
	font-size: .99vw;
	text-transform: uppercase;
	transition: .3s;
}

.desktop-nav .links a:hover, .desktop-nav .links p:hover {
	color: #00aeb7;
	text-shadow: 0px 0px 3px #13283d;
}

.desktop-nav .links .button:hover {
	color: #fff;
}

.desktop-nav .links p {
	cursor: default;
	margin: 0;
}

.desktop-nav .links .button {
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
	font-family: "Karla";
	border-radius: 100px;
	transition: .4s;
	padding: .8vw 2vw;
	text-align: center;
	text-decoration: none;
	font-size: .99vw;
	margin-left: 1.8vw;
}

.desktop-nav .dropdown-container {
	display: inline-block;
	position: relative;
	transition: .3s;
}

.desktop-nav .dropdown-container span.plus {
	font-size: .9vw;
	position: relative;
	bottom: .1vw;
	left: .3vw;
}

.desktop-nav .dropdown-container .dropdown {
	display: none;
	transition: margin-top .5s ease-in-out;
	padding: 0 .5vw .4vw;
	position: absolute;
	z-index: 4;
	background: rgba(6, 37, 57, 1);
	width: 15vw;
	margin-left: .9vw;
	box-shadow: -3px 4px 11px rgba(0, 0, 0, .25);
}

.desktop-nav .dropdown-container .dropdown a {
	display: block;
	font-weight: 400;
	padding: 0vw .5vw .7vw;
	transition: .3s;
	color: #fff;
}

.desktop-nav .dropdown-container .dropdown a:hover {
	color: #009ba4;
}

.desktop-nav .dropdown-container .dropdown a:after {
	display: none;
}

.desktop-nav .dropdown-container .dropdown p {
	cursor: default;
	padding: 0 .5vw;
	margin: .5vw 0;
}

.desktop-nav .dropdown-container .dropdown .span {
	transition: .3s;
	position: relative;
	display: inline-block;
	width: 15vw;
}

.desktop-nav .dropdown-container .dropdown .span a {
	padding: 0 .5vw .8vw;
}

.desktop-nav .dropdown-container .dropdown .span p {
	margin: .5vw 0 0;
	font-weight: 400;
}

.desktop-nav .dropdown-container .dropdown .span svg {
	position: relative;
	transition: .3s;
	top: .1vw;
	left: .2vw;
	height: 1vw;
	width: auto;
}

.desktop-nav .dropdown-container .dropdown .span .slideout {
	position: absolute;
	left: -11vw;
	background: rgba(5, 41, 63, 1);
	width: 9.5vw;
	top: 0vw;
	box-shadow: 0px 3px 35px rgba(162, 162, 162, .233);
	display: none;
	padding: .5vw 1.6vw .5vw 0vw;
	text-align: right;
}

.desktop-nav .dropdown-container .dropdown .span .slideout a {
	padding: .4vw 0;
}

.desktop-nav .dropdown.megamenu {
	width: 42vw;
	display: none;
}

.desktop-nav .dropdown.megamenu span {
	display: inline-block;
	vertical-align: top;
	padding: 0 .9vw .4vw;
	border-right: 1px solid #e1e0e3;
	margin: .5vw;
}

.desktop-nav .dropdown.megamenu span:last-of-type {
	border: none;
}

.desktop-nav .dropdown.megamenu span a {
	font-weight: 400;
}

.desktop-nav .dropdown.megamenu span p:hover {
	color: #062539;
}

.desktop-nav .dropdown-container .dropdown > a:first-child {
	padding-top: 1vw;
}

.desktop-nav .dropdown-container:hover .dropdown > a:first-child {
	margin-top: 0;
}

.desktop-nav .dropdown-container:hover .dropdown .dropdown-inner-container {
	margin-top: 0;
	transition: margin-top .4s ease-in-out;
}

.desktop-nav .dropdown-container:hover .dropdown {
	box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
}

.desktop-nav .dropdown-container .span:hover .slideout {
	display: block;
}

.desktop-nav .dropdown-container:hover .dropdown {
	display: block;
}

.desktop-nav .search.dropdown-container .dropdown {
	left: -37vw;
	width: 40vw;
}

.desktop-nav .search.dropdown-container .recentArticles {
	display: inline-block;
	width: 20vw;
}

.desktop-nav .search.dropdown-container .right {
	display: inline-block;
	width: 19vw;
	vertical-align: top;
	text-align: right;
}

.desktop-nav .search.dropdown-container .right > p > a {
	padding-right: 0;
	margin-left: 0;
}

.desktop-nav .search.dropdown-container p:hover {
	color: white;
}

.desktop-nav .search.dropdown-container .social {
	width: 19vw;
	text-align: right;
}

.desktop-nav .search.dropdown-container .social a {
	width: 1.5vw;
	display: inline-block;
}

.desktop-nav .search.dropdown-container .social svg {
	width: 1.5vw;
	color: white;
	fill: currentColor;
	display: inline-block;
	transition: color .3s ease;
}

.desktop-nav .search.dropdown-container .social svg:hover {
	color: #009ba4;
}

.desktop-nav .search.dropdown-container form input {
	background-color: rgba(0, 0, 0, 0);
	border-bottom: 2px solid white;
	color: white;
	text-align: right;
	font-family: "Karla" !important;
}

.desktop-nav .search.dropdown-container form input::placeholder {
	color: white;
	font-family: "Karla" !important;
}

.desktop-nav .search.dropdown-container form input[type="submit"] {
	width: 5vw;
	display: inline-block;
	background: white;
	color: #052438;
	text-align: center;
	margin-right: 0;
	font-family: "Karla" !important;
}

.desktop-nav .search.dropdown-container #search-box {
	width: 32vw;
	display: inline-block;
	font-family: "Karla" !important;
}

nav.mobile-header {
	display: none;
}

.mobile-nav-practice-areas-menu {
	display: none;
}

.glide__arrow {
	position: absolute;
	display: block;
	top: 40%;
	z-index: 2;
	fill: #1a3343;
	padding: 9px 12px;
	background-color: transparent;
	opacity: 1;
	cursor: pointer;
	transition: opacity 150ms ease, border 300ms ease-in-out;
	transform: translateY(-50%);
	line-height: 1;
	border: none;
}

.glide__arrow:focus {
	outline: none;
}

.glide__arrow:hover {
	border-color: white;
}

.glide__arrow--left {
	top: 19vw;
	position: absolute;
	right: 2vw;
}

.glide__arrow--right {
	right: 2vw;
	position: absolute;
	top: 17vw;
}

.glide__arrow--disabled {
	opacity: .33;
}

.glide--swipeable {
	cursor: grab;
	cursor: -moz-grab;
	cursor: -webkit-grab;
}

.glide--dragging {
	cursor: grabbing;
	cursor: -moz-grabbing;
	cursor: -webkit-grabbing;
}

.glide__arrow svg:hover {
	fill: #000;
}

.glide {
	position: relative;
	width: 100%;
	box-sizing: border-box;
}

.glide * {
	box-sizing: inherit;
}

.glide__track {
	overflow: hidden;
}

.glide__slides {
	position: relative;
	width: 100%;
	list-style: none;
	backface-visibility: hidden;
	transform-style: preserve-3d;
	touch-action: pan-Y;
	overflow: hidden;
	padding: 0;
	white-space: nowrap;
	display: flex;
	flex-wrap: nowrap;
	will-change: transform;
	justify-content: space-between;
}

.glide__slides--dragging {
	user-select: none;
}

.glide__slide {
	width: 98%;
	height: 100%;
	flex-shrink: 0;
	white-space: normal;
	user-select: none;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: transparent;
}

.glide__slide a {
	user-select: none;
	-webkit-user-drag: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.glide__arrows {
	-webkit-touch-callout: none;
	user-select: none;
}

.glide__bullets {
	-webkit-touch-callout: none;
	user-select: none;
}

.glide__bullets .glide__bullet {
	padding-top: 2vw;
}

.glide__bullets svg.glide__bullet {
	fill: #e5e5e5;
}

.glide__bullets svg.glide__bullet:active {
	fill: #707070;
}

.glide--rtl {
	direction: rtl;
}

.glide--swipeable {
	cursor: pointer !important;
}

.glide-wrapper {
	max-width: 100vw;
	overflow: hidden;
}

.titlebar {
	width: 100%;
	overflow: hidden;
	height: 32.5vw;
	background: #c4c4c4;
	position: relative;
}

.titlebar .title {
	font-size: 3.8vw;
	text-transform: capitalize;
	color: #fff;
	font-weight: 500;
	position: absolute;
	text-shadow: 0px 3px 6px rgba(0, 0, 0, .57);
	top: 23vw;
	left: 3.5vw;
	z-index: 4;
	width: 57vw;
	text-align: center;
	line-height: 1;
}

.titlebar h1 {
	margin: 0;
	z-index: 4;
	position: absolute;
	bottom: 2vw;
	left: 2vw;
}

.titlebar-image {
	width: 100%;
	z-index: 1;
	position: relative;
}

.titlebar-image img {
	width: 100%;
}

.titlebar .bluefilter {
	background-color: rgba(19, 40, 61, .55);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.titlebar .subtitle {
	text-transform: capitalize;
	color: white;
	font-weight: 600;
	font-size: 3vw;
	position: absolute;
	top: 8vw;
	z-index: 2;
	color: white;
	left: 17.3vw;
	border-top: 0;
	padding-top: .5vw;
	text-shadow: 0px 3px 6px rgba(0, 0, 0, .57);
}

.titlebar .motto {
	color: white;
	position: absolute;
	z-index: 2;
	font-family: "Spectral";
	font-size: 1.4vw;
	width: 56vw;
	line-height: 1.2;
	top: 12.5vw;
	left: 3.1vw;
	text-align: center;
	text-shadow: 0px 3px 6px rgba(0, 0, 0, .57);
}

.titlebar .slash {
	position: absolute;
	z-index: 2;
	bottom: 12.5vw;
	background: #014888;
	clip-path: polygon(0% 0%, 83% 0%, 100% 100%, 17% 100%);
	left: 19vw;
	padding: .5vw 5vw;
	color: white;
	font-size: 1.5vw;
	font-weight: 600;
	font-family: "Karla";
	text-transform: capitalize;
}

.titlebar .group-image {
	position: absolute;
	z-index: 2;
	border: .2vw solid white;
	width: 36vw;
	right: 2vw;
	top: 9vw;
}

.titlebar .slash.secondary {
	display: none;
}

.titlebar .group-image.secondary {
	display: none;
}

.titlebar .reviews-client {
	position: absolute;
	right: 11vw;
	bottom: 3.5vw;
	z-index: 2;
}

.main-content-container {
	padding: 2.5vw 8vw 4vw 2.5vw;
	display: inline-block;
	width: 53vw;
	vertical-align: top;
}

.main-content-container a {
	color: #014888;
	transition: .3s;
}

.main-content-container a:hover {
	color: #009ba4;
}

.main-content-container.full {
	width: auto;
	display: block;
	padding: 2vw 8vw 4vw;
}

.main-left {
	display: inline-block;
	padding: 3.8vw 1vw 0 8vw;
	width: 30vw;
}

.main-left .form {
	width: 23vw;
	margin-bottom: 4vw;
}

.main-left .form .input-1 {
	width: 40.6%;
}

.main-left .form .button.dark {
	left: 17%;
}

.main-left .reviews-client {
	margin-bottom: 5vw;
}

.main-content-container h1 {
	font-size: 2.6vw;
}

.main-content-container h2 {
	font-size: 2vw;
}

.main-content-container img {
	width: 72%;
	height: auto;
}

.main-content-container .phone-button img {
	width: 1.5vw;
	height: auto;
}

.main-content-container .image-small {
	width: 12vw;
	height: auto;
	float: left;
}

.main-content-container iframe.embedded-location-map {
	width: 100%;
	height: 36vw;
}

.section-gray-background {
	margin-bottom: 3vw;
	width: 53vw;
	background-color: rgba(245, 245, 245, .82);
	border-radius: 10px;
	padding: 1vw 2vw 1vw;
	box-shadow: -3px 4px 11px rgba(0, 0, 0, .25);
}

.search-page-search #search-box {
	border: 2px solid;
}

.search-page-search input[type="submit"] {
	background: #009ba4;
	color: white;
	border-radius: 100px;
	width: auto;
	padding: 0 3vw;
	text-transform: uppercase;
	font-family: "Karla" !important;
	font-weight: 700;
}

#search-results {
	padding-top: 2vw;
}

#search-results li::before {
	display: none;
}

.main-content-container.attorneys {
	display: flex;
}

.main-content-container.attorneys .badges-box {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	padding-top: 1vw;
}

.main-content-container.attorneys .badges-box img {
	width: 16vw;
	height: auto;
	padding: 1.5vw 0;
}

.main-content-container.attorneys .badges-box .resize {
	width: 10vw;
}

.main-content-container.attorneys .left {
	width: 30vw;
	text-align: right;
	padding-top: 5vw;
}

.main-content-container.attorneys .right {
	width: 47vw;
	padding-left: 3vw;
	padding-top: 4vw;
}

.main-content-container.attorneys .grey-line::before {
	top: -2vw;
}

.main-content-container.attorneys h1, .main-content-container.attorneys .header {
	margin: 0;
}

.main-content-container.attorneys h1 {
	font-size: 1.86vw;
}

.main-content-container.attorneys .header {
	color: #009ba4;
	font-size: 1.7vw;
	line-height: 1.2;
}

.main-content-container.attorneys .profile-image {
	width: 24vw;
	height: auto;
	margin-top: 2vw;
	border-radius: .8vw;
}

.main-content-container.attorneys .profile-badge {
	display: block;
	width: 4vw;
	height: auto;
}

.main-content-container.full.our-team {
	padding-bottom: 0;
}

.main-content-container.full.our-team .top {
	padding: 1vw 6vw;
	display: flex;
}

.main-content-container.full.our-team .top a {
	color: #009ba4;
	transition: .3s;
}

.main-content-container.full.our-team .top a:hover {
	color: #014888;
}

.main-content-container.full.our-team .top .left {
	text-align: right;
	padding-top: 2vw;
	width: 22vw;
}

.main-content-container.full.our-team .top .left h1 {
	font-size: 1.8vw;
}

.main-content-container.full.our-team .top .grey-line::before {
	top: 1vw;
}

.main-content-container.full.our-team .top .right {
	padding-left: 3vw;
	width: 46vw;
	padding-top: 2vw;
}

.main-content-container.full.our-team .profile {
	position: relative;
	width: 19vw;
	height: 23vw;
	overflow: hidden;
	border-radius: 9px;
	margin: 1.8vw 1vw;
	transition: .3s;
	display: inline-block;
	vertical-align: top;
}

.main-content-container.full.our-team .profile .profile-image {
	width: 100%;
	height: 100%;
}

.main-content-container.full.our-team .profile .text-box {
	text-align: left;
	background-color: rgba(1, 72, 136, .75);
	color: #fff;
	position: absolute;
	bottom: 0;
	width: 90%;
	height: 4.8vw;
	padding: 0vw 1vw 0vw;
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
}

.main-content-container.full.our-team .profile .text-box p {
	margin: 0;
	font-family: "Karla";
	text-transform: capitalize;
	font-size: 1.39vw;
}

.main-content-container.full.our-team .profile .text-box p.bold {
	font-weight: 500;
}

.main-content-container.full.our-team .profile .text-box p.italic {
	font-style: italic;
	position: relative;
	top: -.3vw;
	font-weight: 400;
	line-height: 1;
	font-size: 1.18vw;
}

.main-content-container.full.our-team .header {
	width: 19vw;
	height: 23vw;
	margin: .6vw;
}

.main-content-container.full.our-team .middle {
	padding-top: 4.5vw;
}

.main-content-container.full.our-team .bottom {
	background: linear-gradient(rgba(230, 230, 230, 0) 30%, #e6e6e6 70%);
	margin-left: -8vw;
	margin-right: -8vw;
	padding: 9.5vw 6vw 4vw;
}

.main-content-container.full.our-team .bottom, .main-content-container.full.our-team .middle {
	text-align: center;
	position: relative;
}

.main-content-container.full.our-team .attorney-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.main-content-container.full.our-team .attorney-group .row {
	display: block;
	width: 100%;
}

.main-content-container.full.our-team .green-line::before {
	top: 3.5vw;
	left: 50%;
	height: 3%;
}

.main-content-container.full.our-team .subheader {
	font-size: 1.8vw;
	margin-bottom: 1vw;
	padding-left: 0;
	position: relative;
}

.main-content-container.full.our-team .bottom .subheader.green-line::before {
	top: 3.5vw;
	height: 2%;
}

.main-content-container.full.our-team .bottom .subheader {
	margin-top: 1vw;
}

.main-content-container.full.our-team .profile:hover {
	scale: 102%;
}

.main-content-container.full.our-team .middle.green-line::before {
	height: 6%;
	top: 0;
}

.testimonials {
	padding: 3vw 6vw;
	position: relative;
	overflow: hidden;
}

.subheader {
	padding-left: 4vw;
}

.subheader.green-line::before {
	top: 5.4vw;
	height: 8%;
	left: 8vw;
}

.testimonials.green-clip::after {
	width: 107%;
	z-index: 1;
	height: 100.5%;
}

.testimonial-glider {
	z-index: 2;
	position: relative;
}

.testimonial-glider .slick-slider div {
	transition: none;
}

.testimonial-glider .slick-list {
	padding: 1vw 0;
}

.testimonial-glider .box {
	width: 38vw;
	margin: 0 1.5vw;
	background-color: rgba(245, 245, 245, .82);
	border-radius: 10px;
	padding: 1vw 2vw 1vw;
	box-shadow: -3px 4px 11px rgba(0, 0, 0, .25);
}

.testimonial-glider .box p {
	font-size: 1.6vw;
	font-family: "Karla";
	font-weight: 700;
}

.testimonial-glider .box p.title {
	font-size: 1.2vw;
	text-transform: uppercase;
}

.main-content-container.full.contact {
	padding-top: 5vw;
	position: relative;
}

.main-content-container.full.contact a {
	color: #009ba4;
	transition: .3s;
}

.main-content-container.full.contact a:hover {
	color: #014888;
}

.main-content-container.full.contact .left {
	text-align: right;
	padding-top: 1.5vw;
	width: 31vw;
	margin-right: 4vw;
	padding-left: 3vw;
	display: inline-block;
	vertical-align: top;
}

.main-content-container.full.contact .left h1 {
	font-size: 1.8vw;
	margin-bottom: .5vw;
}

.main-content-container.full.contact .left .phone-button {
	display: block;
}

.main-content-container.full.contact .grey-line::before {
	top: 1vw;
	width: 15%;
}

.main-content-container.full.contact .form {
	padding-left: 2vw;
	width: 38vw;
	padding-top: 2vw;
	display: inline-block;
}

.main-content-container.full.contact form {
	width: 39vw;
}

.main-content-container.full.contact form input.input-1 {
	width: 43%;
}

.main-content-container.full.contact form input#website {
	display: none;
}

.main-content-container.full.contact form button.button.dark {
	left: 29%;
}

.main-content-container.full.contact form textarea {
	height: 7vw;
}

.main-content-container.full.contact.green-clip::after {
	width: 79%;
}

.main-content-container iframe {
	width: 77%;
	height: 23vw;
}

.main-content-container iframe.tall {
	height: 35vw;
	display: block;
	margin: auto;
}

.testimonial-page h1 {
	font-size: 1.84vw;
	padding-top: 1vw;
	padding-bottom: 2vw;
}

.testimonial-page .testimonial-box {
	display: inline-block;
	vertical-align: top;
	margin-bottom: 3vw;
	width: 36vw;
	background-color: rgba(245, 245, 245, .82);
	border-radius: 10px;
	padding: 1vw 2vw 1vw;
	box-shadow: -3px 4px 11px rgba(0, 0, 0, .25);
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
}

.testimonial-page .testimonial-box p {
	font-family: "Karla";
	font-size: 1.3vw;
}

.testimonial-page .test-columns {
	column-count: 2;
}

.testimonial-page .testimonial-author {
	text-transform: uppercase;
	font-size: 1.5vw;
}

.testimonial-page .showPostsButton {
	width: 10%;
	margin: 0 auto;
	position: relative;
	top: 2vw;
}

.reviews-client {
	display: inline-block;
	margin-top: -1vw;
	margin-left: 5.3vw;
	vertical-align: top;
	background: white;
	box-shadow: 0px 3px 10px rgba(0, 0, 0, .16);
	background-color: #fff;
	width: 15vw;
	padding: 0vw .5vw;
	height: 3.8vw;
	text-align: center;
	transition: .3s;
	position: relative;
	font-family: "Karla";
}

.reviews-client .main-review {
	font-weight: 700;
	color: #9aa0a6;
	font-size: 1.3vw;
}

.reviews-client .g-logo {
	width: 2.5vw;
	height: auto;
	position: absolute;
	left: .7vw;
	top: .6vw;
}

.reviews-client .total {
	color: black;
	margin-top: -.3vw;
	font-size: 1vw;
	position: relative;
	top: -.2vw;
	display: block;
	font-family: "Karla";
}

.reviews-client .stars {
	color: #fc0;
	padding: 0 0 0 1vw;
	font-size: 1.7vw;
	line-height: 1;
	position: relative;
	top: .1vw;
}

.reviews-client p {
	padding-top: 0;
	height: 0;
	margin: 0;
	padding-left: 2vw;
}

.reviews-client .read-reviews {
	font-size: 1.6vw;
	color: white;
	font-family: "Karla";
	position: absolute;
	bottom: 0;
	transition: .3s;
	left: 1.5vw;
	text-shadow: 1px 1px 3px black;
}

.reviews-client:hover {
	box-shadow: 0px 8px 15px rgba(0, 0, 0, .16);
	scale: 101%;
}

.homepage section#sliderHome.one .header-glider .text-box .reviews-client:hover .read-reviews {
	color: #009ba4;
}

a .reviews-client {
	text-decoration: none;
}

.faqs .main-content-container {
	padding: 2vw 14vw 2vw;
}

.faqs .left-faq {
	display: inline-block;
	width: 16vw;
	text-align: right;
	padding-top: 4vw;
}

.faqs .left-faq h1 {
	font-size: 1.7vw;
}

.faqs .left-faq a {
	color: #fff;
}

.faqs .left-faq .button {
	position: relative;
	top: 1.5vw;
}

.faqs .left-faq.grey-line::before {
	top: 3vw;
}

.faqs .right-faq {
	display: inline-block;
	padding-left: 2.5vw;
	vertical-align: top;
	width: 51vw;
	padding-top: 5vw;
}

.faqs .right-faq p {
	font-family: "Karla";
	font-size: 1.3vw;
	margin: 0;
}

.faqs .faq-box {
	border-top: 2px solid #ccc;
}

.faqs .faq-box p {
	font-family: "Spectral";
	margin: 1.4vw 0;
}

.faqs .faq-box .question {
	font-size: 1.4vw;
	font-weight: 600;
	cursor: pointer;
}

.faqs .faq-box .answer {
	display: none;
}

.faqs .faq-box:first-of-type {
	margin-top: 3.5vw;
}

.faqs .faq-box.active .answer {
	display: block;
	padding-bottom: 3vw;
}

.faqs .faq-box.active .answer p {
	font-size: 1.07vw;
}

.faqs .faq-box .question::after {
	content: "+";
	font-size: 1.5vw;
	padding-left: 1vw;
}

.faqs .faq-box.active .question::after {
	content: "-";
	font-size: 1vw;
	padding-left: 1vw;
}

.main-content-container {
	padding: 3vw 3vw 5vw 1.5vw;
}

.main-content-container article {
	border-radius: 1vw;
	background: linear-gradient(rgba(230, 230, 230, 0) 30%, #e6e6e6 70%);
	width: 26vw;
	height: 35vw;
	margin: .8vw;
	display: inline-block;
	vertical-align: top;
	position: relative;
	overflow: hidden;
}

.main-content-container article .post-meta {
	padding: 1.6vw 2vw .5vw;
	font-size: 1vw;
}

.main-content-container article .post-meta p, .main-content-container article .post-meta a {
	color: #014888;
	font-size: 1.08vw;
	display: inline-block;
	margin: 0;
	text-transform: capitalize;
	font-family: "Karla";
	text-decoration: none;
}

.main-content-container article h2 a {
	text-decoration: none;
	font-size: 1.6vw;
	color: #13283d;
	text-transform: capitalize;
	font-family: "Karla";
	line-height: 1;
}

.main-content-container article h2 {
	margin: 0;
	padding: 0 2vw;
	line-height: 1;
}

.main-content-container article picture {
	height: 18vw;
	width: 26vw;
	position: relative;
	display: block;
}

.main-content-container article picture img {
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: cover;
	left: 0;
	top: 0;
}

.main-content-container article .button.green {
	color: #fff;
	position: absolute;
	bottom: 2vw;
	left: 2vw;
}

.main-content-container .showPostsButton {
	width: 12%;
	position: relative;
	top: 2vw;
	left: 1vw;
	cursor: pointer;
}

.video-container {
	border-radius: 7px;
	background: linear-gradient(rgba(230, 230, 230, 0) 30%, #e6e6e6 70%);
	width: 25vw;
	height: 31vw;
	margin: .8vw;
	display: inline-block;
	vertical-align: top;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.video-container img {
	width: 100%;
}

.video-container h2 {
	padding: 0 2vw 1vw;
}

.video-container .play-arrow {
	width: 2.5vw;
	height: auto;
	position: absolute;
	right: 2vw;
	bottom: 1vw;
}

.video-popup {
	position: fixed;
	left: 25%;
	top: calc(50vh - 15vw);
	z-index: 99;
}

.video-popup iframe {
	width: 52vw;
	height: 30vw;
	position: relative;
}

.community blockquote {
	text-align: center;
}

.community .community-box {
	display: flex;
	align-items: center;
	padding-top: 2vw;
}

.community .community-box .left {
	width: 55vw;
	padding: 0 3vw;
}

.community .community-box img {
	border: 25px solid #062539;
	height: 30vw;
	width: auto;
}

.community .community-box:nth-child(odd) {
	flex-direction: row-reverse;
}

.sidebar {
	width: 100%;
	margin-bottom: 3vw;
	border-radius: 9px;
	background-color: #13283d;
	padding-bottom: 1.5vw;
}

.sidebar .sidebar-title {
	margin: 0;
	font-size: 1.6vw;
	margin-bottom: 1vw;
	color: #fff;
	padding: 2.5vw 2.8vw 2vw;
	border-bottom: 1px solid #fff;
	font-family: "Karla";
	text-transform: uppercase;
}

.sidebar .sidebar-title:last-of-type {
	border-top: 1px solid white;
	margin-top: 1vw;
	padding-bottom: 2.5vw;
}

.sidebar .dropdown {
	display: none;
}

.sidebar a, .sidebar p {
	display: block;
	font-size: 1.3vw;
	transition: color;
	text-decoration: none;
	text-transform: capitalize;
	color: #fff;
	font-family: "Karla";
	padding: 2.3% 3% 2.3% 11%;
}

.sidebar a:hover {
	cursor: pointer;
	color: #009ba4;
	text-decoration: none;
}

.viewAll {
	overflow: hidden;
	height: auto;
	transition: height .3s ease;
}

.dropdown-chev {
	float: left;
	height: 4.8vw;
	position: relative;
	right: 4vw;
	top: 3vw;
}

.sidebar .subtitle {
	color: #fff;
}

.button-wrapper {
	position: relative;
}

.button-wrapper a {
	display: inline-block;
}

.button-wrapper .open-button {
	font-size: 1.3vw;
	transform: rotateX(180deg);
	transition: transform .5s ease;
	color: #fff;
	background-color: transparent;
	cursor: pointer;
	display: inline-block;
	font-family: "Raleway";
	font-weight: 400;
	padding-left: 1vw;
	position: absolute;
	top: .6vw;
}

.sidebar .dropdown-container {
	position: relative;
}

.sidebar .dropdown-container .dropdown {
	padding: 0 1vw 0;
}

.sidebar .open-button, .sidebar .close-button {
	transition: .3s;
}

footer {
	background: #13283d;
}

footer .banner .left {
	width: 41vw;
}

footer .banner .left p b {
	font-size: 1.4vw;
	padding-bottom: .4vw;
}

footer .top {
	padding: 2.7vw 8vw 3.3vw;
	display: flex;
	justify-content: space-between;
}

footer .top img {
	width: 22vw;
	height: auto;
}

footer .top .socials {
	padding-top: 2vw;
}

footer .top .socials svg {
	fill: #fff;
	width: 30px;
	height: auto;
	margin: 0 1vw;
	vertical-align: middle;
	transition: .3s;
}

footer .top .socials svg:hover {
	fill: #009ba4;
}

footer .middle {
	padding: 2.8vw 1.1vw;
	margin: 0 6vw 2vw;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #fff;
}

footer .middle .location {
	width: 17vw;
	text-align: center;
	color: #fff;
	height: 10vw;
}

footer .middle .location a {
	color: #009ba4;
	font-style: italic;
	text-decoration: none;
	position: relative;
	top: .7vw;
	transition: .3s;
}

footer .middle .location a:hover {
	color: #398fc4;
}

footer .middle .location p {
	margin: 0;
}

footer .middle .location img {
	height: 1.5vw;
	width: auto;
}

footer .bottom {
	text-align: center;
	padding-bottom: 1.8vw;
}

footer .bottom a {
	color: #fff;
	padding: 0 1.3vw;
	text-decoration: none;
	font-family: "Karla";
	text-transform: uppercase;
	font-weight: 500;
	transition: .3s;
}

footer .bottom a:hover {
	color: #009ba4;
}

footer .copyright {
	padding: 1.5vw 3vw;
	color: white;
	position: relative;
	height: auto;
	border-top: 1px solid #fff;
	text-align: center;
	font-family: "Karla";
}

footer .copyright img {
	height: 1.1vw;
	width: auto;
	padding-left: .3vw;
}

footer .copyright a, footer .copyright p {
	color: white;
	display: inline-block;
	margin: 0;
	transition: .3s;
	text-decoration: none;
	font-family: "Karla";
}

footer .copyright a:hover {
	color: #009ba4;
}

.text-green {
	color: #009ba4;
}

.home-slider-media {
	background-color: #0f1f30;
	padding: 4vw 0;
}

.video-testimonials-item {
	padding: 10px 0;
}

.video-testimonials .video-testimonials-item .video-testimonials-img {
	width: 100% !important;
	max-width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 10px;
}

@media (min-width: 1500px) {}

.video-testimonials .video-testimonials-item .video-testimonials-description {
	padding: 10px 20px;
}

.video-testimonials .video-testimonials-item .video-testimonials-link {
	position: relative;
	text-decoration: none;
	display: block;
	transition: transform .5s ease-in-out;
	transform: scale(1);
}

.video-testimonials .video-testimonials-item:hover .video-testimonials-link {
	transform: scale(1.01);
}

.case-results-item {
	border: 1px solid #fff;
	border-radius: 10px;
	padding: 4vw;
	text-align: center;
}

.case-results-revenue {
	font-size: 80px;
	display: block;
	font-weight: 100;
}

.case-results-type {
	font-size: 24px;
	display: block;
	text-transform: uppercase;
	color: #009ba4;
}

.case-results-link {
	text-align: center;
	margin-top: 30px;
}

.button-block {
	display: block;
}

.sidebar-info {
	background-color: #13283d;
	padding: 2vw;
	border-radius: 10px;
	color: #fff;
	overflow: hidden;
}

.sidebar-info-content {
	position: relative;
	z-index: 10;
}

.sidebar-info-phone, .sidebar-info-location {
	color: #fff;
	display: block;
	padding-left: 40px;
	position: relative;
}

.sidebar-info-icon {
	position: absolute;
	top: 0;
	left: 0;
}

.sidebar-info-inner {
	padding: 20px 0;
}

.sidebar-info {
	background-image: var(--sidebar-team-bg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.sidebar-team-spotlight {
	margin: 40px 0;
}

.team-item, .sidebar-team-item {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.team-item {
	margin: 0 20px;
}

.team-img, .sidebar-team-img {
	width: 100%;
	height: auto;
	max-width: 100%;
	display: block;
}

.team-title, .sidebar-team-title {
	margin: 0;
	font-family: "Karla";
	text-transform: capitalize;
	font-size: 1.25rem;
	font-weight: 500;
}

.team-position, .sidebar-team-position {
	margin: 0;
	font-family: "Karla";
	text-transform: capitalize;
	font-style: italic;
	position: relative;
	top: -.3vw;
	font-weight: 400;
	line-height: 1;
	font-size: 1rem;
}

.team-content, .sidebar-team-content {
	text-align: left;
	background-color: rgba(1, 72, 136, .75);
	color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
}

.sidebar-team-link, .team-link {
	display: block;
	transform: scale(1);
	transition: transform .5s ease-in-out;
}

.sidebar-team-item:hover .sidebar-team-link, .team-item:hover .team-link {
	transform: scale(1.01);
}

.home-our-team {
	color: #fff;
	background-image: var(--team-bg);
	background-repeat: no-repeat;
	background-size: cover;
}

.block-overlay {
	position: relative;
}

.text-truncate p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hr-green {
	border-color: #009ba4;
}

.blog-posts .slick-track {
	display: flex;
}

.blog-posts .carousel-item {
	display: flex !important;
	float: none !important;
	height: auto !important;
	min-height: none !important;
}

.blog-item {
	padding: 40px;
	background-color: #112336;
	border-bottom: 5px solid #009ba4;
}

.blog-title a {
	text-decoration: none;
	font-family: "Karla";
	color: #fff;
	font-size: 25px;
	font-weight: 400;
}

.blog-date {
	text-transform: uppercase;
	font-weight: 700;
	font-family: "Karla";
}

.blog-btn {
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	font-family: "Karla";
	font-weight: bold;
}

.bg-white {
	background-color: #fff;
}

.bg-dark-blue {
	background-color: #13273d;
}

.text-white {
	color: #fff;
}

.homepage .offset {
	padding: 5vw 8vw;
	position: relative;
}

.homepage .offset .top {
	position: relative;
	z-index: 10;
}

@media (min-width: 1024px) {
	.homepage .offset {
		padding: 0 0 5vw 8vw;
	}
	
	.homepage .offset .top {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 4vw 0;
	}
	
	.homepage .offset .block-left {
		flex-basis: 35%;
		text-align: right;
	}
	
	.homepage .offset .block-right {
		padding: 0 6vw;
		flex-basis: 65%;
	}
}

.homepage .even {
	padding: 8vw;
	position: relative;
}

@media (min-width: 1024px) {
	.homepage .even {
		padding: 0 5vw 5vw 5vw;
	}
}

.carousel-default {
	margin: 0 -10px;
}

.carousel-default .carousel-item {
	position: relative;
	padding: 0 10px;
}

.slick-dots {
	position: static;
	margin-top: 20px;
}

.slick-dots li button:before {
	font-size: 20px;
}

.slick-dots li:before {
	display: none;
}

.carousel-white .slick-dots li button:before, .carousel-white .slick-dots li.slick-active button:before {
	color: #fff;
}

.reviews {
	height: auto !important;
	padding: 6vw 8vw !important;
}

.reviews #slider {
	width: 50% !important;
	padding: 0 !important;
}

.reviews img {
	margin: 0 !important;
	width: 100% !important;
}

@media (min-width: 1024px) {
	.reviews-top {
		display: flex;
		gap: 100px;
		margin-bottom: 4vw;
	}
	
	.reviews img {
		width: 50% !important;
	}
}
