.nice-select {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	background-color: #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: solid 1px #e8e8e8;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	float: left;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	height: 42px;
	line-height: 40px;
	outline: none;
	padding-left: 18px;
	padding-right: 30px;
	position: relative;
	text-align: left !important;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	width: auto
}

.nice-select:hover {
	border-color: #dbdbdb
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
	border-color: #999
}

.nice-select:after {
	border-bottom: 2px solid #999;
	border-right: 2px solid #999;
	content: '';
	display: block;
	height: 5px;
	margin-top: -4px;
	pointer-events: none;
	position: absolute;
	right: 12px;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	-moz-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	-o-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.15s ease-in-out;
	-o-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	width: 5px
}

.nice-select.open:after {
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg)
}

.nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-moz-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	-o-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0)
}

.nice-select.disabled {
	border-color: #ededed;
	color: #999;
	pointer-events: none
}

.nice-select.disabled:after {
	border-color: #cccccc
}

.nice-select.wide {
	width: 100%
}

.nice-select.wide .list {
	left: 0 !important;
	right: 0 !important
}

.nice-select.right {
	float: right
}

.nice-select.right .list {
	left: auto;
	right: 0
}

.nice-select.small {
	font-size: 12px;
	height: 36px;
	line-height: 34px
}

.nice-select.small:after {
	height: 4px;
	width: 4px
}

.nice-select.small .option {
	line-height: 34px;
	min-height: 34px
}

.nice-select .list {
	background-color: #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	-moz-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-top: 4px;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	-o-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: scale(0.75) translateY(-21px);
	-moz-transform: scale(0.75) translateY(-21px);
	-ms-transform: scale(0.75) translateY(-21px);
	-o-transform: scale(0.75) translateY(-21px);
	transform: scale(0.75) translateY(-21px);
	-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	-o-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	-moz-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	z-index: 9
}

.nice-select .list:hover .option:not(:hover) {
	background-color: transparent !important
}

.nice-select .option {
	cursor: pointer;
	font-weight: 400;
	line-height: 40px;
	list-style: none;
	min-height: 40px;
	outline: none;
	padding-left: 18px;
	padding-right: 29px;
	text-align: left;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
	background-color: #f6f6f6
}

.nice-select .option.selected {
	font-weight: bold
}

.nice-select .option.disabled {
	background-color: transparent;
	color: #999;
	cursor: default
}

.no-csspointerevents .nice-select .list {
	display: none
}

.no-csspointerevents .nice-select.open .list {
	display: block
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent !important
}

*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

*:focus {
	outline: none !important
}

[role="button"] {
	cursor: pointer !important
}

a {
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	color: #0033ff;
}

a.link-color {
/*	color: #426191;*/
	color: #0033ff;
}

a:hover {
	color: #00ced3;
	text-decoration: underline
}

a:hover.link-color {
	color: #00ced3;
}

body {
	font-size: 13px;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	min-height: 100%;
	line-height: 1.2;
	margin: 0;
	position: relative;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale
}

#main {
	min-height: 100vh
}

img {
	border-style: none;
	vertical-align: middle
}

img {
	display: block;
	height: auto;
	max-width: 100%
}

.img-fluid {
	height: auto;
	max-width: 100%
}

.d-block {
	display: block !important
}

.sp-container-fluid {
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%
}

.sp-row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px
}

.sp-container {
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%
}

@media (min-width: 1365px) {
	.sp-container {
		max-width: 1335px
	}
}

@media (min-width: 1400px) {
	.sp-container {
		max-width: 1370px
	}
}

@media (min-width: 1600px) {
	.sp-container {
		max-width: 1450px;
		margin-left: 100px
	}
}

.page-banner-bg {
	background-color: #0033a1;
	background: -webkit-linear-gradient(29deg, #0033a1 34%, #84d328 83%, #ffff4c 97%);
	background: -moz-linear-gradient(29deg, #0033a1 34%, #84d328 83%, #ffff4c 97%);
	background: -o-linear-gradient(29deg, #0033a1 34%, #84d328 83%, #ffff4c 97%);
	background: linear-gradient(61deg, #0033a1 34%, #84d328 83%, #ffff4c 97%)
}

.general-banner-all .general-banner {
	position: relative
}

.general-banner-all .general-banner .general-banner-title {
	padding-bottom: 25px;
	padding-top: 65px;
	position: relative
}

.general-banner-all .general-banner .general-banner-title h1 {
	color: white;
	font-size: 84px;
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	line-height: 94px;
	margin: 0
}

@media (max-width: 767px) {
	.general-banner-all .general-banner .general-banner-title h1 {
		font-size: 50px;
		line-height: 60px
	}
}

.general-banner-all .general-banner .general-banner-title .social-icon {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	right: 0;
	top: 30px
}

@media (min-width: 768px) {
	.general-banner-all .general-banner .general-banner-title .social-icon {
		right: 12%
	}
}

.general-banner-all .general-banner .general-banner-title .social-icon a {
	opacity: 0.8;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.general-banner-all .general-banner .general-banner-title .social-icon a:not(:last-child) {
	margin-right: 20px
}

.general-banner-all .general-banner .general-banner-title .social-icon a:hover {
	opacity: 1
}

.feature-card {
	background-attachment: scroll;
	background-color: #0033a1;
	background-image: -webkit-linear-gradient(60deg, cyan 5%, #84d336 60%, #ffff4c 100%);
	background-image: -moz-linear-gradient(60deg, cyan 5%, #84d336 60%, #ffff4c 100%);
	background-image: -o-linear-gradient(60deg, cyan 5%, #84d336 60%, #ffff4c 100%);
	background-image: linear-gradient(30deg, cyan 5%, #84d336 60%, #ffff4c 100%);
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 30px;
	max-width: 400px;
	min-height: 300px;
	overflow: hidden;
	padding: 30px;
	width: 100%
}

@media (min-width: 768px) and (max-width: 1023px) {
	.feature-card {
		max-width: -webkit-calc(50% - 15px);
		max-width: -moz-calc(50% - 15px);
		max-width: calc(50% - 15px);
		float: left
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.feature-card:nth-child(2n+1) {
		margin-right: 30px
	}
}

@media (max-width: 575px) {
	.feature-card {
		padding: 20px 15px
	}
}

.feature-card h5 {
	color: white;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	line-height: 20px;
	margin-bottom: 25px;
	margin-top: 0;
	padding-bottom: 1rem;
	position: relative;
	text-transform: uppercase
}

.feature-card h5:after {
	background-color: #00ced3;
	content: '';
	height: 5px;
	left: 0;
	position: absolute;
	top: 100%;
	width: 50px
}

.feature-card h2 {
	-moz-box-orient: vertical;
	-webkit-box-orient: vertical;
	box-orient: vertical;
	color: white;
	font-size: 24px;
	display: inline-block;
	display: -moz-box;
	display: -webkit-box;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 700;
	height: 84px;
	line-height: 28px;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	margin-bottom: 0;
	margin-top: 0;
	overflow: hidden;
	word-break: break-word;
	word-wrap: break-word;
	width: 100%
}

.feature-card h4 {
	color: white;
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	line-height: 24px;
	margin: 15px 0 0
}

.feature-card:hover {
	text-decoration: none !important
}

.hdrWrap {
	min-height: auto
}

@media (max-width: 1199px) {
	.hdrWrap header {
		padding-left: 15px;
		padding-right: 15px
	}
}

.hdrWrap .hdrInner {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-bottom: 0
}

.hdrWrap .hdrInner .hdrTop {
	max-width: 400px
}

.hdrWrap .hdrInner .hdrTop a#logo {
	display: block;
	margin-bottom: 20px;
	margin-left: 0;
	margin-right: 20px;
	margin-top: 20px;
	padding: 0
}

@media (max-width: 1364px) {
	.hdrWrap .hdrInner .hdrTop a#logo {
		max-width: 200px
	}
}

@media (max-width: 1080px) {
	.hdrWrap .hdrInner .hdrTop a#logo {
		max-width: 160px
	}
}

.hdrWrap .hdrInner .openClose {
	background-color: rgba(0, 0, 0, 0);
	color: #0033a1;
	font-size: 42px;
	padding: 0
}

@media (max-width: 991px) {
	.hdrWrap .hdrInner .openClose {
		display: block;
		margin-top: 0
	}
}

.hdrWrap .hdrInner .hdrRight {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	-moz-box-orient: horizontal;
	-moz-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-moz-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

@media (max-width: 991px) {
	.hdrWrap .hdrInner .hdrRight {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		width: 100%
	}
}

.hdrWrap .hdrInner .hdrRight .hdrSearch {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative
}

@media (max-width: 991px) {
	.hdrWrap .hdrInner .hdrRight .hdrSearch {
		width: 100%
	}
}

.hdrWrap .hdrInner .hdrRight .hdrSearch .search-toggler {
	cursor: pointer;
	margin-left: 20px;
	position: relative
}

@media (min-width: 1600px) {
	.hdrWrap .hdrInner .hdrRight .hdrSearch .search-toggler {
		margin-left: 63px
	}
}

@media (max-width: 991px) {
	.hdrWrap .hdrInner .hdrRight .hdrSearch .search-toggler {
		display: none
	}
}

.hdrWrap .hdrInner .hdrRight .hdrSearch .searchForm {
	padding: 0 0 15px;
	max-width: inherit;
	width: 100%
}

@media (min-width: 992px) {
	.hdrWrap .hdrInner .hdrRight .hdrSearch .searchForm {
		background-color: #f0f2f2;
		-webkit-border-bottom-left-radius: 5px;
		-moz-border-radius-bottomleft: 5px;
		border-bottom-left-radius: 5px;
		-webkit-border-bottom-right-radius: 5px;
		-moz-border-radius-bottomright: 5px;
		border-bottom-right-radius: 5px;
		-webkit-box-shadow: 0 5px 5px -5px #333;
		-moz-box-shadow: 0 5px 5px -5px #333;
		box-shadow: 0 5px 5px -5px #333;
		opacity: 0;
		top: 100%;
		padding: 15px;
		position: absolute;
		right: 0;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
		visibility: hidden;
		width: 320px
	}
}

.hdrWrap .hdrInner .hdrRight .hdrSearch .searchForm input[type="text"] {
	background-image: none;
	background-color: white;
	border: 1px solid #e5e5e5;
	cursor: auto;
	height: 40px;
	width: 100%
}

@media (min-width: 991px) {
	.hdrWrap .hdrInner .hdrRight .hdrSearch:hover .searchForm {
		opacity: 1;
		visibility: visible
	}
}

.hdrWrap .hdrInner .hdrRight .menuBox {
	padding-top: 0
}

@media (min-width: 992px) {
	.hdrWrap .hdrInner .hdrRight .menuBox {
		display: block !important
	}
}

@media (max-width: 991px) {
	.hdrWrap .hdrInner .hdrRight .menuBox {
		background-color: #0067ab;
		display: none;
		left: 0;
		position: absolute;
		top: 100%;
		width: 100%
	}
}

.hdrWrap .hdrInner .hdrRight .menuBox #navcontainer #navlist {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row
}

@media (max-width: 991px) {
	.hdrWrap .hdrInner .hdrRight .menuBox #navcontainer #navlist {
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		-moz-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
}

@media (max-width: 991px) {
	.hdrWrap .hdrInner .hdrRight .menuBox #navcontainer #navlist li {
		width: 100%
	}
}

@media (min-width: 992px) {
	.hdrWrap .hdrInner .hdrRight .menuBox #navcontainer #navlist li:not(:last-child) {
		margin-right: 18px
	}
}

@media (min-width: 1130px) {
	.hdrWrap .hdrInner .hdrRight .menuBox #navcontainer #navlist li:not(:last-child) {
		margin-right: 27px
	}
}

@media (min-width: 1600px) {
	.hdrWrap .hdrInner .hdrRight .menuBox #navcontainer #navlist li:not(:last-child) {
		margin-right: 46px;
	}
}

.hdrWrap .hdrInner .hdrRight .menuBox #navcontainer #navlist li a {
	color: #426192;
	font-size: 15px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	padding: 10px 15px;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	white-space: nowrap;
}

@media (min-width: 992px) {
	.hdrWrap .hdrInner .hdrRight .menuBox #navcontainer #navlist li a {
		padding: 0
	}
}

@media (max-width: 1199px) and (min-width: 992px) {
	.hdrWrap .hdrInner .hdrRight .menuBox #navcontainer #navlist li a {
		font-size: 14px
	}
}

@media (max-width: 991px) {
	.hdrWrap .hdrInner .hdrRight .menuBox #navcontainer #navlist li a {
		color: white
	}
}

.hdrWrap .hdrInner .hdrRight .menuBox #navcontainer #navlist li a:hover {
	color: #00ced3 !important;
}

.footer {
	background-color: #0033a1;
	bottom: 0;
	height: auto;
	left: 0;
	position: absolute;
	width: 100%
}

.footer .ftrCont {
	max-width: none
}

@media (min-width: 1024px) {
	.footer .ftrCont {
		padding-left: 25px;
		padding-right: 25px
	}
}

@media (max-width: 1023px) {
	.footer .ftrCont {
		padding-left: 15px;
		padding-right: 15px
	}
}

.footer .ftrCont ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px
}

.footer .ftrCont li {
	-webkit-flex-basis: 100%;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	line-height: 1;
	max-width: 100%;
	padding-left: 15px;
	padding-right: 15px
}

@media (min-width: 576px) {
	.footer .ftrCont li {
		-webkit-flex-basis: 50%;
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%
	}
}

@media (min-width: 768px) {
	.footer .ftrCont li {
		-webkit-flex-basis: 25%;
		-ms-flex-preferred-size: 25%;
		flex-basis: 25%;
		max-width: 25%
	}
}

@media (min-width: 1365px) {
	.footer .ftrCont li {
		-webkit-flex-basis: 14.2857%;
		-ms-flex-preferred-size: 14.2857%;
		flex-basis: 14.2857%;
		max-width: 14.2857%
	}
}

.footer .ftrCont li a {
	color: #d9e3e6;
	display: inline-block;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 10px;
	text-transform: uppercase
}

@media (max-width: 991px) {
	.footer .ftrCont li a {
		font-size: 13px
	}
}

.footer .ftrCont li a:hover {
	color: white;
	text-decoration: underline
}

.footer .ftrCont li .subnavlist {
	margin-bottom: 30px;
	margin-left: 0;
	margin-right: 0
}

.footer .ftrCont li .subnavlist li {
	-webkit-flex-basis: 100%;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	max-width: 100%;
	padding: 0
}

.footer .ftrCont li .subnavlist li:not(:last-child) {
	margin-bottom: 6px
}

.footer .ftrCont li .subnavlist li a {
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	margin-bottom: 0
}

.footer .ftrCont .copyright {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-moz-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin: 0
}

.footer .ftrCont .copyright li {
	color: #d9e3e6;
	-webkit-flex-basis: auto;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 1;
	max-width: none;
	margin: 0;
	padding: 0;
	text-transform: uppercase
}

.footer .ftrCont .copyright li:not(:last-child) {
	margin-right: 20px
}

@media (max-width: 991px) {
	.footer .ftrCont .copyright li {
		font-size: 13px;
		line-height: 1.5
	}
}

.footer .ftrCont .copyright li a {
	color: #d9e3e6;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 1.4;
	margin: 0;
	text-transform: uppercase
}

@media (max-width: 991px) {
	.footer .ftrCont .copyright li a {
		font-size: 13px;
		line-height: 1.5
	}
}

.footer .ftrCont .copyright li a:hover {
	color: white;
	text-decoration: underline
}

.content {
	margin-top: 0 !important
}

@media (min-width: 768px) {
	.content {
		padding-top: 125px
	}
}

@media (min-width: 992px) {
	.content {
		padding-top: 70px
	}
}

@media (min-width: 1024px) {
	.content {
		padding-top: 84px
	}
}

@media (min-width: 1280px) {
	.content {
		padding-top: 122px
	}
}

@media (max-width: 767px) {
	.content {
		padding-top: 0 !important
	}
}

.content .cmnBnr {
	background-color: #0033a1;
	background-image: -webkit-linear-gradient(54deg, #0033a1 37%, #84d336 84%, #ffff4c 100%);
	background-image: -moz-linear-gradient(54deg, #0033a1 37%, #84d336 84%, #ffff4c 100%);
	background-image: -o-linear-gradient(54deg, #0033a1 37%, #84d336 84%, #ffff4c 100%);
	background-image: linear-gradient(36deg, #0033a1 37%, #84d336 84%, #ffff4c 100%)
}

.content .cmnBnr .bnrTxtCont {
	max-width: none;
	padding-left: 100px
}

@media (max-width: 1364px) {
	.content .cmnBnr .bnrTxtCont {
		padding-left: 25px
	}
}

@media (max-width: 1024px) {
	.content .cmnBnr .bnrTxtCont {
		padding-left: 15px
	}
}

.content .cmnBnr .bnrTxtCont h2 {
	color: white;
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	font-size: 84px;
	line-height: 1.2;
	padding-left: 0
}

@media (max-width: 1023px) {
	.content .cmnBnr .bnrTxtCont h2 {
		font-size: 56px
	}
}

@media (max-width: 575px) {
	.content .cmnBnr .bnrTxtCont h2 {
		font-size: 42px
	}
}

.content .cmnBnr .bnrTxtCont h2:after {
	content: none
}

.content .cmnBnr .social-icon {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	padding-right: 15px;
	position: absolute;
	right: 0;
	top: 15px;
	width: auto
}

@media (min-width: 1024px) {
	.content .cmnBnr .social-icon {
		top: 30px;
		width: 33%
	}
}

.content .cmnBnr .social-icon a {
	opacity: 0.5;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.content .cmnBnr .social-icon a:not(:last-child) {
	margin-right: 30px
}

.content .cmnBnr .social-icon a img {
	height: auto;
	position: static;
	width: auto
}

.content .cmnBnr .social-icon a:hover {
	opacity: 1
}

.content .mainCon .tabinner .tabMenu .tabs {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	max-width: none;
	padding-right: 25px;
	padding-left: 100px
}

@media (max-width: 1364px) {
	.content .mainCon .tabinner .tabMenu .tabs {
		padding-left: 25px;
		padding-right: 25px
	}
}

@media (max-width: 1023px) {
	.content .mainCon .tabinner .tabMenu .tabs {
		padding-left: 15px;
		padding-right: 15px
	}
}

@media (max-width: 767px) {
	.content .mainCon .tabinner .tabMenu .tabs {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding-left: 0;
		padding-right: 0
	}
}

.content .mainCon .tabinner .tabMenu .tabs li {
	padding: 0 16px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

@media (max-width: 767px) {
	.content .mainCon .tabinner .tabMenu .tabs li {
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
		padding: 0
	}
}

.content .mainCon .tabinner .tabMenu .tabs li a {
	color: #426191;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	padding: 20px 10px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	text-transform: uppercase
}
.tabinner li a:hover{color: #00ced3 !important;}
@media (max-width: 1079px) {
	.content .mainCon .tabinner .tabMenu .tabs li a {
		font-size: 13px
	}
}

@media (max-width: 991px) {
	.content .mainCon .tabinner .tabMenu .tabs li a {
		font-size: 10px
	}
}

@media (max-width: 767px) {
	.content .mainCon .tabinner .tabMenu .tabs li a {
		font-size: 14px;
		padding: 10px 15px;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none
	}
}

.content .mainCon .tabinner .tabMenu .tabs li:hover a {
	color: #0031ff
}

.content .mainCon .tabinner .tabMenu .tabs li:hover a.current {
	color: #0031ff
}

.content .mainCon .tabinner .tabMenu .tabs li.selected a {
	color: #0031ff
}

.content .mainCon .tabinner .tabMenu .tabs li.selected a.current {
	color: #0031ff
}

.content .mainCon .mainConIn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: auto;
	margin-right: auto;
	padding: 0
}

.content .mainCon .mainConIn .leftCon {
	-webkit-flex-basis: 67%;
	-ms-flex-preferred-size: 67%;
	flex-basis: 67%;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 67%;
	padding-bottom: 30px;
	padding-left: 100px;
	padding-right: 70px;
	padding-top: 30px
}

@media (max-width: 1364px) {
	.content .mainCon .mainConIn .leftCon {
		padding-left: 25px
	}
}

@media (max-width: 1199px) {
	.content .mainCon .mainConIn .leftCon {
		padding-left: 15px
	}
}

@media (max-width: 1023px) {
	.content .mainCon .mainConIn .leftCon {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
		padding-right: 15px
	}
}

.content .mainCon .mainConIn .leftCon a {
	color: #0033ff
}

.content .mainCon .mainConIn .leftCon a.link-color {
	color: #426191
}

.content .mainCon .mainConIn .leftCon a:hover {
	color: #00ced3 !important
}

.content .mainCon .mainConIn .leftCon a:hover.link-color {
	color: #00ced3
}

.content .mainCon .mainConIn .leftCon p, .content .mainCon .mainConIn .leftCon li {
	color: #000000;
	font-size: 18px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 5px;
	margin-top: 0
}

@media (max-width: 1199px) {
	.content .mainCon .mainConIn .leftCon p {
		font-size: 16px;
		line-height: 20px
	}
}

@media (max-width: 767px) {
	.content .mainCon .mainConIn .leftCon p {
		font-size: 13px;
		line-height: 17px
	}
}

.content .mainCon .mainConIn .leftCon #tab {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.content .mainCon .mainConIn .leftCon #tab li p img {
	display: block !important;
	height: auto !important;
	max-width: 100% !important
}

.content .mainCon .mainConIn .leftCon .aboutus-tab-content li p {
	color: #000000;
	font-size: 20px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 15px;
	margin-top: 0
}

@media (max-width: 1199px) {
	.content .mainCon .mainConIn .leftCon .aboutus-tab-content li p {
		font-size: 16px;
		line-height: 20px
	}
}

@media (max-width: 767px) {
	.content .mainCon .mainConIn .leftCon .aboutus-tab-content li p {
		font-size: 13px;
		line-height: 17px
	}
}

.content .mainCon .mainConIn .leftCon .aboutus-tab-content li h4 {
	color: #000000;
	font-size: 20px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 700;
	line-height: 24px;
	margin-bottom: 0
}

@media (max-width: 1199px) {
	.content .mainCon .mainConIn .leftCon .aboutus-tab-content li h4 {
		font-size: 16px;
		line-height: 20px
	}
}

@media (max-width: 767px) {
	.content .mainCon .mainConIn .leftCon .aboutus-tab-content li h4 {
		font-size: 13px;
		line-height: 17px
	}
}

.content .mainCon .mainConIn .leftCon .aboutus-tab-content li .image-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%
}

@media (max-width: 767px) {
	.content .mainCon .mainConIn .leftCon .aboutus-tab-content li .image-box {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
}

.content .mainCon .mainConIn .leftCon .aboutus-tab-content li .image-box .image {
	display: block;
	-webkit-flex-basis: -webkit-calc(100% - 240px);
	-ms-flex-preferred-size: calc(100% - 240px);
	flex-basis: -moz-calc(100% - 240px);
	flex-basis: calc(100% - 240px);
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: -webkit-calc(100% - 240px);
	max-width: -moz-calc(100% - 240px);
	max-width: calc(100% - 240px)
}

@media (max-width: 767px) {
	.content .mainCon .mainConIn .leftCon .aboutus-tab-content li .image-box .image {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%
	}
}

.content .mainCon .mainConIn .leftCon .aboutus-tab-content li .image-box .image img {
	width: 100%
}

.content .mainCon .mainConIn .leftCon .aboutus-tab-content li .image-box .text {
	-webkit-flex-basis: 240px;
	-ms-flex-preferred-size: 240px;
	flex-basis: 240px;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 240px
}

@media (max-width: 767px) {
	.content .mainCon .mainConIn .leftCon .aboutus-tab-content li .image-box .text {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%
	}
}

.content .mainCon .mainConIn .leftCon .aboutus-tab-content li .image-box .text .info {
	border-top: 3px solid #00ced3;
	color: black;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-style: italic;
	line-height: 22px;
	margin-bottom: 0;
	margin-top: 30px;
	padding-bottom: 120px;
	padding-top: 30px
}

@media (max-width: 767px) {
	.content .mainCon .mainConIn .leftCon .aboutus-tab-content li .image-box .text .info {
		font-style: 14px;
		line-height: 20px;
		padding-bottom: 0
	}
}

.content .mainCon .mainConIn .leftCon .aboutus-tab-content li .image-box.wt-full .image {
	-webkit-flex-basis: 100%;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	max-width: 100%
}

.content .mainCon .mainConIn .leftCon .aboutus-tab-content li .image-box.wt-full .text {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-basis: 100%;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-moz-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	max-width: 100%
}

.content .mainCon .mainConIn .leftCon .aboutus-tab-content li .image-box.wt-full .text .info {
	max-width: 800px;
	padding-bottom: 0;
	width: 100%
}

.content .mainCon .mainConIn .sidebar {
	-webkit-flex-basis: 33%;
	-ms-flex-preferred-size: 33%;
	flex-basis: 33%;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 33%;
	padding-bottom: 30px;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 30px
}

@media (max-width: 1364px) {
	.content .mainCon .mainConIn .sidebar {
		padding-left: 25px;
		padding-right: 25px
	}
}

@media (max-width: 1199px) {
	.content .mainCon .mainConIn .sidebar {
		padding-left: 15px;
		padding-right: 15px
	}
}

@media (max-width: 1023px) {
	.content .mainCon .mainConIn .sidebar {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
		padding-left: 15px;
		padding-right: 15px
	}
}

.content .mainCon .mainConIn .sidebar .sidebar-article-list {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-bottom: 0;
	margin-top: 0;
	padding-left: 0
}

.content .mainCon .mainConIn .sidebar .sidebar-article-list .sidebar-article-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 400px;
	width: 100%
}

.content .mainCon .mainConIn .sidebar .sidebar-article-list .sidebar-article-item:not(:last-child) {
	border-bottom: 2px solid #aed5d5;
	margin-bottom: 30px;
	padding-bottom: 30px
}

.content .mainCon .mainConIn .sidebar .sidebar-article-list .sidebar-article-item span {
	color: #46809b;
	font-size: 14px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-style: italic;
	line-height: 1.2
}

.content .mainCon .mainConIn .sidebar .sidebar-article-list .sidebar-article-item span p {
	font-size: inherit;
	line-height: inherit;
	margin: 0;
	padding: 0
}

.content .mainCon .mainConIn .sidebar .sidebar-article-list .sidebar-article-item span:first-child {
	color: #0033a1;
	font-size: 20px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	font-style: normal;
	display: inline-block;
	display: -moz-box;
	display: -webkit-box;
	line-height: 25px;
	height: 50px;
	overflow: hidden;
	margin-bottom: 15px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	word-break: break-word;
	word-wrap: break-word;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-moz-box-orient: vertical;
	-webkit-box-orient: vertical;
	box-orient: vertical;
	width: 100%
}

.content .home-content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.content .home-content .home-content-left {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-flex-basis: -webkit-calc(100% - 452px);
	-ms-flex-preferred-size: calc(100% - 452px);
	flex-basis: -moz-calc(100% - 452px);
	flex-basis: calc(100% - 452px);
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: -webkit-calc(100% - 452px);
	max-width: -moz-calc(100% - 452px);
	max-width: calc(100% - 452px)
}

@media (max-width: 1023px) {
	.content .home-content .home-content-left {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%
	}
}

.content .home-content .home-content-right {
	-webkit-flex-basis: 452px;
	-ms-flex-preferred-size: 452px;
	flex-basis: 452px;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 452px
}

@media (max-width: 1023px) {
	.content .home-content .home-content-right {
		display: none;
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%
	}
}

@media (min-width: 1024px) {
	.content .home-content .small-devices {
		display: none
	}
}

.content .home-content .home-carousel {
	padding-left: 70px;
	padding-right: 70px
}

@media (max-width: 767px) {
	.content .home-content .home-carousel {
		padding-left: 15px;
		padding-right: 30px
	}
}

.content .home-content .home-carousel .home-carousel-item {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-height: 131px;
	line-height: 1;
	padding-bottom: 12px;
	padding-top: 12px
}

.content .home-content .home-carousel .home-carousel-item.slick-slide,
.content .home-content .home-carousel .home-carousel-item.slick-active {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex
}

.content .home-content .home-carousel .home-carousel-item p {
	color: #0033a1;
	font-size: 18px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	font-style: normal;
	display: inline-block;
	display: -moz-box;
	display: -webkit-box;
	line-height: 22px;
	height: 44px;
	overflow: hidden;
	margin: 0 0 8px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	word-break: break-word;
	word-wrap: break-word;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-moz-box-orient: vertical;
	-webkit-box-orient: vertical;
	box-orient: vertical;
	width: 100%
}
.content .home-content .home-carousel .home-carousel-item p:hover {color: #00ced3 !important;}
.content .home-content .home-carousel .home-carousel-item span,
.content .home-content .home-carousel .home-carousel-item span,
.content .home-content .home-carousel .home-carousel-item span,
.content .home-content .home-carousel .home-carousel-item span a {
	color: #46809b;
	font-size: 12px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-style: italic;
	line-height: 15px
}

.content .home-content .home-carousel .home-carousel-item span:first-child a {
	color: #0033a1;
	font-size: 18px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	font-style: normal;
	display: inline-block;
	display: -moz-box;
	display: -webkit-box;
	line-height: 22px;
	height: 44px;
	overflow: hidden;
	margin-bottom: 8px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	word-break: break-word;
	word-wrap: break-word;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-moz-box-orient: vertical;
	-webkit-box-orient: vertical;
	box-orient: vertical;
	width: 100%
}

.content .home-content .home-carousel .home-carousel-item span:last-child {
	-moz-box-orient: vertical;
	-webkit-box-orient: vertical;
	box-orient: vertical;
	display: inline-block;
	display: -moz-box;
	display: -webkit-box;
	height: 15px;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	overflow: hidden;
	word-break: break-word;
	word-wrap: break-word
}
.content .home-content .home-carousel .home-carousel-item span a:hover{color: #00ced3 !important;}
.content .home-content .home-carousel .slick-dots {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	list-style: outside none;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	position: absolute;
	right: 28.5px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%)
}

@media (max-width: 767px) {
	.content .home-content .home-carousel .slick-dots {
		right: 8.5px
	}
}

.content .home-content .home-carousel .slick-dots li {
	background-color: #d9e3e6;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	height: 13px;
	line-height: 13px;
	overflow: hidden;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	width: 13px
}

.content .home-content .home-carousel .slick-dots li:not(:last-child) {
	margin-bottom: 10px
}

.content .home-content .home-carousel .slick-dots li button {
	background-color: transparent !important;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	color: transparent !important;
	height: 100%;
	left: 0;
	margin: 0;
	opacity: 0 !important;
	padding: 0;
	position: absolute;
	top: 0;
	visibility: hidden !important;
	width: 100%
}

.content .home-content .home-carousel .slick-dots li.slick-active {
	background-color: #00ffff
}

.content .home-content .home-peoples {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 40px
}

.content .home-content .home-peoples .people-item {
	-webkit-flex-basis: 113px;
	-ms-flex-preferred-size: 113px;
	flex-basis: 113px;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 113px;
	overflow: hidden;
	position: relative
}

@media (min-width: 1024px) {
	.content .home-content .home-peoples .people-item {
		-webkit-box-align: center;
		-webkit-align-items: center;
		-moz-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		height: 169px;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-moz-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
}

@media (max-width: 1023px) {
	.content .home-content .home-peoples .people-item {
		-webkit-flex-basis: 25%;
		-ms-flex-preferred-size: 25%;
		flex-basis: 25%;
		max-width: 25%
	}
}

@media (max-width: 767px) {
	.content .home-content .home-peoples .people-item {
		-webkit-flex-basis: 33.3333%;
		-ms-flex-preferred-size: 33.3333%;
		flex-basis: 33.3333%;
		max-width: 33.3333%
	}
}

@media (max-width: 575px) {
	.content .home-content .home-peoples .people-item {
		-webkit-flex-basis: 50%;
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%
	}
}

@media (min-width: 1024px) {
	.content .home-content .home-peoples .people-item img {
		-webkit-box-flex: 0;
		-webkit-flex-grow: 0;
		-moz-box-flex: 0;
		-ms-flex-positive: 0;
		flex-grow: 0;
		height: 100% !important;
		-o-object-fit: cover;
		object-fit: cover;
		width: 100% !important
	}
}

.content .home-content .home-peoples .people-item .mask {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: rgba(34, 50, 160, 0.35);
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	left: 0;
	padding: 10px;
	position: absolute;
	top: 0;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	width: 100%
}

.content .home-content .home-peoples .people-item .mask span {
	color: white;
	font-size: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	line-height: 20px;
	text-align: center
}

.content .home-content .home-peoples .people-item .mask span:first-child {
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%
}

.content .home-content .home-peoples .people-item .mask span:nth-child(2) {
	display: inline-block;
	display: -moz-box;
	display: -webkit-box;
	height: 80px;
	overflow: hidden;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	-moz-box-orient: vertical;
	-webkit-box-orient: vertical;
	box-orient: vertical;
	width: 100%;
	word-break: break-word;
	word-wrap: break-word
}

.content .home-content .home-peoples .people-item:hover .mask {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0)
}

.content .home-content .load-more {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 65px
}

.content .home-content .load-more button {
	background-color: transparent;
	border: none;
	color: #729eb3;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	padding-bottom: 20px;
	padding-left: 0;
	padding-right: 0;
	padding-top: 0;
	position: relative;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.content .home-content .load-more button:after {
	background-color: #00ffff;
	content: '';
	height: 5px;
	left: -webkit-calc(50% - 25px);
	left: -moz-calc(50% - 25px);
	left: calc(50% - 25px);
	position: absolute;
	top: 100%;
	width: 50px
}

.content .home-content .load-more button:hover {
	color: #00ffff
}

.content .home-content .home-banner {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #0033a1;
	background-image: -webkit-linear-gradient(54deg, #0033a1 37%, #84d336 84%, #ffff4c 100%);
	background-image: -moz-linear-gradient(54deg, #0033a1 37%, #84d336 84%, #ffff4c 100%);
	background-image: -o-linear-gradient(54deg, #0033a1 37%, #84d336 84%, #ffff4c 100%);
	background-image: linear-gradient(36deg, #0033a1 37%, #84d336 84%, #ffff4c 100%);
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	height: 300px;
	padding: 30px 30px 30px 100px
}

@media (max-width: 1364px) {
	.content .home-content .home-banner {
		padding-left: 25px
	}
}

@media (max-width: 1199px) {
	.content .home-content .home-banner {
		padding-left: 15px
	}
}

.content .home-content .home-banner .heading {
	color: white;
	font-size: 100px;
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	line-height: 1;
	margin: 0
}

@media (max-width: 1599px) {
	.content .home-content .home-banner .heading {
		font-size: 85px
	}
}

@media (max-width: 1399px) {
	.content .home-content .home-banner .heading {
		font-size: 80px
	}
}

@media (max-width: 1199px) {
	.content .home-content .home-banner .heading {
		font-size: 70px
	}
}

@media (max-width: 1023px) {
	.content .home-content .home-banner .heading {
		font-size: 56px
	}
}

@media (max-width: 374px) {
	.content .home-content .home-banner .heading {
		font-size: 44px
	}
}

.content .home-content .home-banner .heading span {
	color: #00FFFF
}

.content .home-content .skew-part {
	background: #f0f2f2;
	width: 100%
}

.content .home-content .skew-part .skew-line {
	background: #00c3c8;
	position: relative;
	padding: 10px 15px 10px 100px;
	display: inline-block
}

@media (max-width: 1364px) {
	.content .home-content .skew-part .skew-line {
		padding-left: 25px
	}
}

@media (max-width: 1023px) {
	.content .home-content .skew-part .skew-line {
		padding: 10px 15px
	}
}

.content .home-content .skew-part .skew-line:after {
	-webkit-transform-origin: bottom left;
	-moz-transform-origin: bottom left;
	-ms-transform-origin: bottom left;
	-o-transform-origin: bottom left;
	transform-origin: bottom left;
	-webkit-transform: skew(-30deg, 0deg);
	-moz-transform: skew(-30deg, 0deg);
	-ms-transform: skew(-30deg, 0deg);
	-o-transform: skew(-30deg, 0deg);
	transform: skew(-30deg, 0deg);
	background: #00c3c8;
	position: absolute;
	content: "";
	left: 0;
	height: 100%;
	width: 100%;
	top: 0
}

.content .home-content .skew-part .skew-line h1 {
	position: relative;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 500;
	color: #fff;
	margin: 0;
	font-size: 18px;
	z-index: 1;
	text-transform: uppercase
}

@media (max-width: 424px) {
	.content .home-content .skew-part .skew-line h1 {
		font-size: 16px
	}
}

@media (max-width: 374px) {
	.content .home-content .skew-part .skew-line h1 {
		font-size: 13px
	}
}

.content .home-content .news-title-part {
	background-color: #f0f2f2;
	padding: 30px 140px 30px 100px;
	position: relative
}

@media (max-width: 1364px) {
	.content .home-content .news-title-part {
		padding-left: 25px
	}
}

@media (max-width: 1023px) {
	.content .home-content .news-title-part {
		padding-left: 15px
	}
}

@media (max-width: 767px) {
	.content .home-content .news-title-part {
		padding-bottom: 110px;
		padding-right: 15px
	}
}

.content .home-content .news-title-part .title-section {
	color: #0033a1;
	font-size: 70px;
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	line-height: 80px;
	margin: 0
}

@media (max-width: 1199px) {
	.content .home-content .news-title-part .title-section {
		font-size: 43px;
		line-height: 53px
	}
}

@media (max-width: 1023px) {
	.content .home-content .news-title-part .title-section {
		font-size: 36px;
		line-height: 46px
	}
}

.content .home-content .news-title-part .more-btn {
	background-color: white;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #426191;
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	line-height: 30px;
	padding: 10px 20px;
	position: absolute;
	right: 40px;
	text-decoration: none;
	text-transform: uppercase;
	top: 0
}

@media (max-width: 767px) {
	.content .home-content .news-title-part .more-btn {
		bottom: 30px;
		top: auto;
		right: -webkit-calc(50% - 50px);
		right: -moz-calc(50% - 50px);
		right: calc(50% - 50px)
	}
}

.content .home-content .news-event {
	padding-left: 100px;
	padding-right: 40px
}

@media (max-width: 1364px) {
	.content .home-content .news-event {
		padding-left: 25px;
		padding-right: 25px
	}
}

@media (max-width: 1023px) {
	.content .home-content .news-event {
		padding-left: 15px;
		padding-right: 15px
	}
}

.content .home-content .news-event .news-event-group {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 40px;
	margin-left: -15px;
	margin-right: -15px;
	padding-bottom: 10px;
	position: relative
}

.content .home-content .news-event .news-event-group:after {
	background-color: #b2d9d9;
	content: '';
	height: 1px;
	left: 15px;
	position: absolute;
	top: 100%;
	width: -webkit-calc(100% - 30px);
	width: -moz-calc(100% - 30px);
	width: calc(100% - 30px)
}

.content .home-content .news-event .news-event-group .news-event-item {
	-webkit-flex-basis: 33.3333%;
	-ms-flex-preferred-size: 33.3333%;
	flex-basis: 33.3333%;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 33.3333%;
	margin-bottom: 30px;
	padding: 20px 15px
}

@media (max-width: 1199px) {
	.content .home-content .news-event .news-event-group .news-event-item {
		-webkit-flex-basis: 50%;
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%
	}
}

@media (max-width: 575px) {
	.content .home-content .news-event .news-event-group .news-event-item {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%
	}
}

.content .home-content .news-event .news-event-group .news-event-item h5 {
	color: #729eb3;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	line-height: 26px;
	margin-bottom: 30px;
	margin-top: 0;
	padding-bottom: 10px;
	position: relative;
	text-transform: uppercase
}

.content .home-content .news-event .news-event-group .news-event-item h5 a {
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	line-height: 26px
}

.content .home-content .news-event .news-event-group .news-event-item h5:after {
	background-color: #00ffff;
	content: '';
	height: 5px;
	left: 0;
	position: absolute;
	top: 100%;
	width: 50px
}

.content .home-content .news-event .news-event-group .news-event-item a {
	color: #426191;
	font-size: 20px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 24px;
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.content .home-content .news-event .news-event-group .news-event-item a span {
	color: #00ffff;
	display: inline-block;
	margin-left: 10px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.content .home-content .news-event .news-event-group .news-event-item a:hover {
	color: #00ced3 !important;
}

.content .home-content .news-event .news-event-group .news-event-item a:hover span {
	color: #00ced3 !important;
}

.content .home-content .news-event .news-event-more {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 30px;
	margin-left: -15px;
	margin-right: -15px
}

.content .home-content .news-event .news-event-more .news-event-item {
	-webkit-flex-basis: 50%;
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	max-width: 50%;
	margin-bottom: 30px;
	padding-left: 15px;
	padding-right: 15px
}

@media (max-width: 575px) {
	.content .home-content .news-event .news-event-more .news-event-item {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%
	}
}

.content .home-content .news-event .news-event-more .news-event-item a {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	display: block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	width: 100%
}

.content .home-content .news-event .news-event-more .news-event-item a img {
	height: 100%;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%
}

.content .home-content .news-event .news-event-more .news-event-item a .news-event-item-content {
	padding: 20px;
	position: relative;
	z-index: 1
}

@media (min-width: 1441px) {
	.content .home-content .news-event .news-event-more .news-event-item a .news-event-item-content {
		padding: 35px 50px
	}
}

@media (min-width: 1601px) {
	.content .home-content .news-event .news-event-more .news-event-item a .news-event-item-content {
		padding: 50px
	}
}

.content .home-content .news-event .news-event-more .news-event-item a .news-event-item-content h2 {
	color: white;
	font-size: 24px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 700;
	line-height: 28px;
	margin-bottom: 10px;
	margin-top: 0;
	text-align: left
}

.content .home-content .news-event .news-event-more .news-event-item a .news-event-item-content p {
	color: white;
	font-size: 18px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 28px;
	margin: 0;
	text-align: right
}

.content .home-content .news-event .news-event-more .news-event-item a .news-event-item-content p span {
	color: #e7ff00
}

.attorneys-banner-all .attorneys-banner {
	position: relative
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-title {
	border-bottom: 1px solid #99cccc;
	margin-bottom: 45px;
	padding-bottom: 25px;
	padding-top: 65px;
	position: relative
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-title h1 {
	color: white;
	font-size: 84px;
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	line-height: 94px;
	margin: 0
}

@media (max-width: 767px) {
	.attorneys-banner-all .attorneys-banner .attorneys-banner-title h1 {
		font-size: 50px;
		line-height: 60px
	}
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-title .social-icon {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	right: 0;
	top: 30px
}

@media (min-width: 768px) {
	.attorneys-banner-all .attorneys-banner .attorneys-banner-title .social-icon {
		right: 12%
	}
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-title .social-icon a {
	opacity: 1;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-title .social-icon a:not(:last-child) {
	margin-right: 20px
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-title .social-icon a:hover {
	opacity: 1
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 20px
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-input {
	background-color: #557ab7;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-basis: 40%;
	-ms-flex-preferred-size: 40%;
	flex-basis: 40%;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-bottom: 30px;
	max-width: 40%
}

@media (max-width: 1364px) {
	.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-input {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%
	}
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-input .search {
	background-color: #557ab7;
	border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	color: white;
	font-size: 18px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 700;
	height: 60px;
	line-height: 1;
	padding: 15px;
	padding-right: 0;
	width: 100%
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-input .search::-webkit-input-placeholder {
	color: white;
	opacity: 1
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-input .search:-webkit-input-placeholder {
	color: white;
	opacity: 1
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-input .search::-moz-placeholder {
	color: white;
	opacity: 1
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-input .search:-moz-placeholder {
	color: white;
	opacity: 1
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-input .search::-ms-input-placeholder {
	color: white;
	opacity: 1
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-input .search:-ms-input-placeholder {
	color: white;
	opacity: 1
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-input button {
	background-color: #557ab7;
	border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	font-size: 13px;
	height: 60px;
	line-height: 1;
	padding: 15px
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-input button img {
	width: 30px
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-filter {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-basis: 60%;
	-ms-flex-preferred-size: 60%;
	flex-basis: 60%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-bottom: 25px;
	max-width: 60%;
	padding-left: 30px
}

@media (max-width: 1364px) {
	.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-filter {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
		padding-left: 0
	}
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-filter .search-label {
	color: #99cccc;
	font-size: 18px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 28px;
	margin-bottom: 10px
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-filter .alpahbet {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -5px;
	padding: 0
}

@media (min-width: 568px) and (max-width: 767px) {
	.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-filter .alpahbet {
		margin-left: -2px;
		margin-right: -2px
	}
}

@media (max-width: 567px) {
	.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-filter .alpahbet {
		margin-left: -3px;
		margin-right: -3px
	}
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-filter .alpahbet a {
	background-color: transparent;
	color: white;
	font-size: 24px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	height: auto;
	line-height: 1;
	margin-bottom: 5px;
	margin-right: 0;
	padding-left: 5px;
	padding-right: 5px;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	width: auto
}

@media (min-width: 568px) and (max-width: 767px) {
	.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-filter .alpahbet a {
		font-size: 22px;
		padding-left: 2px;
		padding-right: 2px
	}
}

@media (max-width: 567px) {
	.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-filter .alpahbet a {
		font-size: 22px;
		padding-left: 3px;
		padding-right: 3px
	}
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-filter .alpahbet a:after {
	background-color: white;
	bottom: -5px;
	content: '';
	height: 1px;
	left: 0;
	position: absolute;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	width: 0
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-filter .alpahbet a:hover {
	color: #ffff00 !important
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-filter .alpahbet a:hover:after {
	width: 100%
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-filter .alpahbet a.no-result {
	color: #888888 !important
}

.attorneys-banner-all .attorneys-banner .attorneys-banner-search .attorneys-search-form .search-filter .alpahbet a.no-result:after {
	content: none
}

.attorneys-filter {
	background-color: #dde5e7
}

.attorneys-filter .attorneys-filter-box {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-bottom: 20px;
	padding-top: 40px
}

.attorneys-filter .attorneys-filter-box .attorneys-filter-label {
	color: #729eb3;
	-webkit-flex-basis: 100px;
	-ms-flex-preferred-size: 100px;
	flex-basis: 100px;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	font-size: 18px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	line-height: 28px;
	margin-bottom: 20px;
	max-width: 100px;
	padding-right: 25px
}

@media (min-width: 1024px) {
	.attorneys-filter .attorneys-filter-box .attorneys-filter-label {
		-webkit-box-align: center;
		-webkit-align-items: center;
		-moz-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		height: 60px
	}
}

.attorneys-filter .attorneys-filter-box .attorneys-filter-group {
	-webkit-flex-basis: -webkit-calc(100% - 100px);
	-ms-flex-preferred-size: calc(100% - 100px);
	flex-basis: -moz-calc(100% - 100px);
	flex-basis: calc(100% - 100px);
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: -webkit-calc(100% - 100px);
	max-width: -moz-calc(100% - 100px);
	max-width: calc(100% - 100px)
}

@media (max-width: 1023px) {
	.attorneys-filter .attorneys-filter-box .attorneys-filter-group {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%
	}
}

.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-item {
	-webkit-flex-basis: 100%;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-bottom: 20px;
	max-width: 100%;
	padding-left: 15px;
	padding-right: 15px
}

@media (min-width: 768px) {
	.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-item.filter-service {
		-webkit-flex-basis: 50%;
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%
	}
}

@media (min-width: 1365px) {
	.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-item.filter-service {
		-webkit-flex-basis: 30%;
		-ms-flex-preferred-size: 30%;
		flex-basis: 30%;
		max-width: 30%
	}
}

@media (min-width: 768px) {
	.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-item.filter-location,
	.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-item.filter-title {
		-webkit-flex-basis: 50%;
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%
	}
}

@media (min-width: 1365px) {
	.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-item.filter-location,
	.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-item.filter-title {
		-webkit-flex-basis: 25%;
		-ms-flex-preferred-size: 25%;
		flex-basis: 25%;
		max-width: 25%
	}
}

@media (min-width: 768px) {
	.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-item.filter-submit {
		-webkit-flex-basis: 25%;
		-ms-flex-preferred-size: 25%;
		flex-basis: 25%;
		max-width: 25%
	}
}

@media (min-width: 1365px) {
	.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-item.filter-submit {
		-webkit-flex-basis: 10%;
		-ms-flex-preferred-size: 10%;
		flex-basis: 10%;
		max-width: 10%
	}
}

.filter-practice-wr {
	margin-left: 40px;
}

.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-item .filter-dropdown,
.filter-practice-wr .filter-dropdown {
	border: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	height: 60px
}

.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-item .filter-dropdown:after,
.filter-practice-wr .filter-dropdown:after {
	border: none;
	color: #00bbb4;
	content: '\f107';
	font-family: "Font Awesome 5 Pro";
	font-size: 30px;
	font-weight: 300;
	height: auto;
	line-height: 1;
	margin: 0;
	top: -webkit-calc(50% - 15px);
	top: -moz-calc(50% - 15px);
	top: calc(50% - 15px);
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
	width: auto
}

.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-item .filter-dropdown .current,
.filter-practice-wr .filter-dropdown .current {
	color: #426191;
	display: inline-block;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	line-height: 60px;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
	width: 100%
}

.filter-practice-wr .nice-select.wide {
	width: 430px;
	margin-bottom: 15px;
}

@media (max-width: 1023px) {
	.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-item .filter-dropdown .current {
		font-size: 14px
	}
}

.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-item .filter-dropdown .list,
.filter-practice-wr .filter-dropdown .list {
	max-height: 450px;
	overflow-x: hidden;
	overflow-y: auto
}

.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-item .filter-dropdown .list .option,
.filter-practice-wr .filter-dropdown .list .option {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #426191;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 20px;
	padding-left: 15px;
	padding-right: 15px;
	white-space: normal
}

.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-item .filter-dropdown .list .option.selected,
.filter-practice-wr .filter-dropdown .list .option.selected {
	background-color: #00bbb4;
	color: white
}

.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-item .filter-dropdown .list .option:hover,
.filter-practice-wr .filter-dropdown .list .option:hover {
	background-color: #00bbb4;
	color: white
}

.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-item .filter-dropdown .list:hover .option:not(:hover),
.filter-practice-wr .filter-dropdown .list:hover .option:not(:hover) {
	color: #426191
}

.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-item .filter-submit {
	background-color: #00bbb4;
	border: 2px solid #00bbb4;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: white;
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	height: 60px;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	width: 100%
}

.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-item .filter-submit:hover {
	background-color: transparent;
	color: #00bbb4
}

.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-clear {
	-webkit-flex-basis: 100%;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-bottom: 20px;
	max-width: 100%;
	padding-left: 15px;
	padding-right: 15px
}

@media (min-width: 768px) {
	.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-clear {
		-webkit-flex-basis: 25%;
		-ms-flex-preferred-size: 25%;
		flex-basis: 25%;
		max-width: 25%
	}
}

@media (min-width: 1365px) {
	.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-clear {
		-webkit-flex-basis: 10%;
		-ms-flex-preferred-size: 10%;
		flex-basis: 10%;
		max-width: 10%
	}
}

.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-clear .clear-filter {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #00bbb4;
	border: 2px solid #00bbb4;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: white;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	height: 60px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	width: 100%
}

.attorneys-filter .attorneys-filter-box .attorneys-filter-group .attorneys-filter-clear .clear-filter:hover {
	background-color: transparent;
	color: #00bbb4;
	text-decoration: none
}

.attorneys-list {
	background-color: #f0f2f2;
	padding-bottom: 30px;
	padding-top: 60px
}

.attorneys-list .attorneys-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 100%;
	-moz-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	padding-left: 15px;
	padding-right: 15px
}

@media (min-width: 768px) {
	.attorneys-list .attorneys-item {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 50%;
		-moz-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%
	}
}

@media (min-width: 1365px) {
	.attorneys-list .attorneys-item {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 33.3333%;
		-moz-box-flex: 0;
		-ms-flex: 0 0 33.3333%;
		flex: 0 0 33.3333%;
		max-width: 33.3333%
	}
}

.attorneys-list .attorneys-item .attorneys-item-card {
	background-color: white;
	border: 5px solid transparent;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	margin-bottom: 30px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	width: 100%
}

.attorneys-list .attorneys-item .attorneys-item-card .image {
	float: left;
	width: 140px
}

@media (max-height: 424px) {
	.attorneys-list .attorneys-item .attorneys-item-card .image {
		max-width: 100px
	}
}

.attorneys-list .attorneys-item .attorneys-item-card .text-content {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	float: left;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0;
	min-height: 1px;
	width: -webkit-calc(100% - 140px);
	width: -moz-calc(100% - 140px);
	width: calc(100% - 140px);
	padding: 20px
}

@media (max-height: 424px) {
	.attorneys-list .attorneys-item .attorneys-item-card .text-content {
		width: -webkit-calc(100% - 100px);
		width: -moz-calc(100% - 100px);
		width: calc(100% - 100px);
		padding: 15px
	}
}

.attorneys-list .attorneys-item .attorneys-item-card .text-content h3 {
	color: #426191;
	font-size: 28px;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	line-height: 38px;
	margin-bottom: 10px;
	margin-top: 0;
	white-space: normal;
	width: 100%
}

.attorneys-list .attorneys-item .attorneys-item-card .text-content h3 a {
	color: #426191;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.attorneys-list .attorneys-item .attorneys-item-card .text-content h3 a:hover {
	text-decoration: none;
	color: #00ced3 !important;
}

.attorneys-list .attorneys-item .attorneys-item-card .text-content .degic {
	color: #426191 !important;
	font-size: 15px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 25px;
	margin-bottom: 5px;
	text-decoration: none !important
}

.attorneys-list .attorneys-item .attorneys-item-card .text-content .con-info {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	color: #426191;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	font-size: 15px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	line-height: 20px;
	text-decoration: none
}

.attorneys-list .attorneys-item .attorneys-item-card .text-content .con-info a {
	color: #426191;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.attorneys-list .attorneys-item .attorneys-item-card .text-content .con-info a:hover {
	text-decoration: none
}

.attorneys-list .attorneys-item .attorneys-item-card:hover {
	border-color: #00ffff;
	text-decoration: none
}

.attorneys-list .attorneys-item .attorneys-item-card:hover .text-content h3 a {
	color: #00ced3;
}


.attorneys-list .attorneys-item .attorneys-item-card:hover .text-content .degic,
.attorneys-list .attorneys-item .attorneys-item-card:hover .text-content .con-info {
	text-decoration: none;
	color: #00ced3;
}

.attorneys-bio-banner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.attorneys-bio-banner .banner-left {
	background-color: white;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-basis: 60%;
	-ms-flex-preferred-size: 60%;
	flex-basis: 60%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 60%;
	padding-left: 100px;
	padding-right: 50px
}

@media (max-width: 1364px) {
	.attorneys-bio-banner .banner-left {
		padding-left: 25px;
		padding-right: 25px
	}
}

@media (max-width: 767px) {
	.attorneys-bio-banner .banner-left {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
		padding-left: 15px;
		padding-right: 15px
	}
}

.attorneys-bio-banner .banner-left .bio-detail {
	border-bottom: 1px solid #b2d9d9;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	-moz-box-orient: horizontal;
	-moz-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	padding-bottom: 30px;
	padding-top: 60px
}

.attorneys-bio-banner .banner-left .bio-detail .icon-share {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-basis: 36px;
	-ms-flex-preferred-size: 36px;
	flex-basis: 36px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 36px
}

.attorneys-bio-banner .banner-left .bio-detail .icon-share a {
	color: #99cccc;
	font-size: 32px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.attorneys-bio-banner .banner-left .bio-detail .icon-share a:not(:last-child) {
	margin-bottom: 20px
}

.attorneys-bio-banner .banner-left .bio-detail .icon-share a:hover {
	color: #0031ff
}

.attorneys-bio-banner .banner-left .bio-detail .bio-name {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-basis: -webkit-calc(100% - 36px);
	-ms-flex-preferred-size: calc(100% - 36px);
	flex-basis: -moz-calc(100% - 36px);
	flex-basis: calc(100% - 36px);
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: -webkit-calc(100% - 36px);
	max-width: -moz-calc(100% - 36px);
	max-width: calc(100% - 36px);
	padding-right: 15px
}

.attorneys-bio-banner .banner-left .bio-detail .bio-name .bio-breadcrumb {
	margin-bottom: 10px
}

.attorneys-bio-banner .banner-left .bio-detail .bio-name .bio-breadcrumb a {
	color: #46809b;
	font-size: 14px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 20px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.attorneys-bio-banner .banner-left .bio-detail .bio-name .bio-breadcrumb a:hover {
	color: #0031ff
}

.attorneys-bio-banner .banner-left .bio-detail .bio-name .bio-name-deg {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.attorneys-bio-banner .banner-left .bio-detail .bio-name .bio-name-deg span {
	color: #729eb3;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	line-height: 38px;
	text-transform: uppercase
}

.attorneys-bio-banner .banner-left .bio-detail .bio-name .bio-name-deg h1 {
	color: #0031ff;
	font-size: 84px;
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	line-height: 94px;
	margin: 0;
	width: 100%
}

@media (max-width: 1399px) {
	.attorneys-bio-banner .banner-left .bio-detail .bio-name .bio-name-deg h1 {
		font-size: 64px;
		line-height: 74px
	}
}

@media (max-width: 767px) {
	.attorneys-bio-banner .banner-left .bio-detail .bio-name .bio-name-deg h1 {
		font-size: 40px;
		line-height: 50px
	}
}

.attorneys-bio-banner .banner-left .bio-action {
	padding-bottom: 20px;
	padding-top: 30px
}

.attorneys-bio-banner .banner-left .bio-action .list-inline {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	list-style: outside none;
	margin: 0;
	padding: 0
}

@media (min-width: 768px) and (max-width: 830px) {
	.attorneys-bio-banner .banner-left .bio-action .list-inline {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
}

.attorneys-bio-banner .banner-left .bio-action .list-inline .list-inline-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 10px
}

.attorneys-bio-banner .banner-left .bio-action .list-inline .list-inline-item:not(:last-child) {
	margin-right: 10px
}

@media (min-width: 768px) and (max-width: 830px) {
	.attorneys-bio-banner .banner-left .bio-action .list-inline .list-inline-item:not(:last-child) {
		margin-right: 0
	}
}

@media (min-width: 768px) and (max-width: 830px) {
	.attorneys-bio-banner .banner-left .bio-action .list-inline .list-inline-item:nth-child(2n+2) {
		display: none !important
	}
}

@media (max-width: 567px) {
	.attorneys-bio-banner .banner-left .bio-action .list-inline .list-inline-item:nth-child(2n+2) {
		display: none !important
	}
}

.attorneys-bio-banner .banner-left .bio-action .list-inline .list-inline-item span {
	color: #426191;
	display: inline-block;
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 24px;
	margin-right: 6px;
	text-transform: uppercase
}

.attorneys-bio-banner .banner-left .bio-action .list-inline .list-inline-item a {
	color: #426191;
	display: inline-block;
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 24px;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.attorneys-bio-banner .banner-left .bio-action .list-inline .list-inline-item a:hover {
	color: #00ced3 !important;
}

.attorneys-bio-banner .banner-right {
	background-color: #0033a1;
	background: -webkit-linear-gradient(20deg, #0033A1 40%, #84D336 88%, #FFFD4C 97%, #FFFD4C 100%);
	background: -moz-linear-gradient(20deg, #0033A1 40%, #84D336 88%, #FFFD4C 97%, #FFFD4C 100%);
	background: -o-linear-gradient(20deg, #0033A1 40%, #84D336 88%, #FFFD4C 97%, #FFFD4C 100%);
	background: linear-gradient(70deg, #0033A1 40%, #84D336 88%, #FFFD4C 97%, #FFFD4C 100%);
	-webkit-flex-basis: 40%;
	-ms-flex-preferred-size: 40%;
	flex-basis: 40%;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 40%;
	position: relative
}

@media (max-width: 767px) {
	.attorneys-bio-banner .banner-right {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%
	}
}

@media (min-width: 576px) {
	.attorneys-bio-banner .banner-right:before {
		background: -webkit-linear-gradient(20deg, #0033A1 40%, #84D336 88%, #FFFD4C 97%, #FFFD4C 100%);
		background: -moz-linear-gradient(20deg, #0033A1 40%, #84D336 88%, #FFFD4C 97%, #FFFD4C 100%);
		background: -o-linear-gradient(20deg, #0033A1 40%, #84D336 88%, #FFFD4C 97%, #FFFD4C 100%);
		background: linear-gradient(70deg, #0033A1 40%, #84D336 88%, #FFFD4C 97%, #FFFD4C 100%);
		content: '';
		height: 100%;
		position: absolute;
		right: 0;
		top: 0;
		width: -webkit-calc(100% - 300px);
		width: -moz-calc(100% - 300px);
		width: calc(100% - 300px)
	}
}

@media (min-width: 768px) {
	.attorneys-bio-banner .banner-right:before {
		content: none
	}
}

@media (min-width: 1365px) {
	.attorneys-bio-banner .banner-right:before {
		content: ''
	}
}

.attorneys-bio-banner .banner-right .bio-card {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	max-width: 580px;
	position: relative;
	z-index: 1
}

.attorneys-bio-banner .banner-right .bio-card .bio-image {
	-webkit-flex-basis: 300px;
	-ms-flex-preferred-size: 300px;
	flex-basis: 300px;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 300px
}

@media (max-width: 1200px) and (min-width: 1024px) {
	.attorneys-bio-banner .banner-right .bio-card .bio-image {
		-webkit-flex-basis: 245px;
		-ms-flex-preferred-size: 245px;
		flex-basis: 245px;
		max-width: 245px
	}
}

@media (max-width: 1023px) {
	.attorneys-bio-banner .banner-right .bio-card .bio-image {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%
	}
}

@media (max-width: 767px) {
	.attorneys-bio-banner .banner-right .bio-card .bio-image {
		-webkit-flex-basis: 300px;
		-ms-flex-preferred-size: 300px;
		flex-basis: 300px;
		max-width: 300px
	}
}

@media (max-width: 575px) {
	.attorneys-bio-banner .banner-right .bio-card .bio-image {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%
	}
}

.attorneys-bio-banner .banner-right .bio-card .bio-image img {
	width: auto !important
}

.attorneys-bio-banner .banner-right .bio-card .bio-text {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: white;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-basis: -webkit-calc(100% - 300px);
	-ms-flex-preferred-size: calc(100% - 300px);
	flex-basis: -moz-calc(100% - 300px);
	flex-basis: calc(100% - 300px);
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 28px;
	max-width: -webkit-calc(100% - 300px);
	max-width: -moz-calc(100% - 300px);
	max-width: calc(100% - 300px);
	padding: 20px
}

@media (max-width: 1200px) and (min-width: 1024px) {
	.attorneys-bio-banner .banner-right .bio-card .bio-text {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		font-size: 1rem;
		line-height: 1.3;
		max-width: 100%
	}
}

@media (max-width: 1023px) {
	.attorneys-bio-banner .banner-right .bio-card .bio-text {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%
	}
}

@media (max-width: 767px) {
	.attorneys-bio-banner .banner-right .bio-card .bio-text {
		-webkit-flex-basis: -webkit-calc(100% - 300px);
		-ms-flex-preferred-size: calc(100% - 300px);
		flex-basis: -moz-calc(100% - 300px);
		flex-basis: calc(100% - 300px);
		max-width: -webkit-calc(100% - 300px);
		max-width: -moz-calc(100% - 300px);
		max-width: calc(100% - 300px)
	}
}

@media (max-width: 575px) {
	.attorneys-bio-banner .banner-right .bio-card .bio-text {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%
	}
}

.attorneys-bio-banner .banner-right .bio-card .bio-text p {
	margin: 0
}

.content .mainCon .mainConIn .leftCon .attorneys-tab-content li {
	padding-bottom: 0
}

.content .mainCon .mainConIn .leftCon .attorneys-tab-content li p {
	color: black;
	font-size: 18px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 20px;
	margin-top: 0
}

@media (max-width: 1199px) {
	.content .mainCon .mainConIn .leftCon .attorneys-tab-content li p {
		font-size: 16px;
		line-height: 20px
	}
}

@media (max-width: 767px) {
	.content .mainCon .mainConIn .leftCon .attorneys-tab-content li p {
		font-size: 13px;
		line-height: 17px
	}
}

.content .mainCon .mainConIn .leftCon .attorneys-tab-content li h3,
.content .mainCon .mainConIn .leftCon .attorneys-tab-content li h4 {
	font-size: 18px
}

.content .mainCon .mainConIn .leftCon .attorneys-tab-content#tab li ul {
	margin-bottom: 20px;
	padding-left: 20px;
	padding-top: 0
}

.content .mainCon .mainConIn .leftCon .attorneys-tab-content#tab li ul li {
	background-image: none;
	color: black;
	font-size: 18px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 24px;
	list-style: outside disc;
	margin: 0;
	padding: 0
}

@media (max-width: 1199px) {
	.content .mainCon .mainConIn .leftCon .attorneys-tab-content#tab li ul li {
		font-size: 16px;
		line-height: 20px
	}
}

@media (max-width: 767px) {
	.content .mainCon .mainConIn .leftCon .attorneys-tab-content#tab li ul li {
		font-size: 13px;
		line-height: 17px
	}
}

.content .mainCon .mainConIn .leftCon .attorneys-tab-content#tab li ul li:not(:last-child) {
	margin-bottom: 5px
}

.content .mainCon .mainConIn .leftCon .adv-upcoming-event {
	border-top: 2px solid #cce5e5;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 5px;
	padding-top: 30px
}

.content .mainCon .mainConIn .leftCon .adv-upcoming-event .upcoming-event-card {
	background-color: #0033a1;
	background: -webkit-linear-gradient(32deg, #007aff 0%, #67d534 71%, #ffff4c 100%);
	background: -moz-linear-gradient(32deg, #007aff 0%, #67d534 71%, #ffff4c 100%);
	background: -o-linear-gradient(32deg, #007aff 0%, #67d534 71%, #ffff4c 100%);
	background: linear-gradient(58deg, #007aff 0%, #67d534 71%, #ffff4c 100%);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-basis: 50%;
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-bottom: 30px;
	max-width: 50%;
	padding: 30px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

@media (max-width: 767px) {
	.content .mainCon .mainConIn .leftCon .adv-upcoming-event .upcoming-event-card {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
		padding: 20px 15px
	}
}

.content .mainCon .mainConIn .leftCon .adv-upcoming-event .upcoming-event-card h5 {
	color: white;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	line-height: 20px;
	margin-bottom: 45px;
	margin-top: 0;
	padding-bottom: 1rem;
	position: relative;
	text-transform: uppercase
}

.content .mainCon .mainConIn .leftCon .adv-upcoming-event .upcoming-event-card h5:after {
	background-color: #00ced3;
	content: '';
	height: 5px;
	left: 0;
	position: absolute;
	top: 100%;
	width: 50px
}

.content .mainCon .mainConIn .leftCon .adv-upcoming-event .upcoming-event-card h2 {
	color: white;
	font-size: 28px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 700;
	margin-bottom: 15px;
	margin-top: 0;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%
}

.content .mainCon .mainConIn .leftCon .adv-upcoming-event .upcoming-event-card p {
	color: white;
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	line-height: 28px;
	margin: 0;
	text-align: right
}

.content .mainCon .mainConIn .leftCon .adv-upcoming-event .upcoming-event-card p span {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #e7ff00;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex
}

.content .mainCon .mainConIn .leftCon .adv-upcoming-event .upcoming-event-card p span i {
	font-size: 18px;
	line-height: 10px;
	margin-left: 6px;
	margin-top: 4px
}

.content .mainCon .mainConIn .leftCon .adv-upcoming-event .upcoming-event-card:hover {
	text-decoration: none
}

.content .mainCon .mainConIn .leftCon .adv-upcoming-event .upcoming-event-card:hover p span {
	color: #00ced3
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar {
	background-color: white;
	padding-bottom: 60px
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-practice {
	margin-bottom: 30px;
	max-width: 320px
}

@media (max-width: 1023px) {
	.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-practice {
		max-width: 100%
	}
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-practice h4 {
	color: #426191;
	font-size: 18px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	line-height: 24px;
	margin-bottom: 25px;
	margin-top: 0;
	padding-bottom: 1rem;
	position: relative;
	text-transform: uppercase
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-practice h4:after {
	background-color: #00ced3;
	content: '';
	height: 5px;
	left: 0;
	position: absolute;
	top: 100%;
	width: 50px
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-practice p {
	color: #426191;
	font-size: 18px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 24px;
	margin: 0
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-practice p:not(:last-child) {
	margin-bottom: 10px
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-practice ul,  .sidebar-practice ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	list-style: outside none;
	margin: 0;
	padding: 0
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-practice ul li,  .sidebar-practice ul li {
	color: #426191;
	font-size: 18px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 24px;
	padding: 0
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-practice ul li:not(:last-child),  .sidebar-practice ul li:not(:last-child) {
	margin-bottom: 8px
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-practice ul li a, .sidebar-practice ul li a  {
	color: #426191;
	font-size: 18px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 24px;
	text-decoration: underline;
	-webkit-text-decoration-color: #7fe6e9;
	-moz-text-decoration-color: #7fe6e9;
	text-decoration-color: #7fe6e9;
	text-underline-position: under;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-practice ul li a:hover {
	color: #00ced3 !important;
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-accordion {
	max-width: 320px
}

@media (max-width: 1023px) {
	.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-accordion {
		max-width: 100%
	}
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-accordion h3 {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #f0f2f2;
	border: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #426191;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	-moz-box-orient: horizontal;
	-moz-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	font-size: 18px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 24px;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0;
	padding: 15px;
	text-transform: uppercase
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-accordion h3 .ui-accordion-header-icon {
	background-image: none;
	font-size: 20px;
	height: auto;
	text-indent: 0;
	width: auto
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-accordion h3[aria-expanded="true"] {
	color: #0031ff
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-accordion .ui-accordion-content {
	background-color: transparent;
	border: none;
	padding: 15px 15px 0
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-accordion .ui-accordion-content address {
	color: #426191;
	font-size: 18px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	font-style: normal;
	line-height: 24px;
	margin: 0
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-accordion .ui-accordion-content p {
	color: #426191;
	font-size: 18px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 20px;
	margin-top: 0
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-accordion .ui-accordion-content ul,
.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-accordion .ui-accordion-content ol {
	margin-bottom: 20px !important;
	padding: 0 0 0 20px
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-accordion .ui-accordion-content ul li,
.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-accordion .ui-accordion-content ol li {
	color: #426191;
	font-size: 18px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 24px
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-accordion .ui-accordion-content ul li:not(:last-child),
.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-accordion .ui-accordion-content ol li:not(:last-child) {
	margin-bottom: 10px;
	padding: 0
}

.content .mainCon .mainConIn .sidebar.attorneys-sidebar .sidebar-accordion .ui-accordion-content+h3 {
	margin-top: 30px
}

.services-banner-all .services-banner {
	position: relative
}

.services-banner-all .services-banner .services-banner-title {
	border-bottom: 1px solid #99cccc;
	margin-bottom: 45px;
	padding-bottom: 25px;
	padding-top: 65px;
	position: relative
}

.services-banner-all .services-banner .services-banner-title h1 {
	color: white;
	font-size: 84px;
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	line-height: 94px;
	margin: 0
}

@media (max-width: 767px) {
	.services-banner-all .services-banner .services-banner-title h1 {
		font-size: 50px;
		line-height: 60px
	}
}

.services-banner-all .services-banner .services-banner-title .social-icon {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	right: 0;
	top: 30px
}

@media (min-width: 768px) {
	.services-banner-all .services-banner .services-banner-title .social-icon {
		right: 12%
	}
}

.services-banner-all .services-banner .services-banner-title .social-icon a {
	opacity: 1;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.services-banner-all .services-banner .services-banner-title .social-icon a:not(:last-child) {
	margin-right: 20px
}

.services-banner-all .services-banner .services-banner-title .social-icon a:hover {
	opacity: 1
}

.services-banner-all .services-banner .services-banner-search .services-search-form {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-moz-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 20px
}

.services-banner-all .services-banner .services-banner-search .services-search-form .search-input {
	background-color: #557ab7;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-basis: 40%;
	-ms-flex-preferred-size: 40%;
	flex-basis: 40%;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-bottom: 30px;
	max-width: 40%
}

@media (max-width: 1364px) {
	.services-banner-all .services-banner .services-banner-search .services-search-form .search-input {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%
	}
}

.services-banner-all .services-banner .services-banner-search .services-search-form .search-input .search {
	background-color: #557ab7;
	border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	color: white;
	font-size: 18px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 700;
	height: 60px;
	line-height: 1;
	padding: 15px;
	padding-right: 0;
	width: 100%
}

.services-banner-all .services-banner .services-banner-search .services-search-form .search-input .search::-webkit-input-placeholder {
	color: white;
	opacity: 1
}

.services-banner-all .services-banner .services-banner-search .services-search-form .search-input .search:-webkit-input-placeholder {
	color: white;
	opacity: 1
}

.services-banner-all .services-banner .services-banner-search .services-search-form .search-input .search::-moz-placeholder {
	color: white;
	opacity: 1
}

.services-banner-all .services-banner .services-banner-search .services-search-form .search-input .search:-moz-placeholder {
	color: white;
	opacity: 1
}

.services-banner-all .services-banner .services-banner-search .services-search-form .search-input .search::-ms-input-placeholder {
	color: white;
	opacity: 1
}

.services-banner-all .services-banner .services-banner-search .services-search-form .search-input .search:-ms-input-placeholder {
	color: white;
	opacity: 1
}

.services-banner-all .services-banner .services-banner-search .services-search-form .search-input button {
	background-color: #557ab7;
	border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	font-size: 13px;
	height: 60px;
	line-height: 1;
	padding: 15px
}

.services-banner-all .services-banner .services-banner-search .services-search-form .search-input button img {
	width: 30px
}

.services-banner-all .services-banner .services-banner-search .services-search-form .services-all-text {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-basis: 60%;
	-ms-flex-preferred-size: 60%;
	flex-basis: 60%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-bottom: 25px;
	max-width: 60%;
	padding-left: 30px
}

@media (max-width: 1364px) {
	.services-banner-all .services-banner .services-banner-search .services-search-form .services-all-text {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
		padding-left: 0
	}
}

.services-banner-all .services-banner .services-banner-search .services-search-form .services-all-text p {
	color: white;
	font-size: 24px;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	line-height: 30px;
	margin: 0
}

.services-banner-single .services-banner {
	position: relative
}

.services-banner-single .services-banner .services-banner-title {
	/*border-bottom: 1px solid #99cccc;*/
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	/*margin-bottom: 45px;*/
	padding-bottom: 25px;
	padding-top: 30px;
	position: relative
}

.services-banner-single .services-banner .services-banner-title .breadcrumb-icon {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 10px
}

.services-banner-single .services-banner .services-banner-title .breadcrumb-icon .breadcrumb {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	list-style: outside none;
	margin: 0;
	padding: 0
}

.services-banner-single .services-banner .services-banner-title .breadcrumb-icon .breadcrumb li {
	line-height: 1
}

.services-banner-single .services-banner .services-banner-title .breadcrumb-icon .breadcrumb li:not(:last-child) {
	margin-right: 5px
}

.services-banner-single .services-banner .services-banner-title .breadcrumb-icon .breadcrumb li a {
	color: #99cccc;
	line-height: 20px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.services-banner-single .services-banner .services-banner-title .breadcrumb-icon .breadcrumb li a:hover {
	color: white
}

.services-banner-single .services-banner .services-banner-title .breadcrumb-icon .breadcrumb li i {
	color: #99cccc;
	font-size: 20px
}

.services-banner-single .services-banner .services-banner-title .breadcrumb-icon .social-icon {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	margin-right: 12%
}

@media (max-width: 767px) {
	.services-banner-single .services-banner .services-banner-title .breadcrumb-icon .social-icon {
		margin-right: 0
	}
}

.services-banner-single .services-banner .services-banner-title .breadcrumb-icon .social-icon a {
	opacity: 0.5;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.services-banner-single .services-banner .services-banner-title .breadcrumb-icon .social-icon a:not(:last-child) {
	margin-right: 20px
}

.services-banner-single .services-banner .services-banner-title .breadcrumb-icon .social-icon a:hover {
	opacity: 1
}

.services-banner-single .services-banner .services-banner-title h1 {
	color: white;
	font-size: 84px;
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	line-height: 94px;
	margin: 0;
	width: 100%
}

@media (max-width: 1023px) {
	.services-banner-single .services-banner .services-banner-title h1 {
		font-size: 50px;
		line-height: 60px
	}
}

.services-banner-single .services-banner .services-banner-single-text {
	padding-bottom: 40px
}

.services-banner-single .services-banner .services-banner-single-text p {
	color: white;
	font-size: 24px;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	line-height: 30px;
	margin: 0
}

.services-all {
	padding-bottom: 30px;
	padding-top: 60px
}

.services-all .services-all-row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.services-all .services-all-row .services-all-content {
	-webkit-flex-basis: -webkit-calc(100% - 400px);
	-ms-flex-preferred-size: calc(100% - 400px);
	flex-basis: -moz-calc(100% - 400px);
	flex-basis: calc(100% - 400px);
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: -webkit-calc(100% - 400px);
	max-width: -moz-calc(100% - 400px);
	max-width: calc(100% - 400px);
	padding-right: 30px
}

@media (max-width: 1023px) {
	.services-all .services-all-row .services-all-content {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
		padding-right: 0
	}
}

.services-all .services-all-row .services-all-content .services-list {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.services-all .services-all-row .services-all-content .services-list .services-list-item {
	border-bottom: 1px solid #b2d9d9;
	color: #426191;
	-webkit-flex-basis: -webkit-calc(50% - 10px);
	-ms-flex-preferred-size: calc(50% - 10px);
	flex-basis: -moz-calc(50% - 10px);
	flex-basis: calc(50% - 10px);
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	font-size: 24px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 700;
	line-height: 30px;
	max-width: -webkit-calc(50% - 10px);
	max-width: -moz-calc(50% - 10px);
	max-width: calc(50% - 10px);
	padding: 15px 0;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

@media (max-width: 1023px) {
	.services-all .services-all-row .services-all-content .services-list .services-list-item {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%
	}
}

.services-all .services-all-row .services-all-content .services-list .services-list-item:nth-child(2n+1) {
	margin-right: 20px
}

@media (max-width: 1023px) {
	.services-all .services-all-row .services-all-content .services-list .services-list-item:nth-child(2n+1) {
		margin-right: 0
	}
}

.services-all .services-all-row .services-all-content .services-list .services-list-item:hover {
	color: #00ced3;
	text-decoration: none
}

.services-all .services-all-row .services-all-sidebar {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-basis: 400px;
	-ms-flex-preferred-size: 400px;
	flex-basis: 400px;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	max-width: 400px
}

@media (max-width: 1023px) {
	.services-all .services-all-row .services-all-sidebar {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
		padding-top: 60px
	}
}

.content .mainCon .mainConIn .leftCon .services-tab-content li {
	padding-bottom: 0
}

.content .mainCon .mainConIn .leftCon .services-tab-content li p {
	color: black;
	font-size: 18px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 20px;
	margin-top: 0
}

@media (max-width: 1199px) {
	.content .mainCon .mainConIn .leftCon .services-tab-content li p {
		font-size: 16px;
		line-height: 20px
	}
}

@media (max-width: 767px) {
	.content .mainCon .mainConIn .leftCon .services-tab-content li p {
		font-size: 13px;
		line-height: 17px
	}
}

.content .mainCon .mainConIn .leftCon .services-tab-content li .services-related-items {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.content .mainCon .mainConIn .leftCon .services-tab-content li .services-related-items:not(:last-child) {
	margin-bottom: 30px
}

.content .mainCon .mainConIn .leftCon .services-tab-content li .services-related-items h4 {
	color: #426191;
	font-size: 24px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 700;
	line-height: 32px;
	margin: 0
}

.content .mainCon .mainConIn .leftCon .services-tab-content li .services-related-items .services-related-items-group {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.content .mainCon .mainConIn .leftCon .services-tab-content li .services-related-items .services-related-items-group .services-related-item {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	border-bottom: 1px solid #b2d9d9;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-bottom: 15px
}

.content .mainCon .mainConIn .leftCon .services-tab-content li .services-related-items .services-related-items-group .services-related-item:not(:last-child) {
	margin-bottom: 15px
}

.content .mainCon .mainConIn .leftCon .services-tab-content li .services-related-items .services-related-items-group .services-related-item span {
	color: #46809b;
	font-size: 16px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 32px
}

.content .mainCon .mainConIn .leftCon .services-tab-content li .services-related-items .services-related-items-group .services-related-item a {
	color: #426191;
	font-size: 18px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 24px;
	max-width: 100%;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	width: auto
}

.content .mainCon .mainConIn .leftCon .services-tab-content li .services-related-items .services-related-items-group .services-related-item a:hover {
	color: #0031ff;
	text-decoration: none
}

.content .mainCon .mainConIn .leftCon .services-tab-content li .services-related-items:last-child .services-related-items-group .services-related-item:last-child {
	border: none
}

.content .mainCon .mainConIn .leftCon .services-tab-content#tab li ul {
	margin-bottom: 20px;
	padding-left: 20px;
	padding-top: 0
}

.content .mainCon .mainConIn .leftCon .services-tab-content#tab li ul li {
	background-image: none;
	color: black;
	font-size: 18px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 24px;
	list-style: outside disc;
	margin: 0;
	padding: 0
}

@media (max-width: 1199px) {
	.content .mainCon .mainConIn .leftCon .services-tab-content#tab li ul li {
		font-size: 16px;
		line-height: 20px
	}
}

@media (max-width: 767px) {
	.content .mainCon .mainConIn .leftCon .services-tab-content#tab li ul li {
		font-size: 13px;
		line-height: 17px
	}
}

.content .mainCon .mainConIn .leftCon .services-tab-content#tab li ul li:not(:last-child) {
	margin-bottom: 5px
}

.content .mainCon .mainConIn .leftCon .services-areaoffocus {
	border-top: 2px solid #cce5e5;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 5px;
	padding-top: 30px
}

.content .mainCon .mainConIn .leftCon .services-areaoffocus .areafocus {
	-webkit-flex-basis: -webkit-calc(100% - 400px);
	-ms-flex-preferred-size: calc(100% - 400px);
	flex-basis: -moz-calc(100% - 400px);
	flex-basis: calc(100% - 400px);
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: -webkit-calc(100% - 400px);
	max-width: -moz-calc(100% - 400px);
	max-width: calc(100% - 400px);
	margin-bottom: 30px;
	padding-right: 30px
}

@media (max-width: 1023px) {
	.content .mainCon .mainConIn .leftCon .services-areaoffocus .areafocus {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
		padding-right: 0
	}
}

.content .mainCon .mainConIn .leftCon .services-areaoffocus .areafocus h5 {
	color: #426191;
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 30px;
	margin-bottom: 25px;
	margin-top: 0;
	padding-bottom: 1rem;
	position: relative;
	text-transform: uppercase
}

.content .mainCon .mainConIn .leftCon .services-areaoffocus .areafocus h5:after {
	background-color: #00ced3;
	content: '';
	height: 5px;
	left: 0;
	position: absolute;
	top: 100%;
	width: 50px
}

.content .mainCon .mainConIn .leftCon .services-areaoffocus .areafocus ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	list-style: outside none;
	margin: 0;
	padding: 0
}

.content .mainCon .mainConIn .leftCon .services-areaoffocus .areafocus ul li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex
}

.content .mainCon .mainConIn .leftCon .services-areaoffocus .areafocus ul li a {
	color: #426191;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 26px;
	text-decoration: underline;
	-webkit-text-decoration-color: #e5f2f2;
	-moz-text-decoration-color: #e5f2f2;
	text-decoration-color: #e5f2f2;
	text-transform: uppercase;
	text-underline-position: under;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

@media (max-width: 767px) {
	.content .mainCon .mainConIn .leftCon .services-areaoffocus .areafocus ul li a {
		font-size: 13px;
		line-height: 17px
	}
}

.content .mainCon .mainConIn .leftCon .services-areaoffocus .areafocus ul li a:hover {
	color: #0031ff;
	text-decoration: none
}

.content .mainCon .mainConIn .leftCon .services-areaoffocus .services-featured-ad {
	-webkit-flex-basis: 400px;
	-ms-flex-preferred-size: 400px;
	flex-basis: 400px;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 400px
}

@media (max-width: 1023px) {
	.content .mainCon .mainConIn .leftCon .services-areaoffocus .services-featured-ad {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%
	}
}

.content .mainCon .mainConIn .sidebar .services-attorneys {
	margin-bottom: 30px
}

.content .mainCon .mainConIn .sidebar .services-attorneys h5 {
	color: #426191;
	font-size: 18px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 25px;
	margin-top: 0;
	padding-bottom: 1rem;
	position: relative;
	text-transform: uppercase
}

.content .mainCon .mainConIn .sidebar .services-attorneys h5:after {
	background-color: #00ced3;
	content: '';
	height: 5px;
	left: 0;
	position: absolute;
	top: 100%;
	width: 50px
}

.content .mainCon .mainConIn .sidebar .services-attorneys .services-attorneys-group {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px
}

.content .mainCon .mainConIn .sidebar .services-attorneys .services-attorneys-group .services-attorneys-item {
	-webkit-flex-basis: 160px;
	-ms-flex-preferred-size: 160px;
	flex-basis: 160px;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 160px;
	margin-bottom: 20px;
	padding-left: 10px;
	padding-right: 10px
}

@media (max-width: 1023px) {
	.content .mainCon .mainConIn .sidebar .services-attorneys .services-attorneys-group .services-attorneys-item {
		-webkit-flex-basis: 25%;
		-ms-flex-preferred-size: 25%;
		flex-basis: 25%;
		max-width: 25%
	}
}

@media (max-width: 575px) {
	.content .mainCon .mainConIn .sidebar .services-attorneys .services-attorneys-group .services-attorneys-item {
		-webkit-flex-basis: 50%;
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%
	}
}

.content .mainCon .mainConIn .sidebar .services-attorneys .services-attorneys-group .services-attorneys-item .services-attorneys-link {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.content .mainCon .mainConIn .sidebar .services-attorneys .services-attorneys-group .services-attorneys-item .services-attorneys-link img {
	width: 100%
}

.content .mainCon .mainConIn .sidebar .services-attorneys .services-attorneys-group .services-attorneys-item .services-attorneys-link .image {
	overflow: hidden;
	position: relative
}

.content .mainCon .mainConIn .sidebar .services-attorneys .services-attorneys-group .services-attorneys-item .services-attorneys-link .image .mask {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: rgba(34, 50, 160, 0.35);
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	height: 100%;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: white;
	font-size: 15px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 20px;
	left: 0;
	padding: 10px;
	position: absolute;
	top: 0;
	text-align: center;
	text-transform: uppercase;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	width: 100%
}

.content .mainCon .mainConIn .sidebar .services-attorneys .services-attorneys-group .services-attorneys-item .services-attorneys-link span {
	color: #0033a1;
	font-size: 14px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 18px;
	padding-top: 10px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}
.content .mainCon .mainConIn .sidebar .services-attorneys .services-attorneys-group .services-attorneys-item .services-attorneys-link span:hover {color: #00ced3 !important;}
.content .mainCon .mainConIn .sidebar .services-attorneys .services-attorneys-group .services-attorneys-item .services-attorneys-link:hover {
	text-decoration: none !important
}

.content .mainCon .mainConIn .sidebar .services-attorneys .services-attorneys-group .services-attorneys-item .services-attorneys-link:hover .image .mask {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0)
}

.newsevents-banner-single .newsevents-banner {
	position: relative
}

.newsevents-banner-single .newsevents-banner .newsevents-banner-title {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-bottom: 25px;
	padding-top: 30px;
	position: relative
}

.newsevents-banner-single .newsevents-banner .newsevents-banner-title .breadcrumb-icon {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 10px
}

.newsevents-banner-single .newsevents-banner .newsevents-banner-title .breadcrumb-icon .breadcrumb {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	list-style: outside none;
	margin: 0;
	padding: 0
}

.newsevents-banner-single .newsevents-banner .newsevents-banner-title .breadcrumb-icon .breadcrumb li {
	line-height: 1
}

.newsevents-banner-single .newsevents-banner .newsevents-banner-title .breadcrumb-icon .breadcrumb li:not(:last-child) {
	margin-right: 5px
}

.newsevents-banner-single .newsevents-banner .newsevents-banner-title .breadcrumb-icon .breadcrumb li a {
	color: #99cccc;
	line-height: 20px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.newsevents-banner-single .newsevents-banner .newsevents-banner-title .breadcrumb-icon .breadcrumb li a:hover {
	color: white
}

.newsevents-banner-single .newsevents-banner .newsevents-banner-title .breadcrumb-icon .breadcrumb li i {
	color: #99cccc;
	font-size: 20px
}

.newsevents-banner-single .newsevents-banner .newsevents-banner-title .breadcrumb-icon .social-icon {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	margin-right: 12%
}

@media (max-width: 767px) {
	.newsevents-banner-single .newsevents-banner .newsevents-banner-title .breadcrumb-icon .social-icon {
		margin-right: 0
	}
}

.newsevents-banner-single .newsevents-banner .newsevents-banner-title .breadcrumb-icon .social-icon a {
	opacity: 0.5;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.newsevents-banner-single .newsevents-banner .newsevents-banner-title .breadcrumb-icon .social-icon a:not(:last-child) {
	margin-right: 20px
}

.newsevents-banner-single .newsevents-banner .newsevents-banner-title .breadcrumb-icon .social-icon a:hover {
	opacity: 1
}

.newsevents-banner-single .newsevents-banner .newsevents-banner-title h2,
.newsevents-banner-single .newsevents-banner .newsevents-banner-title .heading {
	color: white;
	font-size: 84px;
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	line-height: 94px;
	margin: 0;
	width: 100%
}

@media (max-width: 1023px) {
	.newsevents-banner-single .newsevents-banner .newsevents-banner-title h2,
	.newsevents-banner-single .newsevents-banner .newsevents-banner-title .heading {
		font-size: 50px;
		line-height: 60px
	}
}

.content .mainCon.newsevent .mainConIn .leftCon {
	padding-left: 0
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single {
	padding-left: 100px
}

@media (max-width: 1364px) {
	.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single {
		padding-left: 25px
	}
}

@media (max-width: 1199px) {
	.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single {
		padding-left: 15px
	}
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single h5 {
	color: #426191;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 26px;
	margin-bottom: 25px;
	margin-top: 0;
	padding-bottom: 1rem;
	position: relative;
	text-transform: uppercase
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single h5:after {
	background-color: #00ced3;
	content: '';
	height: 5px;
	left: 0;
	position: absolute;
	top: 100%;
	width: 50px
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single h1 {
	color: #0033a1;
	font-size: 32px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 42px;
	margin-bottom: 15px;
	margin-top: 0
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single img {
	display: block;
	height: auto;
	max-width: 100%;
    /*float: left;
    margin: 0 20px 20px 0;*/
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single .image-box {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%
}

@media (max-width: 767px) {
	.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single .image-box {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single .image-box .image {
	-webkit-flex-basis: -webkit-calc(100% - 240px);
	-ms-flex-preferred-size: calc(100% - 240px);
	flex-basis: -moz-calc(100% - 240px);
	flex-basis: calc(100% - 240px);
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: -webkit-calc(100% - 240px);
	max-width: -moz-calc(100% - 240px);
	max-width: calc(100% - 240px);
	padding-right: 20px
}

@media (max-width: 767px) {
	.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single .image-box .image {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
		padding-right: 0
	}
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single .image-box .image img {
	width: 100%
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single .image-box .text {
	-webkit-flex-basis: 240px;
	-ms-flex-preferred-size: 240px;
	flex-basis: 240px;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 240px
}

@media (max-width: 767px) {
	.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single .image-box .text {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%
	}
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single .image-box .text .info {
	border-top: 3px solid #00ced3;
	color: black;
	font-size: 14px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-style: italic;
	line-height: 20px;
	padding-top: 30px
}

@media (max-width: 767px) {
	.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single .image-box .text .info {
		font-style: 14px;
		line-height: 20px;
		padding-bottom: 0
	}
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single .image-box.wt-full {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single .image-box.wt-full .image {
	-webkit-flex-basis: 100%;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	max-width: 100%
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single .image-box.wt-full .text {
	-webkit-flex-basis: 100%;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	max-width: 100%
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-feature {
	padding-left: 100px
}

@media (max-width: 1364px) {
	.content .mainCon.newsevent .mainConIn .leftCon .newsevent-feature {
		padding-left: 25px
	}
}

@media (max-width: 1199px) {
	.content .mainCon.newsevent .mainConIn .leftCon .newsevent-feature {
		padding-left: 15px
	}
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-feature .news-event-group {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
	position: relative
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-feature .news-event-group .news-event-item {
	-webkit-flex-basis: 33.3333%;
	-ms-flex-preferred-size: 33.3333%;
	flex-basis: 33.3333%;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 33.3333%;
	margin-bottom: 30px;
	padding: 20px 15px
}

@media (max-width: 767px) {
	.content .mainCon.newsevent .mainConIn .leftCon .newsevent-feature .news-event-group .news-event-item {
		-webkit-flex-basis: 50%;
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%
	}
}

@media (max-width: 575px) {
	.content .mainCon.newsevent .mainConIn .leftCon .newsevent-feature .news-event-group .news-event-item {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%
	}
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-feature .news-event-group .news-event-item h5 {
	color: #729eb3;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	line-height: 26px;
	margin-bottom: 30px;
	margin-top: 0;
	padding-bottom: 10px;
	position: relative;
	text-transform: uppercase
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-feature .news-event-group .news-event-item h5:after {
	background-color: #00ffff;
	content: '';
	height: 5px;
	left: 0;
	position: absolute;
	top: 100%;
	width: 50px
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-feature .news-event-group .news-event-item a {
	color: #426191;
	font-size: 20px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 24px;
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-feature .news-event-group .news-event-item a span {
	color: #00ffff;
	display: inline-block;
	margin-left: 10px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-feature .news-event-group .news-event-item a:hover {
	color: #0033a1
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-feature .news-event-group .news-event-item a:hover span {
	color: #0033a1
}

.content .mainCon.newsevent .mainConIn .leftCon .tabinner .tabMenu .tabs .selected a {
	color: #426191
}

.content .mainCon.newsevent .mainConIn .leftCon .tabinner .tabMenu .tabs .selected a.current {
	color: #426191
}

.content .mainCon.newsevent .mainConIn .leftCon .publication-content {
	padding-left: 100px !important
}

@media (max-width: 1364px) {
	.content .mainCon.newsevent .mainConIn .leftCon .publication-content {
		padding-left: 25px !important
	}
}

@media (max-width: 1199px) {
	.content .mainCon.newsevent .mainConIn .leftCon .publication-content {
		padding-left: 15px !important
	}
}

.content .mainCon.newsevent .mainConIn .leftCon .publication-content ul.newsevents-tab-content {
	padding-left: 0 !important
}

.content .mainCon.newsevent .mainConIn .leftCon .publication-content h2 {
	color: #426191;
	font-size: 28px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 700;
	line-height: 32px;
	margin: 0
}

.content .mainCon.newsevent .mainConIn .leftCon .publication-content .publication-content-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	list-style: outside none;
	margin: 0 0 30px;
	padding: 0
}

.content .mainCon.newsevent .mainConIn .leftCon .publication-content .publication-content-list .publication-content-list-item {
	border-bottom: 1px solid #b2d9d9;
	color: #426191;
	font-size: 20px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 24px;
	padding: 10px 0
}

.content .mainCon.newsevent .mainConIn .leftCon .publication-content .publication-content-list .publication-content-list-item a {
	color: #426191;
	text-decoration: underline;
	-webkit-text-decoration-color: #7fe6e9;
	-moz-text-decoration-color: #7fe6e9;
	text-decoration-color: #7fe6e9;
	text-underline-position: under;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.content .mainCon.newsevent .mainConIn .leftCon .publication-content .publication-content-list .publication-content-list-item a:first-child {
	text-decoration: none
}

.content .mainCon.newsevent .mainConIn .leftCon .publication-content .publication-content-list .publication-content-list-item a:hover {
	color: #0031ff
}

.content .mainCon.newsevent .mainConIn .leftCon .publication-content .publication-content-list .publication-content-list-item a:hover:first-child {
	text-decoration: underline;
	-webkit-text-decoration-color: #7fe6e9;
	-moz-text-decoration-color: #7fe6e9;
	text-decoration-color: #7fe6e9
}

.content .mainCon.newsevent .mainConIn .leftCon .publication-content .publication-content-list.archive {
	margin-top: 20px
}

.content .mainCon.newsevent .mainConIn .leftCon .publication-content .publication-content-list.archive .publication-content-list-item {
	border: none;
	padding: 0
}

.content .mainCon.newsevent .mainConIn .leftCon .publication-content .publication-content-list.archive .publication-content-list-item:not(:last-child) {
	margin-bottom: 10px
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevents-tab-content {
	padding-left: 100px !important
}

@media (max-width: 1364px) {
	.content .mainCon.newsevent .mainConIn .leftCon .newsevents-tab-content {
		padding-left: 25px !important
	}
}

@media (max-width: 1199px) {
	.content .mainCon.newsevent .mainConIn .leftCon .newsevents-tab-content {
		padding-left: 15px !important
	}
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevents-tab-content li {
	padding-bottom: 0
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevents-tab-content li .newsevents-item-group {
	margin-bottom: 40px;
	padding-top: 40px
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevents-tab-content li .newsevents-item-group .newsevents-item {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	border-bottom: 1px solid #b2d9d9;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-bottom: 15px
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevents-tab-content li .newsevents-item-group .newsevents-item:not(:last-child) {
	margin-bottom: 15px
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevents-tab-content li .newsevents-item-group .newsevents-item span {
	color: #46809b;
	font-size: 16px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 32px
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevents-tab-content li .newsevents-item-group .newsevents-item a {
	color: #426191;
	font-size: 20px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 24px;
	max-width: 100%;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	width: auto
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevents-tab-content li .newsevents-item-group .newsevents-item a:hover {
	color: #0031ff;
	text-decoration: none
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevents-tab-content li .load-more {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 65px
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevents-tab-content li .load-more button {
	background-color: transparent;
	border: none;
	color: #729eb3;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	padding-bottom: 20px;
	padding-left: 0;
	padding-right: 0;
	padding-top: 0;
	position: relative;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevents-tab-content li .load-more button:after {
	background-color: #00ffff;
	content: '';
	height: 5px;
	left: -webkit-calc(50% - 25px);
	left: -moz-calc(50% - 25px);
	left: calc(50% - 25px);
	position: absolute;
	top: 100%;
	width: 50px
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevents-tab-content li .load-more button:hover {
	color: #00ffff
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevents-tab-content li .pagination {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 40px !important;
	padding: 0 !important
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevents-tab-content li .pagination .pagination-item {
	background-image: none !important;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	line-height: 1;
	padding: 0 !important
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevents-tab-content li .pagination .pagination-item:not(:last-child) {
	margin-right: 15px
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevents-tab-content li .pagination .pagination-item a {
	color: #729eb3;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	line-height: 20px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevents-tab-content li .pagination .pagination-item a:hover {
	color: #0031ff;
	text-decoration: none
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevents-tab-content li .pagination .pagination-item.pagination-current a {
	color: #0031ff;
	cursor: default;
	pointer-events: none
}

.content .mainCon.newsevent .mainConIn .sidebar {
	background-color: white
}

.publication-filter {
	background-color: #dde5e7
}

.publication-filter .sp-container {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-top: 30px
}

.publication-filter .sp-container .publication-filter-label {
	color: #426191;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 20px;
	margin-bottom: 30px;
	margin-right: 30px;
	text-transform: uppercase
}

.publication-filter .sp-container .publication-filter-group {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.publication-filter .sp-container .publication-filter-group .publication-filter-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 30px
}

@media (max-width: 574px) {
	.publication-filter .sp-container .publication-filter-group .publication-filter-item {
		-webkit-flex-basis: 33.3333%;
		-ms-flex-preferred-size: 33.3333%;
		flex-basis: 33.3333%;
		max-width: 33.3333%
	}
}

@media (max-width: 423px) {
	.publication-filter .sp-container .publication-filter-group .publication-filter-item {
		-webkit-flex-basis: 50%;
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%
	}
}

.publication-filter .sp-container .publication-filter-group .publication-filter-item:not(:last-child) {
	margin-right: 90px
}

@media (max-width: 1023px) {
	.publication-filter .sp-container .publication-filter-group .publication-filter-item:not(:last-child) {
		margin-right: 30px
	}
}

@media (max-width: 767px) {
	.publication-filter .sp-container .publication-filter-group .publication-filter-item:not(:last-child) {
		margin-right: 15px
	}
}

@media (max-width: 574px) {
	.publication-filter .sp-container .publication-filter-group .publication-filter-item:not(:last-child) {
		margin-right: 0
	}
}

.publication-filter .sp-container .publication-filter-group .publication-filter-item span {
	color: #426191;
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 28px;
	text-align: center;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.publication-filter .sp-container .publication-filter-group .publication-filter-item span img {
	height: auto;
	margin-bottom: 12px;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.publication-filter .sp-container .publication-filter-group .publication-filter-item span img.image-after {
	display: none
}

.publication-filter .sp-container .publication-filter-group .publication-filter-item span img.image-before {
	display: block
}

.publication-filter .sp-container .publication-filter-group .publication-filter-item:hover {
	text-decoration: none
}

@media (min-width: 1200px) {
	.publication-filter .sp-container .publication-filter-group .publication-filter-item:hover span {
		color: #0033a1
	}
	.publication-filter .sp-container .publication-filter-group .publication-filter-item:hover span img.image-after {
		display: block
	}
	.publication-filter .sp-container .publication-filter-group .publication-filter-item:hover span img.image-before {
		display: none
	}
}

.publication-filter .sp-container .publication-filter-group .publication-filter-item.active span {
	color: #0033a1
}

.publication-filter .sp-container .publication-filter-group .publication-filter-item.active span img.image-after {
	display: block
}

.publication-filter .sp-container .publication-filter-group .publication-filter-item.active span img.image-before {
	display: none
}

.blog-banner-all {
	background-attachment: scroll;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover
}

.blog-banner-all .blog-banner {
	position: relative
}

.blog-banner-all .blog-banner .blog-banner-title {
	border-bottom: 1px solid #99cccc;
	margin-bottom: 45px;
	padding-bottom: 25px;
	padding-top: 65px;
	position: relative
}

.blog-banner-all .blog-banner .blog-banner-title h1 {
	color: white;
	font-size: 84px;
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	line-height: 94px;
	margin: 0
}

@media (max-width: 767px) {
	.blog-banner-all .blog-banner .blog-banner-title h1 {
		font-size: 50px;
		line-height: 60px
	}
}

.blog-banner-all .blog-banner .blog-banner-title .social-icon {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	right: 0;
	top: 30px
}

@media (min-width: 768px) {
	.blog-banner-all .blog-banner .blog-banner-title .social-icon {
		right: 12%
	}
}

.blog-banner-all .blog-banner .blog-banner-title .social-icon a {
	opacity: 0.5;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.blog-banner-all .blog-banner .blog-banner-title .social-icon a:not(:last-child) {
	margin-right: 20px
}

.blog-banner-all .blog-banner .blog-banner-title .social-icon a:hover {
	opacity: 1
}

.blog-banner-all .blog-banner .blog-banner-single-text {
	padding-bottom: 40px
}

.blog-banner-all .blog-banner .blog-banner-single-text p {
	color: white;
	font-size: 24px;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	line-height: 30px;
	margin: 0
}

.content .mainCon.blogs .mainConIn .leftCon .blogs-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.content .mainCon.blogs .mainConIn .leftCon .blogs-list .blogs-list-item {
	border-bottom: 1px solid #a5d2d2;
	margin-bottom: 30px;
	padding-bottom: 30px
}

.content .mainCon.blogs .mainConIn .leftCon .blogs-list .blogs-list-item h5 {
	color: #426191;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 26px;
	margin-bottom: 30px;
	margin-top: 0;
	padding-bottom: 10px;
	position: relative;
	text-transform: uppercase
}

.content .mainCon.blogs .mainConIn .leftCon .blogs-list .blogs-list-item h5 a {
	color: #0031ff;
	text-decoration: underline;
	text-underline-position: under
}

.content .mainCon.blogs .mainConIn .leftCon .blogs-list .blogs-list-item h5:after {
	background-color: #00ffff;
	content: '';
	height: 5px;
	left: 0;
	position: absolute;
	top: 100%;
	width: 50px
}

.content .mainCon.blogs .mainConIn .leftCon .blogs-list .blogs-list-item h2 {
	color: #0033a1;
	font-size: 32px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 42px;
	margin-bottom: 15px;
	margin-top: 0
}

.content .mainCon.blogs .mainConIn .leftCon .blogs-list .blogs-list-item h2 a {
	color: #0033a1;
	text-underline-position: under;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.content .mainCon.blogs .mainConIn .leftCon .blogs-list .blogs-list-item h2 a:hover {
	color: #0031ff;
	text-decoration: underline
}

.content .mainCon.blogs .mainConIn .leftCon .blogs-list .blogs-list-item .expert p {
	color: black;
	font-size: 20px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 30px;
	margin-bottom: 0;
	margin-top: 0;
	position: relative
}

.content .mainCon.blogs .mainConIn .leftCon .blogs-list .blogs-list-item .expert p:not(:last-child) {
	margin-bottom: 20px
}

.content .mainCon.blogs .mainConIn .leftCon .blogs-list .blogs-list-item .expert p a {
	color: #0031ff
}

.content .mainCon.blogs .mainConIn .leftCon .pagination {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 40px !important;
	padding: 0 !important
}

.content .mainCon.blogs .mainConIn .leftCon .pagination .pagination-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	line-height: 1;
	padding: 0 !important
}

.content .mainCon.blogs .mainConIn .leftCon .pagination .pagination-item:not(:last-child) {
	margin-right: 15px
}

.content .mainCon.blogs .mainConIn .leftCon .pagination .pagination-item a {
	color: #729eb3;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	line-height: 20px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.content .mainCon.blogs .mainConIn .leftCon .pagination .pagination-item a:hover {
	color: #0031ff;
	text-decoration: none
}

.content .mainCon.blogs .mainConIn .leftCon .pagination .pagination-item.pagination-current a {
	color: #0031ff;
	cursor: default;
	pointer-events: none
}

.content .mainCon.blogs .mainConIn .sidebar .blog-search,
.content .mainCon.blogs .mainConIn .sidebar .blog-subscribe {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-bottom: 30px;
	max-width: 400px;
	width: 100%
}

.content .mainCon.blogs .mainConIn .sidebar .blog-search form,
.content .mainCon.blogs .mainConIn .sidebar .blog-subscribe form {
	background-color: white;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row
}

.content .mainCon.blogs .mainConIn .sidebar .blog-search .search,
.content .mainCon.blogs .mainConIn .sidebar .blog-subscribe .search {
	background-color: white;
	border: none;
	-webkit-border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	border-radius: 0 !important;
	color: #426191;
	font-size: 18px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 700;
	height: 60px;
	line-height: 1;
	padding: 15px;
	padding-right: 0;
	width: 100%
}

.content .mainCon.blogs .mainConIn .sidebar .blog-search .search::-webkit-input-placeholder,
.content .mainCon.blogs .mainConIn .sidebar .blog-subscribe .search::-webkit-input-placeholder {
	color: #426191;
	opacity: 1
}

.content .mainCon.blogs .mainConIn .sidebar .blog-search .search:-webkit-input-placeholder,
.content .mainCon.blogs .mainConIn .sidebar .blog-subscribe .search:-webkit-input-placeholder {
	color: #426191;
	opacity: 1
}

.content .mainCon.blogs .mainConIn .sidebar .blog-search .search::-moz-placeholder,
.content .mainCon.blogs .mainConIn .sidebar .blog-subscribe .search::-moz-placeholder {
	color: #426191;
	opacity: 1
}

.content .mainCon.blogs .mainConIn .sidebar .blog-search .search:-moz-placeholder,
.content .mainCon.blogs .mainConIn .sidebar .blog-subscribe .search:-moz-placeholder {
	color: #426191;
	opacity: 1
}

.content .mainCon.blogs .mainConIn .sidebar .blog-search .search::-ms-input-placeholder,
.content .mainCon.blogs .mainConIn .sidebar .blog-subscribe .search::-ms-input-placeholder {
	color: #426191;
	opacity: 1
}

.content .mainCon.blogs .mainConIn .sidebar .blog-search .search:-ms-input-placeholder,
.content .mainCon.blogs .mainConIn .sidebar .blog-subscribe .search:-ms-input-placeholder {
	color: #426191;
	opacity: 1
}

.content .mainCon.blogs .mainConIn .sidebar .blog-search button,
.content .mainCon.blogs .mainConIn .sidebar .blog-subscribe button {
	background-color: white;
	border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	color: #00ffff;
	font-size: 13px;
	height: 60px;
	line-height: 1;
	padding: 15px
}

.content .mainCon.blogs .mainConIn .sidebar .blog-search button i,
.content .mainCon.blogs .mainConIn .sidebar .blog-subscribe button i {
	font-size: 30px
}

.content .mainCon.blogs .mainConIn .sidebar .blog-search button img,
.content .mainCon.blogs .mainConIn .sidebar .blog-subscribe button img {
	width: 30px
}

.content .mainCon.blogs .mainConIn .sidebar h5 {
	color: #426191;
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 30px;
	margin-bottom: 25px;
	margin-top: 0;
	padding-bottom: 10px;
	position: relative;
	text-transform: uppercase
}

.content .mainCon.blogs .mainConIn .sidebar h5:after {
	background-color: #00ffff;
	content: '';
	height: 5px;
	left: 0;
	position: absolute;
	top: 100%;
	width: 50px
}

.content .mainCon.blogs .mainConIn .sidebar .services-attorneys-group {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px
}

.content .mainCon.blogs .mainConIn .sidebar .services-attorneys-group .services-attorneys-item {
	-webkit-flex-basis: 160px;
	-ms-flex-preferred-size: 160px;
	flex-basis: 160px;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 160px;
	margin-bottom: 20px;
	padding-left: 10px;
	padding-right: 10px
}

.content .mainCon.blogs .mainConIn .sidebar .services-attorneys-group .services-attorneys-item .services-attorneys-link {
	display: block
}

.content .mainCon.blogs .mainConIn .sidebar .services-attorneys-group .services-attorneys-item .services-attorneys-link img {
	width: 100%
}

.content .mainCon.blogs .mainConIn .sidebar .services-attorneys-group .services-attorneys-item .services-attorneys-link span {
	color: #0033a1;
	display: block;
	font-size: 16px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 20px;
	padding-top: 10px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.content .mainCon.blogs .mainConIn .sidebar .services-attorneys-group .services-attorneys-item .services-attorneys-link a {
	color: #0031ff;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 20px;
	margin-top: 10px;
	text-underline-position: under;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.content .mainCon.blogs .mainConIn .sidebar .services-attorneys-group .services-attorneys-item .services-attorneys-link a.phone {
	color: #0033a1
}

.content .mainCon.blogs .mainConIn .sidebar .services-attorneys-group .services-attorneys-item .services-attorneys-link a:hover {
	text-decoration: underline
}

.content .mainCon.blogs .mainConIn .sidebar .topic-list {
	margin-bottom: 30px;
	margin-top: 0;
	list-style: outside none;
	padding: 0
}

.content .mainCon.blogs .mainConIn .sidebar .topic-list li:not(:last-child) {
	margin-bottom: 10px
}

.content .mainCon.blogs .mainConIn .sidebar .topic-list li a {
	color: #0033a1;
	font-size: 20px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 28px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.content .mainCon.blogs .mainConIn .sidebar .topic-list li a:hover {
	color: #0031ff;
	text-decoration: none
}

.careers-banner-all .careers-banner {
	position: relative
}

.careers-banner-all .careers-banner .careers-banner-title {
	border-bottom: 1px solid #99cccc;
	margin-bottom: 45px;
	padding-bottom: 25px;
	padding-top: 65px;
	position: relative
}

.careers-banner-all .careers-banner .careers-banner-title h1 {
	color: white;
	font-size: 84px;
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	line-height: 94px;
	margin: 0
}

@media (max-width: 767px) {
	.careers-banner-all .careers-banner .careers-banner-title h1 {
		font-size: 50px;
		line-height: 60px
	}
}

.careers-banner-all .careers-banner .careers-banner-title .social-icon {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	right: 0;
	top: 30px
}

@media (min-width: 768px) {
	.careers-banner-all .careers-banner .careers-banner-title .social-icon {
		right: 12%
	}
}

.careers-banner-all .careers-banner .careers-banner-title .social-icon a {
	opacity: 0.5;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.careers-banner-all .careers-banner .careers-banner-title .social-icon a:not(:last-child) {
	margin-right: 20px
}

.careers-banner-all .careers-banner .careers-banner-title .social-icon a:hover {
	opacity: 1
}

.careers-banner-all .careers-banner .careers-banner-single-text {
	padding-bottom: 40px
}

.careers-banner-all .careers-banner .careers-banner-single-text p {
	color: white;
	font-size: 24px;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	line-height: 30px;
	margin: 0
}

@media (max-width: 1364px) {
	.careers-banner-all .careers-banner .careers-banner-single-text p {
		font-size: 18px;
		line-height: 24px
	}
}

@media (max-width: 767px) {
	.careers-banner-all .careers-banner .careers-banner-single-text p {
		font-size: 16px;
		line-height: 22px
	}
}

.careers-banner-all .careers-banner .careers-banner-single-text p:not(:last-child) {
	margin-bottom: 20px
}

.content .mainCon.careers .mainConIn .leftCon {
	padding-top: 60px
}

.content .mainCon.careers .mainConIn .leftCon .careers-tab-content li {
	padding: 0
}

.content .mainCon.careers .mainConIn .leftCon .careers-tab-content li p a {
	color: #0031ff
}

.content .mainCon.careers .mainConIn .sidebar {
	padding-top: 60px
}

@media (max-width: 1023px) {
	.content .mainCon.careers .mainConIn .sidebar {
		padding-top: 30px
	}
}

.content .mainCon.careers .mainConIn .sidebar .careers-info {
	background-color: #00bbb4;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	overflow: hidden;
	min-height: 352px;
}

.content .mainCon.careers .mainConIn .sidebar .careers-info .image {
	-webkit-flex-basis: 174px;
	-ms-flex-preferred-size: 174px;
	flex-basis: 174px;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 174px
}

@media (max-width: 575px) {
	.content .mainCon.careers .mainConIn .sidebar .careers-info .image {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%
	}
}

.content .mainCon.careers .mainConIn .sidebar .careers-info .image img {
	width: 100%
}

.content .mainCon.careers .mainConIn .sidebar .careers-info .image span {
	color: white;
	display: block;
	font-size: 16px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 26px;
	padding: 15px 5px;
	text-align: center
}

.content .mainCon.careers .mainConIn .sidebar .careers-info .text {
	-webkit-flex-basis: -webkit-calc(100% - 174px);
	-ms-flex-preferred-size: calc(100% - 174px);
	flex-basis: -moz-calc(100% - 174px);
	flex-basis: calc(100% - 174px);
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: -webkit-calc(100% - 174px);
	max-width: -moz-calc(100% - 174px);
	max-width: calc(100% - 174px);
	padding: 80px 15px
}

@media (min-width: 1024px) and (max-width: 1199px) {
	.content .mainCon.careers .mainConIn .sidebar .careers-info .text {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
		padding: 15px
	}
}

@media (max-width: 575px) {
	.content .mainCon.careers .mainConIn .sidebar .careers-info .text {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
		padding: 15px
	}
}

.content .mainCon.careers .mainConIn .sidebar .careers-info .text p {
	color: white;
	font-size: 18px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 24px;
	margin: 0
}

.content .mainCon.contactus .mainConIn .leftCon {
	padding-top: 60px
}

.content .mainCon.contactus .mainConIn .leftCon .contactus-location {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-left: -15px;
	margin-right: -15px
}

.content .mainCon.contactus .mainConIn .leftCon .contactus-location .contactus-location-item {
	-webkit-flex-basis: 50%;
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-bottom: 30px;
	max-width: 50%;
	padding-left: 15px;
	padding-right: 15px
}

@media (min-width: 1921px) {
	.content .mainCon.contactus .mainConIn .leftCon .contactus-location .contactus-location-item {
		max-width: 520px
	}
}

@media (max-width: 575px) {
	.content .mainCon.contactus .mainConIn .leftCon .contactus-location .contactus-location-item {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%
	}
}

.content .mainCon.contactus .mainConIn .leftCon .contactus-location .contactus-location-item img {
	width: 100%
}

.content .mainCon.contactus .mainConIn .leftCon .contactus-location .contactus-location-item h2 {
	color: #426191;
	font-size: 28px;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	line-height: 32px;
	margin-bottom: 15px;
	margin-top: 30px
}

.content .mainCon.contactus .mainConIn .leftCon .contactus-location .contactus-location-item address {
	color: #426191;
	font-size: 20px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	font-style: normal !important;
	line-height: 30px;
	margin: 0
}

.content .mainCon.contactus .mainConIn .sidebar {
	padding-top: 60px
}

@media (max-width: 1023px) {
	.content .mainCon.contactus .mainConIn .sidebar {
		padding-top: 30px
	}
}

.content .mainCon.contactus .mainConIn .sidebar .contact-form h4 {
	color: #426191;
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 30px;
	margin-bottom: 20px;
	margin-top: 0;
	text-transform: uppercase
}

.content .mainCon.contactus .mainConIn .sidebar .contact-form .form-group {
	margin-bottom: 20px
}

.content .mainCon.contactus .mainConIn .sidebar .contact-form .form-group .form-control {
	border: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	color: black;
	font-size: 20px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 700;
	margin: 0;
	padding: 15px
}

.content .mainCon.contactus .mainConIn .sidebar .contact-form .form-group .form-control::-webkit-input-placeholder {
	color: #729eb3;
	opacity: 1
}

.content .mainCon.contactus .mainConIn .sidebar .contact-form .form-group .form-control:-webkit-input-placeholder {
	color: #729eb3;
	opacity: 1
}

.content .mainCon.contactus .mainConIn .sidebar .contact-form .form-group .form-control::-ms-input-placeholder {
	color: #729eb3;
	opacity: 1
}

.content .mainCon.contactus .mainConIn .sidebar .contact-form .form-group .form-control:-ms-input-placeholder {
	color: #729eb3;
	opacity: 1
}

.content .mainCon.contactus .mainConIn .sidebar .contact-form .form-group .form-control::-moz-placeholder {
	color: #729eb3;
	opacity: 1
}

.content .mainCon.contactus .mainConIn .sidebar .contact-form .form-group .form-control:-moz-placeholder {
	color: #729eb3;
	opacity: 1
}

.content .mainCon.contactus .mainConIn .sidebar .contact-form .form-group p {
	color: #729eb3;
	font-size: 20px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 700;
	line-height: 1;
	margin: 0;
	text-align: right
}

.content .mainCon.contactus .mainConIn .sidebar .contact-form .form-group .required-captcha {
	color: red;
	display: block;
	font-size: 16px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 20px;
	margin-bottom: 10px
}

.content .mainCon.contactus .mainConIn .sidebar .contact-form .form-group .captcha-valid {
	color: #729eb3;
	font-size: 16px;
	font-family: 'Frank Ruhl Libre', serif;
	font-weight: 400;
	line-height: 20px;
	padding-top: 10px
}

.content .mainCon.contactus .mainConIn .sidebar .contact-form .form-group button {
	background-color: #00bbb4;
	border: 2px solid #00bbb4;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: white;
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 28px;
	margin: 0;
	padding: 20px 40px;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s
}

.content .mainCon.contactus .mainConIn .sidebar .contact-form .form-group button:hover {
	background-color: transparent;
	color: #00bbb4
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single ul {
    margin-bottom: 20px;
    padding-left: 40px;
    padding-top: 0;
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single ul li {
    background-image: none;
    color: black;
    font-size: 18px;
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 400;
    line-height: 24px;
    list-style: outside disc;
    margin: 0;
    padding: 0;
}
.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single ol li{font-size: 18px;
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 400;
    line-height: 24px;}
.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single ol li ol {margin-top: 5px;}
.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single ol li ol li:last-child {margin-bottom: 0}
.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single ul ul {
    margin-bottom: 0;
    margin-top: 5px;
}
@media (max-width: 1199px) {
    .content .mainCon.newsevent .mainConIn .leftCon .newsevent-single ul li,.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single ol li {
        font-size: 16px;
        line-height: 20px;
    }
}

@media (max-width: 767px) {
    .content .mainCon.newsevent .mainConIn .leftCon .newsevent-single ul li, .content .mainCon.newsevent .mainConIn .leftCon .newsevent-single ol li {
        font-size: 13px;
        line-height: 17px;
    }
}

.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single ul li:not(:last-child),.content .mainCon.newsevent .mainConIn .leftCon .newsevent-single ol li:not(:last-child) {
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    .services-banner-single .services-banner .services-banner-title h1 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 575px) {
    .services-banner-single .services-banner .services-banner-title h1 {
        font-size: 30px;
        line-height: 40px;
    }
}

@media (max-width: 575px) {
    .services-banner-all .services-banner .services-banner-title h1 {
        font-size: 30px;
        line-height: 40px;
    }
}

.content .mainCon .mainConIn .leftCon ul#tab li ul {
    margin-bottom: 20px;
    padding-left: 20px;
    padding-top: 0;
}

.content .mainCon .mainConIn .leftCon ul#tab li ul li {
    background-image: none;
    color: black;
    font-size: 18px;
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 400;
    line-height: 24px;
    list-style: outside disc;
    margin: 0;
    padding: 0;
}

@media (max-width: 1199px) {
    .content .mainCon .mainConIn .leftCon ul#tab li ul li {
        font-size: 16px;
        line-height: 20px;
    }
}

@media (max-width: 767px) {
    .content .mainCon .mainConIn .leftCon ul#tab li ul li {
        font-size: 13px;
        line-height: 17px;
    }
}

.content .mainCon .mainConIn .leftCon ul#tab li ul li:not(:last-child) {
    margin-bottom: 5px;
}
.sidebar a:hover, .comnCon li a:hover {color: #00ced3;}
/* Accordion styles */
.attorneys-tab-content input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.attorneys-tab-content .tabs {
  /*border-radius: 8px;*/
  overflow: hidden;
  /*box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);*/
}

.attorneys-tab-content .tab {
  width: 100%;
  color: white;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
}
.attorneys-tab-content .tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background: #eff2f2;
  font-weight: bold;
  cursor: pointer;
  color: #426191;
  border-bottom: 1px solid #fff;
  /* Icon */
}
.attorneys-tab-content .tab-label:hover {
  background: #eff2f2;
}
.attorneys-tab-content .tab-label::after {
  content: "\f105";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
  font-family: "Font Awesome 5 Pro";
}
.attorneys-tab-content .tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  transition: all 0.35s;
}
.attorneys-tab-content .tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
.attorneys-tab-content .tab-close:hover {
  background: #eff2f2;
}

.attorneys-tab-content input:checked + .tab-label {
  background: #eff2f2;
}
.attorneys-tab-content input:checked + .tab-label::after {
  transform: rotate(90deg);
}
.attorneys-tab-content input:checked ~ .tab-content {
  max-height: 110vh;
  padding: 1em;
}
.content .mainCon .mainConIn .leftCon .attorneys-tab-content#tab .publication-content-list-item {list-style:none !important}
.news-block .related-attorneys-wrap h6 {
  margin: 0 0 5px;
  text-transform: uppercase;
  font-size: 13px;
  font-size: 1.0rem; }

.news-block .related-attorneys-wrap .related-attorneys {
  margin: 0 !important:;
  padding: 0 !important; }

.news-block .related-attorneys-wrap .related-attorneys li {
  display: inline-block;
  position: relative;
  padding-top: 10px; }

.news-block .related-attorneys-wrap .related-attorneys li a {
  outline: none !important; }

.news-block .related-attorneys-wrap .related-attorneys li:hover .att-info, .news-block .related-attorneys-wrap .related-attorneys li.hover .att-info {
  opacity: 1;
  visibility: visible; }

.news-block .related-attorneys-wrap .related-attorneys li figure {
  width: 90px;
  height: 90px;
  overflow: hidden;
  position: relative;
  border-radius: 50%; 
  margin: 0 10px;}

.news-block .related-attorneys-wrap .related-attorneys li figure img {
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto; }

.news-block .related-attorneys-wrap .related-attorneys li + li {
  margin-left: 10px; }

.news-block .related-attorneys-wrap .related-attorneys li:first-child .att-info {
  left: 55px;
  transform: translate(0, 0); }

.news-block .related-attorneys-wrap .related-attorneys li:first-child .att-info:after {
  text-align: left;
  content: "\f0da"; }

.news-block .related-attorneys-wrap .related-attorneys li .att-info {
  transition: all 0.2s ease-in;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 8px 10px;
  background: #1a329f;
  border-radius: 2px;
  color: #fff;
  font-size: 13px;
  font-size: 1.0rem;
  text-transform: capitalize; }

.news-block .related-attorneys-wrap .related-attorneys li .att-info:after {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: 100%;
  line-height: 0;
  color: #1a329f;
  content: "\f0d7";
  font-weight: 900;
  font-size: 20px;
  font-size: 2rem;
  font-family: "Font Awesome 5 Free"; }

.news-block .related-attorneys-wrap .related-attorneys li .att-info a {
  font-size: 10px;
  font-size: 0.75rem;
  color: inherit;
  text-decoration: underline;
  opacity: 0.7;
  text-transform: uppercase; }

.news-block .related-attorneys-wrap .related-attorneys li .att-info * {
  white-space: nowrap; }

/* Slider */
.slick-prev:before, .slick-next:before {color:#19319f !important;}
.progress {
  display: block;
  width: 100%;
  height: 10px;
  border-radius: 10px;
  overflow: hidden;

  background-color: #f5f5f5;
  background-image: linear-gradient(to right, #19319f, #19319f);
  background-repeat: no-repeat;
  background-size: 0 100%;

  transition: background-size 0.4s ease-in-out;
}

/**
 *  Demo Styles from the Slick Slider
 *  website
 */



.content-slider {
  margin: auto;
  padding: 0;
  width: 100%;
}

.slider {
  margin: 30px auto 20px;
}

.image {
  margin: 10px;
  background: #19319f;
  color: #FFF;
}

.slider img {
  border: none;
  display: block;
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.slider-text {
    padding: 10px;
    font-size: 16px;
	min-height: 150px;
}
.slider-text a {color: #FFF !important}
span.date {
    font-size: 14px;
    border-bottom: 1px solid #FFF;
}
.view-all {height: 480px;
    text-align: center;
    padding: 250px 0 0 0;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 250px;
    display: block;
    margin: 0 10px;}