/* Common CSS Start */

:root {
	--red: #C10000;
	--white: #fff;
	--black: #000;
	--shady-black: #232841;
	--font-opensans: "Open Sans", sans-serif;
	--font-nunito: "Nunito Sans", sans-serif;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body,
html {
	height: 100%;
}

body {
	width: 100%;
	overflow-x: hidden;
	position: relative;
	letter-spacing: 0px;
	color: var(--bs-black);
	font-weight: 400;
	font-family: var(--font-nunito);
	font-size: 16px;
	line-height: 30px;
	background-color: var(--lightgrey);
	padding-top: 165px;
}

.wow {
	overflow: hidden;
}

blockquote {
	margin: 1em 0;
	padding: .5em 1em;
	border-left: 4px solid var(--red);
	color: #555;
	font-style: italic;
	background: #c1000025;
}


@keyframes zoomIn {
	0% {
		transform: scale(.5);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.text-white li,
.text-white li a {
	color: #fff;
}

.zoomInEffect {
	animation: zoomIn 1s ease-out forwards;
}

.shady-black,
.shady-black p, .shady-black a , .shady-black a:hover {
	color: var(--shady-black);
}

.grey-bg {
	background-color: #F5F5F5;
}

.bg-red {
	background-color: var(--red);
}

img {
	max-width: 100%;
	height: auto;
	contain-intrinsic-size: auto !important;
}

.nav-link:focus,
.nav-link:hover {
	color: var(--red);
}

.hide {
	display: none;
}

.container-fluid {
	padding-left: 30px;
	padding-right: 30px;
}

:focus {
	outline: 0;
	outline: none;
}

a {
	color: var(--red);
	font-weight: 400;
	text-decoration: none;
}

a:hover {
	color: var(--red);
}

p {
	margin-bottom: 15px;
	font-family: var(--font-nunito);
	font-weight: 400;
	font-size: 21px;
	line-height: 158%;
}

p:last-child {
	margin-bottom: 0
}

a:focus {
	color: #000000;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	outline: none !important;
}

a,
.btn,
input,
select,
textarea,
button,
img {
	outline: 0 !important;
	box-shadow: none;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
	color: var(--red);
}

select {
	color: rgba(0, 0, 0, 0);
	text-shadow: 0 0 0 #000;
}

a img {
	outline: 0;
}

input[type=checkbox],
input[type=radio] {
	vertical-align: middle;
}

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

.bgcover {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.menu-top li a {
	font-family: var(--font-nunito);
}

body.nav-open-menu {
	overflow: hidden;
}

/* btn sec */

.btn {
	color: var(--white);
	outline: 0 !important;
	box-shadow: none !important;
	position: relative;
	cursor: pointer;
	min-width: 180px;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	white-space: normal;
	border: 2px solid transparent;
	z-index: 1;
	background-color: var(--red);
	line-height: 26px;
	text-align: center;
	font-size: 21px;
	transition: .6s;
	padding: 18px 30px;
	border-radius: 6px;
	font-family: var(--font-opensans);
	font-weight: 600;
	font-style: Bold;
	font-size: 18px;
	line-height: 136%;
	text-transform: uppercase;
}

.btn svg,
.btn img {
	width: 22px;
	height: 17px;
	vertical-align: middle;
	position: relative;
	top: -2px;
	margin-left: 6px;
}

.btn:hover svg path {
	fill: var(--red);
	stroke: var(--red);
}

.btn:hover {
	color: var(--red);
	background-color: #fff;
	border-color: var(--red);
}

.btn.focus svg path,
.btn:focus svg path {
	fill: var(--bs-white);
	stroke: var(--bs-white);
}

.btn.focus,
.btn:focus {
	color: var(--bs-white);
	background: var(--red);
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
	color: var(--bs-white);
	background: var(--red);
}

input,
select,
textarea {
	outline: 0;
	box-shadow: none;
}

[type=submit] {
	cursor: pointer;
}

a:hover,
a:focus {
	text-decoration: none;
}

p:empty {
	display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	position: relative;
	color: var(--bs-black);
	font-family: var(--font-opensans);
	font-weight: 700;
}

h1 {
	font-size: 62px;
	line-height: 72px;
	margin-bottom: 15px;
}

h2 {
	font-size: 52px;
	line-height: 62px;
	margin-bottom: 15px;
}

h3 {
	font-size: 42px;
	line-height: 52px;
	margin-bottom: 15px;
}

h4 {
	font-size: 32px;
	line-height: 42px;
	margin-bottom: 15px;
}

h5 {
	font-size: 27px;
	line-height: 38px;
	margin-bottom: 15px;
}

h6 {
	font-size: 22px;
	line-height: 32px;
	margin-bottom: 15px;
}

.flex-direction-column {
	flex-direction: column;
}

.list-style ul li,
ul.list-style li {
	position: relative;
	padding-left: 20px;
}

.list-style ul li::before,
ul.list-style li::before {
	content: "";
	width: 6px;
	height: 6px;
	position: absolute;
	background: var(--red);
	border-radius: 50%;
	top: 16px;
	transform: translateY(-50%);
	left: 4px;
}

.section-pd {
	padding: 70px 0;
}

.section-pt {
	padding-top: 70px;
}

.section-pb {
	padding-bottom: 70px;
}

.row.box-items {
	--bs-gutter-x: 3.5rem;
}

.heading {
	font-family: var(--font-opensans);
	font-weight: 700;
	font-size: 44px;
	line-height: 67px;
	text-transform: uppercase;
}

.sub-heading {
	font-family: var(--font-opensans);
	font-weight: 600;
	font-size: 26px;
	line-height: 130%;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.white-color-sec p a,
.white-color-sec .heading,
.white-color-sec p,
.white-color-sec ul li,
.white-color-sec h2,
.white-color-sec h3,
.white-color-sec h4,
.white-color-sec h5,
.white-color-sec h6 {
	color: var(--bs-white);
}

.white-color-sec .btn {
	color: var(--red);
	background: var(--bs-white);
}

.white-color-sec .btn:hover {
	background: var(--bs-white);
	color: var(--red);
}

.white-color-sec .btn:hover::before {
	background-color: #6e87b5;
}

div#html5-close {
	background-image: url(../assets/images/close.png);
	background-size: auto;
	width: 31px;
	height: 34px;
	background-repeat: no-repeat;
}

div#html5-close img {
	display: none;
}

.searchform .close-btn {
	right: 10px;
	top: 10px;
}

.searchform .close-btn:before,
.searchform .close-btn:after {
	left: 0;
	right: 0;
	top: 11px;
}

/* Common CSS END */

/* Menu CSS Start */

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

ul.menu-top li {
	display: inline-block;
	color: #fff;
	position: relative;
	margin-left: 15px;
}

ul.menu-top li:first-child {
	margin-left: 0px;
}

ul.menu-top>li.menu-item-has-children {
	margin-right: 15px;
}

ul.menu-top>li#menu-item-250>ul.sub-menu {
	right: 0;
}

.menu-top li a br,
.menu-top li .sub-menu li a br {
	display: none;
}

.menu-top li a {
	padding: 20px 0;
	display: flex;
	align-items: center;
	text-decoration: none;
	position: relative;
	font-weight: 400;
	font-size: 21px;
	line-height: 22px;
}

.nav-menu .menu-top>li>a:before {
	content: "";
	position: absolute;
	width: 0;
	height: 1px;
	right: 0;
	left: 0;
	bottom: 0;
	background: var(--red);
	transition: all .5s ease-in-out;
	margin: auto;
	opacity: 1;
	left: 50%;
	transform: translateX(-50%);
}

.nav-menu .menu-top>li>a:hover:before {
	width: 100%;
}

.nav-menu .menu-top>li.current-menu-ancestor a:before,
.nav-menu .menu-top>li.current-menu-item>a:before {
	width: 100%;
}

.menu-top li a:hover,
.menu-top li a:focus {
	color: var(--red);
}

.nav-menu .menu-top>li.current-menu-item>a,
.nav-menu .menu-top>li.current-menu-ancestor>a {
	color: var(--red);
	font-weight: 400;
}

.nav-menu>.menu-top>li.menu-item-has-children:after {
	content: "";
	position: absolute;
	top: 0;
	margin: auto;
	bottom: 0;
	right: -15px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 5px 0;
	border-color: #fff transparent transparent;
	display: flex;
	align-items: center;
}

ul.menu-top li ul.sub-menu li.menu-item-has-children:after {
	display: none;
}

/* dropdown start here */

ul.menu-top li:hover>ul {
	display: block;
}

ul.menu-top li:hover li {
	float: none;
}

ul.menu-top li:hover li a:hover {
	background: var(--red);
	color: #fff;
}

.menu-top .sub-menu>li {
	border-bottom: none;
}

.menu-top .sub-menu>li:last-child {
	border-bottom: none;
}

.menu-top .sub-menu li.current_page_item a {
	background-color: var(--red);
	color: #fff;
}

.menu-top .sub-menu>li:nth-child(1) {
	border-top: 3px solid var(--red);
}

.menu-top .sub-menu>li.current_page_item ul li a {
	background-color: #fff;
	color: #000;
	font-weight: 400;
}

.menu-top .sub-menu>li.current_page_item ul li a:hover,
.menu-top .sub-menu>.current_page_ancestor>a {
	background-color: var(--red);
	color: #fff;
}

.menu-top li ul li {
	border-top: 0;
	display: block;
	margin: 0;
}

/* Displays second level dropdowns to the right of the first level dropdown */

ul.menu-top ul ul {
	left: 100%;
	top: -4px;
	position: absolute;
}

ul.menu-top li .sub-menu li {
	padding: 0;
	display: block;
	width: 100%;
	border-bottom: 1px solid #f3f3f3;
}

.nav-menu-inner {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-direction: column;
	border-top: 1px solid rgba(255, 255, 255, 0.20);
}

.menu-top {
	position: relative;
	transition: all ease-in-out .5s;
	text-align: right;
	justify-content: space-between;
	display: flex;
}

.menu-top li:first-child {
	padding-left: 0;
}

.menu-top li:last-child {
	margin-right: 0;
	padding-right: 0px;
}

ul.menu-top li#menu-item-25 {
	display: none;
}

.sub-menu {
	background-color: var(--bs-white);
	min-width: 280px;
	text-align: left;
}

ul.menu-top li .sub-menu li a {
	padding: 16px 15px;
	display: flex;
	align-items: center;
	text-decoration: none;
	position: relative;
	font-weight: 400;
	font-size: 15px;
	line-height: 22px;
	font-family: var(--font-nunito);
}

ul.menu-top li .sub-menu li:last-child a {
	border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.menu-top .sub-menu li.current_page_item a:before,
.menu-top .sub-menu li a:hover:before {
	background: #fff;
}

ul.menu-top li .sub-menu li a:hover {
	color: var(--bs-white);
	background: var(--red);
}

.header-left-logo {
	width: 430px;
}

.header-top-right {
	width: calc(100% - 430px);
}

.menu-header ul.sub-menu li.menu-item-has-children>a:after {
	-ms-transform: rotate(227deg);
	-webkit-transform: rotate(227deg);
	-moz-transform: rotate(227deg);
	-o-transform: rotate(227deg);
	transform: rotate(227deg);
	right: 13px;
	top: 0;
	bottom: 0;
	content: "";
	border-left: 2px solid #293a4c;
	border-bottom: 2px solid #293a4c;
	display: inline-block;
	width: 8px;
	height: 8px;
	position: absolute;
	margin: auto;
}

.header-top-right {
	display: flex;
	align-items: center;
}

.header-contact-info a {
	font-family: var(--font-opensans);
	font-weight: 700;
	font-size: 32px;
	line-height: 100%;
	text-align: center;
	vertical-align: middle;
}

.phone-text img {
	margin-right: 4px;
}

.phone-text {
	font-family: var(--font-opensans);
	font-weight: 700;
	font-size: 18.67px;
	line-height: 100%;
	text-align: center;
	vertical-align: middle;
	display: flex;
	align-items: center;
	color: var(--red);
}

.phone-text span {
	font-weight: 700;
}

ul.menu-top li .sub-menu li.menu-item-has-children>a:hover {
	background-color: var(--red);
	color: #fff;
}

.menu-header ul.sub-menu li.current-menu-ancestor>a:after {
	border-color: #fff;
}

.menu-header ul.sub-menu li.current-menu-item>a:after,
.menu-header ul.sub-menu li.menu-item-has-children>a:hover:after {
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
}

.menu-header>ul>li>ul {
	transform: translateY(1.250em);
	transition: all linear 0.1s;
	top: 96%;
	position: absolute;
	list-style: none;
	z-index: 1;
	margin: 0;
	padding: 0;
	transition: all linear 0.5s;
	margin-top: 0px;
}

header#header.small-header .menu-header>ul>li>ul {
	box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.258);
	transition: all linear 0.1s;
}

.menu-header .sub-menu {
	visibility: hidden;
}

.menu-header ul li:hover>ul {
	opacity: 1;
	transform: translateY(0);
	display: block;
	visibility: visible;
	z-index: 1;
	margin-top:0px;
}

.menu-top li.menu-item-has-children:after {
	content: "";
	position: absolute;
	top: 0px;
	margin: auto;
	right: -11px;
	background-size: 10px;
	background-repeat: no-repeat;
	background-image: url(../images/down-arrow.svg);
	background-position: center;
	height: 10px;
	width: 10px;
	bottom: 1px;
	transition: .5s;
}

.menu-top li.menu-item-has-children:hover:after {
	background-image: url(../images/down-red-arrow.webp);
}

.menu-top>li.current-menu-item:after,
.nav-menu .menu-top>li.current-menu-ancestor:after {
	background-image: url(../images/down-red-arrow.webp);
}

.menu-header ul li#menu-item-146765:hover>ul {
	max-height: 500px;
	overflow-y: scroll;
}

.menu-top li a {
	color: var(--black);
}

/* Menu CSS END */

/* block css default */

.wp-block-group,
.wp-block-columns {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 35px;
	margin-bottom: 35px;
	padding-left: 12px;
	padding-right: 12px;
}

.wp-block-group ul,
.wp-block-columns ul {
	padding-left: 20px;
	list-style: disc;
	margin-bottom: 15px;
}

/* block css default */

/* Header CSS Start */

.menu-wrap,
.mobile-header-sec {
	display: none;
}

.logo-wrapper {
	height: auto;
	position: relative;
	width: auto;
	top: 0;
	max-width: 100%;
}

.logo-wrapper a {
	display: flex;
	align-items: center;
	max-width: calc(100% - 15px);
}

.logo-wrapper a img {
	width: auto;
	transition: 1s;
	object-fit: contain;
}

.menu-top li a,
header#header.small-header .header-contact-info a {
	transition: 1s;
}

header#header.small-header .logo-wrapper a img {
	max-width: 100%;
}

.top-search-bar {
	text-align: right;
	position: relative;
	width: 45px;
}

.nav-menu-wrapper {
	width: 100%;
	position: relative;
	margin-bottom: 0;
	transition: all ease-in-out .5s;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 15px;
	column-gap: 15px;
}

.white-search-icon {
	display: flex;
	justify-content: center;
	cursor: pointer;
	border-right: 1px solid hsl(0deg 0% 0% / 30%);
	padding-right: 10px;
}

.menu-main-wrapper {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
}

header#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 11;
	padding: 32px 0px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.18);
	background: var(--white);
}

header#header.small-header {
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.18);
	background: var(--bs-white);
}

.header-top .container-fluid {
	padding: 0;
	padding-left: 30px;
	padding-right: 30px;
}

.header-top .header-left-logo {
	display: flex;
	align-items: center;
	padding-bottom: 0px;
}

.header-aside-col {
	align-items: center;
	display: flex;
}

.header-top {
	padding: 0;
	width: 100%;
	position: relative;
}

.right-top-wrap {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: flex-end;
}

.header-contact-info {
	min-width: 192px;
}

.header-contact-info a {
	font-family: var(--font-outfit);
	padding: 15px;
	border-radius: 30px;
	border: 2px solid transparent;
	line-height: normal;
	transition: .5s;
	display: flex;
	justify-content: end;
	align-items: center;
	row-gap: 3px;
	column-gap: 24px;
}

.phone-button {
	font-family: var(--font-opensans);
	font-weight: 600;
	font-size: 16px;
	line-height: 136%;
	text-align: center;
	background: var(--red);
	color: var(--white);
	padding: 11px;
	border-radius: 5px;
	border: 1px solid transparent;
	letter-spacing: 1px;
}

.phone-button:hover {
	background: white;
	color: var(--red);
	border: 1px solid var(--red);
}

.nav-menu-inner ul>li .sub-menu * {
	transition: none;
}

.header-wrap {
	width: 100%;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.phone-text:hover img {
	filter: grayscale(1);
}

.phone-text:hover {
	color: #000;
}

.white-search-icon:hover svg path {
	stroke: #000;
}

/** Mobile Search Bar ***/

.mobile-search-bar-box {
	position: fixed;
	top: 0;
	width: 100%;
	height: 162px;
	z-index: 10000;
	background-color: var(--red);
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-100%);
	transition: all ease-in-out .5s;
}

.mobile-search-bar-box .search-input-box {
	width: 100%;
	position: relative;
}

.close-btn {
	position: absolute;
	right: -15px;
	top: -10px;
	width: 40px;
	height: 40px;
	opacity: 1;
	font-size: 0;
	color: #fff;
	border: none;
	background: var(--red);
	border-radius: 45px;
	z-index: 1;
}

.close-btn:hover {
	opacity: 1;
	cursor: pointer;
	background-color: #000000;
}

.close-btn:before,
.close-btn:after {
	position: absolute;
	left: 0;
	content: ' ';
	height: 18px;
	width: 2px;
	background-color: #fff;
	right: 0;
	margin: auto;
}

.close-btn:hover:before,
.close-btn:hover:after {
	opacity: 1;
	background-color: #ffffff;
}

.close-btn:before {
	transform: rotate(45deg);
}

.close-btn:after {
	transform: rotate(-45deg);
}

.modal-dialog-scrollable .modal-content {
	overflow: inherit;
}

.mobile-search-bar-box {
	display: none
}

.mobile-search-bar-box {
	position: fixed;
	top: 0;
	width: 100%;
	height: 142px;
	z-index: 10000;
	background-color: var(--red);
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-100%);
	transition: all ease-in-out 0.5s;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.42);
	opacity: 0;
}

.mobile-search-active .mobile-search-bar-box {
	transform: translate(0);
	z-index: 999999;
	opacity: 1;
}

.mobile-search-bar-box form {
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}

.mobile-search-bar-box .search-input-box input::placeholder {
	color: #fff;
}

.mobile-search-bar-box .search-input-box input {
    font-size: 16px;
    border-bottom: 1px solid #fff;
    color: #fff;
    height: 46px;
    padding: 10px 40px 10px 10px;
    background: 0 0;
    border-radius: 0;
}

.mobile-search-bar-box .search-icon-form img {
	width: 28px;
	max-width: 54px;
}

.search-icon-form button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	background-size: 22px;
	background-repeat: no-repeat;
	background-position: 0px 0px;
	width: 22px;
	height: 22px;
	top: 0px;
	position: relative;
	opacity: 0.7;
}

.search-icon-form button:hover {
	opacity: 1;
}

.form-control:focus {
	border-color: var(--red);
	box-shadow: none;
}

.search-input-box .form-control:focus {
	color: #fff;
	background-color: transparent;
	border-color: #fff;
	outline: 0;
	box-shadow: none;
}

.mobile-search-bar-box .search-input-box {
	position: relative;
}

.req-error {
    position: absolute;
    font-size: 11px;
    bottom: 1px;
    display: none;
    color: var(--red);
    font-weight: 400;
    right: 50px;
    background-color: #fff;
    padding: 2px 5px 1px 5px;
    border-radius: 4px 4px 0 0;
    line-height: normal;
    text-transform: capitalize;
}

.mobile-search-bar img {
	cursor: pointer;
	top: -3px;
	position: relative;
}

.m-close-search .bar {
	background: #FFF;
	border-radius: 0;
	display: block;
	height: 1px;
	width: 45px;
	display: none;
}

.m-close-search .bar:nth-of-type(2) {
	width: 25px;
	margin-bottom: 9px;
	margin-top: 9px;
}

.mobile-search-bar-box .search-icon-form {
	padding: 0;
	margin-left: 15px;
	margin-right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	position: absolute;
	right: 0px;
	bottom: 3px;
	width: 40px;
}

.mobile-search-bar-box [type='submit'],
.mobile-search-bar-box [type='submit']:focus {
	background-color: transparent
}

.nav-menu-inner .nav-menu {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	position: relative;
}

header#header.small-header .nav-menu-inner .nav-menu {
	top: 0;
}

/* Mobile Search Bar */

/* --------Header CSS End---------- */

/* Contact Form CSS Start */

.wpcf7 form.spam .wpcf7-response-output {
	margin-left: auto !important;
	margin-right: auto !important;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
	background: #293a4c;
	color: #ffffff;
}

.wpcf7 .wpcf7-form-control-wrap.quiz-math,
.wpcf7 .wpcf7-form-control-wrap.quiz-math label {
	width: 100%;
	margin: 0;
}

.wpcf7 .wpcf7-spinner {
	position: absolute;
	right: -30px;
	top: 0;
	bottom: 0;
	margin: auto;
}

select {
	width: 100%;
}

div.wpcf7 .wpcf7-form textarea.form-control,
.common-form-style .form-group textarea.form-control {
	height: 185px;
}

div.wpcf7 .wpcf7-form textarea.form-control {
	padding-top: 20px;
}

.form-group {
	margin-bottom: 20px;
}

.wpcf7 .wpcf7-response-output {
	font-size: 16px;
	line-height: 20px;
	position: absolute;
	left: 0;
	bottom: -50px;
	right: 0;
	font-weight: 400;
	border: none !important;
	margin: 0 !important;
	max-width: 100%;
}

.form-sidebar .wpcf7 .wpcf7-response-output {
	bottom: -40px;
}

.wpcf7-form-control-wrap {
	display: inline-flex;
	width: 100%;
}

.wpcf7 .wpcf7-not-valid-tip {
	color: #fff;
	font-weight: normal;
	display: block;
	position: absolute;
	bottom: 1px;
	right: 0;
	font-size: 10px;
	background-color: #b30000;
	padding: 6px;
	border-radius: 4px 4px 0px 0px;
	line-height: 6px;
	text-transform: capitalize;
}

.form-banner-404 .wpcf7 .wpcf7-not-valid-tip {
	padding: 2px 5px;
}

.wpcf7 {
	position: relative;
}

.wpcf7 .form-acceptance-col .wpcf7-list-item-label {
	font-size: 16px;
	line-height: 24px;
}

.wpcf7 .btn-wrap {
	position: relative;
	padding: 0;
	display: inline-block;
	width: auto;
	margin-top: 35px;
	margin-right: 0;
	margin-left: 0;
}

.wpcf7 .btn-wrap:after {
	content: '';
	bottom: 0;
	right: 38px;
	height: 15px;
	width: 25px;
	position: absolute;
	z-index: 1;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url(../images/right-arrow-white.svg);
	background-position: center;
	margin: auto;
	top: -3px;
	pointer-events: none;
}

.wpcf7 .btn-wrap .btn {
	width: 100%;
	text-align: center;
	text-indent: -28px;
}

.btn-wrap .wpcf7-submit {
	display: inline-block;
	position: relative;
	width: 100%;
	z-index: 1;
}

.wpcf7 .btn-wrap:hover::after {
	background-image: url(../images/right-arrow-blue.svg);
}

div.wpcf7 .ajax-loader {
	position: absolute;
	left: 0;
	right: 0px;
	top: 0;
	bottom: 0;
	margin: auto;
	opacity: 1;
	z-index: 1;
	display: block;
}

div.wpcf7 form.submitting .btn-wrap input,
.sidebar div.wpcf7 form.submitting .btn-wrap input {
	color: #ffffff;
	background-color: var(--red);
	border: 2px solid var(--red);
	text-decoration: none;
}

div.wpcf7 form.submitting .btn-wrap {
	border: none;
	color: #000;
	background: none;
	border-color: #000;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
	max-width: 224px;
	visibility: hidden;
	display: none !important;
}

.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok,
.thank-you-message {
	color: #fff !important;
	background: #00772c !important;
	text-align: center;
	margin-left: auto !important;
	margin-right: auto !important;
	opacity: 0;
}

.wpcf7 form.sent .wpcf7-response-output {
	color: #ffffff !important;
	background: #008f00;
	text-align: center;
	margin-left: auto !important;
	margin-right: auto !important;
	opacity: 1;
	width: 400px;
	border-radius: 7px;
	padding: 5px 10px;
	font-weight: 500;
}

.contact-form-sidebar .wpcf7-response-output {
	left: -22px;
	max-width: 115%;
}

textarea {
	resize: none;
	height: 5rem;
}

[type=submit],
[type=submit]:focus {
	cursor: pointer;
	box-shadow: none;
}

.form-control {
	display: block;
	height: 70px;
	width: 100%;
	padding: 21px 17px;
	color: var(--bs-body-color);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: var(--bs-body-bg);
	background-clip: padding-box;
	border-radius: 0px;
	transition: border-color .5s ease-in-out, box-shadow .5s ease-in-out;
	font-family: Nunito Sans;
	font-weight: 400;
	font-size: 18px;
	line-height: 158%;
}

.form-control::placeholder {
	color: #00000080;
}

/* placeholder */
.wpcf7 ::-webkit-input-placeholder {
	color: #00000080;
}

.wpcf7 select {
	color: rgba(13, 13, 13, 1);
	/* Default text color */
}

.wpcf7 ::-moz-placeholder {
	color: #00000080;
}

.wpcf7 :-ms-input-placeholder {
	color: #00000080;
}

.wpcf7 :-moz-placeholder {
	color: #00000080;
}

.wpcf7 .wpcf7-not-valid-tip,
.wpcf7 label.error {
	color: #fff;
	font-weight: 400;
	position: absolute;
	bottom: 0px;
	right: 0px;
	font-size: 13px;
	letter-spacing: .5px;
	background-color: #b30000;
	border-radius: 0px;
	line-height: 14px;
	text-transform: capitalize;
	margin: 0;
	padding: 4px 7px;
	display: block;
	font-family: var(--font-inter);
}

.wpcf7 .wpcf7-not-valid-tip {
	font-size: 0px;
	display: none;
}

.wpcf7 .quiz-math .wpcf7-not-valid-tip {
	font-size: 10px;
	display: inline-block;
}

.contact-form-sidebar .wpcf7-select {
	color: white;
	border: 1px solid white;
}

select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
	text-transform: capitalize;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item {
	display: inline-block;
	margin: 0;
	margin-right: 20px;
	vertical-align: middle;
}

.wpcf7 .wpcf7-list-item label {
	display: flex;
	align-items: center;
}

.wpcf7 .wpcf7-list-item label input[type="checkbox"] {
	margin-right: 10px;
}

.wpcf7 .wpcf7-list-item label .wpcf7-list-item-label {
	display: inline-block !important;
	opacity: 1 !important;
	transition: none !important;
}

.form-acceptance-col .wpcf7-list-item label {
	line-height: 1.625rem;
	font-size: 16px;
	color: #000;
	font-weight: 400;
	display: flex;
	align-items: flex-start;
}

.wpcf7 .wpcf7-acceptance .wpcf7-list-item-label {
	display: inline-block !important;
	transition: none;
	line-height: 26px;
}

.wpcf7 .wpcf7-acceptance .wpcf7-list-item-label * {
	transition: none;
}

.form-acceptance-col .wpcf7-list-item label input {
	position: relative;
	top: 5px;
}

.form-acceptance-col .wpcf7-list-item {
	margin-left: 0;
}

/* Contact Form CSS END */

/************Footer CSS Start************/

footer.footer {
	background: #000000;
}

.footer a {
	color: #fff;
}

a.direction-link {
	color: var(--white);
	transition: 0.8s;
}

a.direction-link:hover {
	color: var(--red);
}

.address-wrap {
	font-family: var(--font-nunito);
	font-weight: 400;
	font-size: 18px;
	line-height: 158%;
	letter-spacing: unset;
}

.nap-postal-address-wrap {
	display: flex;
	flex-direction: column;
	row-gap: 15px;
}

.copyright-footer span {
	font-family: var(--font-nunito);
	font-weight: 500;
	font-style: Bold;
	font-size: 14px;
	line-height: 158%;
}

.copyright-footer span span {
	color: var(--red);
}

.copyright-footer span span:hover {
	text-decoration: underline;
}

.footer-site-menu {
	display: flex;
	justify-content: flex-end;
	padding-bottom: 50px;
}

.footer-site-menu ul {
	display: flex;
	column-gap: 25px;
}

.footer-site-menu ul a {
	font-family: var(--font-opensans);
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
}

.social-sc ul {
	display: flex;
	column-gap: 20px;
	margin-top: 20px;
	justify-content: center;
}

.footer-main-columns {
	width: 30%;
}

.footer-top-row {
	justify-content: space-between;
}

.footer-address {
	width: 23%;
}

.footer-menu {
	width: max-content;
}

.footer-text p {
	font-family: var(--font-nunito);
	font-weight: 500;
	font-size: 14px;
	line-height: 158%;
	margin-top: 45px;
	width: 340px;
}

.phone-main a span {
	font-family: var(--font-opensans);
	font-weight: 700;
	font-size: 24px;
	line-height: 136%;
	letter-spacing: 0%;
}

.phone-bottom span {
	font-family: var(--font-nunito);
	font-weight: 400;
	font-size: 18px;
	line-height: 158%;
	color: var(--white);
	transition: 0.8s;
}

.phone-bottom span:hover {
	color: var(--red);
}



.follow-text {
	font-family: var(--font-nunito);
	font-weight: 400;
	font-size: 18px;
	line-height: 158%;
}

.social-sc li a {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
}

.social-sc li a svg {
	color: #fff;
    fill: #fff;
	width: 40px;
    height: 40px;
}

.social-sc li a:hover svg {
	color: var(--red);
    fill: var(--red);
}

.footer-menu a {
	color: #fff;
	font-family: var(--font-nunito);
	font-weight: 400;
	font-size: 18px;
	line-height: 158%;
	position: relative;
}

.footer-top ul.sub-menu,
.footer-top .sidebar-menu-arrow {
	display: none;
}

.footer-top-row {
	padding-bottom: 65px !important;
}

/************Footer CSS End************/

/************Schema CSS Start************/

.schema-sec-1 .schema-wrap {
	background-color: var(--red);
	margin-bottom: 40px;
	padding: 40px;
	color: #fff;
}

.schema-sec-2 .schema-wrap {
	background-color: var(--red);
	margin-bottom: 40px;
	padding: 40px;
	color: #fff;
}

.schema-sec-2 iframe {
	width: 100%;
	border: none;
	padding: 0px;
	margin: 0px;
	height: 300px;
}

.schema-wrap strong {
	font-size: 20px;
}

.schema-wrap h3 {
	color: #fff;
}

.schema-sec-2 .video-title {
	display: none;
}

.schema-wrap .row {
	align-items: center;
}

.schema-sec-1 {
	margin-top: 60px;
}

.direction-link {
	font-weight: 400;
	margin-top: 15px;
	display: block;
}

/************Schema End END************/


/************* Home-page *************/

.home-banner {
	height: 100vh;
	overflow: hidden;
}

.home-banner video {
	min-width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
}

.home-banner .container {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-banner::after {
	content: "";
	background: #00000040;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.home-banner-inner {
	z-index: 2;
}

.banner-heading {
	font-family: var(--font-opensans);
	font-weight: 700;
	font-size: 70px;
	line-height: 136%;
	text-transform: uppercase;
}

.inner-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 20px;
}

.inner-content a.btn {
	width: 281px;
}

.practice-blocks {
	display: flex;
	flex-wrap: wrap;
}

.single-practice {
	width: 50%;
	padding: 12px 8px;
	height: 425px;
}

.practice-title {
	font-family: var(--font-opensans);
	font-weight: 700;
	font-size: 20px;
	line-height: 136%;
	text-transform: uppercase;
	color: var(--white);
}

.single-practice-inner {
	display: flex;
	justify-content: center;
	align-items: center;
}

.single-practice-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 3px solid #ffffff;
	box-shadow: 0px 1px 34.4px 1px #ADADAD40;
	filter: grayscale(100%);
	transition: 0.5s;
	    padding: 0px 20px;
    text-align: center;
}

.practice-blocks .single-practice:nth-child(2) {
	margin-top: 30px;
}

.practice-blocks .single-practice:nth-child(3) {
	margin-top: -30px;
}

.single-practice-inner::before {
	content: "";
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background: #00000066;
}

.single-practice-inner:hover {
	filter: grayscale(0%);
}

.single-practice-inner:hover::before {
	background: #C10000B2;
}

.practice-title {
	z-index: 1;
}

.practice-content {
	padding-left: 20px;
}

.counter-wrapper {
	display: flex;
	padding: 20px 0px;
}

.count-inner {
	width: 33%;
}

.count-number {
	font-family: var(--font-opensans);
	font-weight: 700;
	font-size: 60px;
	line-height: 100%;
	text-transform: capitalize;
	width: max-content;
	border-bottom: 1px solid var(--red);
	padding-bottom: 10px;
	margin-bottom: 5px;
}

.count-title {
	font-family: var(--font-nunito);
	font-weight: 400;
	font-style: Regular;
	font-size: 14px;
	line-height: 198%;
}

.home-experience-section {
	background-color: #0A070C;
	margin-top: 150px;
}

.experience-bg-image {
	height: 621px;
	padding: 0px;
	margin-top: -150px;
	border: 1px solid #737373;
}

.experience-box {
	background: linear-gradient(90deg, rgba(193, 0, 0, 0.4) 0%, rgba(193, 0, 0, 0.05) 100%);
	width: 100%;
	padding: 30px 60px;
}

.experience-box h3 {
	font-family: var(--font-opensans);
	font-weight: 800;
	font-size: 44px;
	line-height: 136%;
	text-transform: uppercase;
	margin: 0px;
}

.experience-blocks {
    justify-content: flex-start;
    padding-top: 70px;
    column-gap: 80px;
}

.single-experience {
	width: 23%;
}

.experience-title {
	border-top: 1px solid #fff;
	font-family: var(--font-opensans);
	font-weight: 400;
	font-size: 40px;
	line-height: 161%;
	margin-top: 25px;
	padding-top: 5px;
}

.practice-content p {
	font-size: 24px;
}

.home-award-section .h2 {
	border-bottom: 1px solid #000000CC;
	padding-bottom: 25px;
	margin-bottom: 40px;
}

.award-list ul {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
	padding: 30px 0px 30px 0px;
}

.award-list ul li {
	font-family: var(--font-opensans);
	font-weight: 400;
	font-style: Italic;
	font-size: 22px;
	line-height: 161%;
	display: flex;
	align-items: center;
	column-gap: 10px;
}

.home-family-section .award-list ul {
	flex-direction: row;
	flex-wrap: wrap;
	padding: 50px 0px 0px 0px;
}

.home-family-section .award-list ul li {
	width: 50%;
}

.family-sub-heading {
	font-family: var(--font-opensans);
	font-weight: 400;
	font-size: 22px;
	line-height: 161%;
	color: #00000066;
}

.family-image::before {
	content: "";
	width: 90%;
	position: absolute;
	height: 88%;
	border: 8px solid #A70227;
	z-index: 1;
	right: 7%;
	bottom: 25px;
}

.family-image img {
	z-index: 2;
}

.family-content-inner {
	padding-left: 100px;
	position: relative;
}

.family-content-inner::before {
	content: "";
	position: absolute;
	height: 100%;
	width: 1px;
	border-left: 1px solid #00000066;
	left: 74px;
	top: 16px;
}

.proud-bg-image::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #000000BF;
}

.proud-bg-image {
	padding: 50px 95px;
}

.proud-bg-image p {
	position: relative;
	z-index: 2;
}

.proud-bg-image h3 {
	font-family: var(--font-opensans);
	font-weight: 800;
	font-size: 50px;
	line-height: 180%;
	text-transform: uppercase;
}

.home-proud-section {
	margin-top: 220px;
	padding-bottom: 260px;
}

.proud-bg-image {
	margin-top: -165px;
}

.testimonial-slider .item .inner {
	background: #fff;
	padding: 40px 30px;
	height: 100%;
}

.testimonial-slider .review-text p {
	font-family: var(--font-nunito);
	font-weight: 400;
	font-size: 20px;
	line-height: 158%;
}

.testimonial-slider .author-name {
	font-family: var(--font-opensans);
	font-weight: 700;
	font-size: 18px;
	line-height: 100%;
	text-transform: capitalize;
	margin: 10px 0px;
}

.heading-box {
	background: #00000099;
	width: 49%;
	padding: 50px 45px 50px 87px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}

.heading-box h3 {
	font-family: var(--font-opensans);
	font-weight: 800;
	font-size: 45px;
	line-height: 180%;
	text-transform: uppercase;
}

.number-box {
	position: absolute;
	background: #fff;
	padding: 10px 42px;
	border: 1px solid #D3D3D3;
	border-radius: 20px 10px 0px 0px;
	bottom: 0;
	left: 0;
	z-index: 4;
}

.number-box h3{
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 6px;
}

.number-box h3 a{
	font-weight: 700;
	font-size: 30.04px;
	line-height: 136%;
	color: var(--red);
	margin: 0;
}

.number-box, .number-box a, .number-box img{
	transition: 0.5s;
}

.number-box:hover {
	background: var(--red);
	border: 1px solid var(--red);
}

.number-box:hover img {
	filter: brightness(0) invert(1);
}

.number-box:hover a {
	color: #fff;
}

.form-sub-heading {
    width: 161px;
    font-family: var(--font-opensans);
    font-weight: 400;
    font-size: 16px;
    line-height: 161%;
    text-transform: uppercase;
    position: relative;
    color: rgba(255, 255, 255, 0.6);
}

.form-main-block {
	width: calc(100% - 180px);
	padding-top: 35px;
}

.form-sub-heading::before {
	content: "";
	width: 1px;
	height: 95%;
	position: absolute;
	border-right: 1px solid #fff;
	bottom: 0;
	left: 50%;
}

.footer-form-block {
	padding: 140px 0px 60px 0px;
}

.form-heading {
	font-family: var(--font-opensans);
	font-weight: 700;
	font-size: 30px;
	line-height: 34px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.footer-form .wpcf7-submit {
	width: 100%;
	border-radius: 5px;
	margin-top: 10px;
}

.blog-box {
	background: var(--red);
	padding: 8px 10px 8px 22px;
	display: flex;
	justify-content: space-between;
	height: 60px;
	align-items: center;
	margin-top: -45px;
	z-index: 3;
	position: relative;
	width: 87%;
}

.blog-box a {
	color: #fff;
	font-family: var(--font-nunito);
	font-weight: 400;
	font-size: 12px;
	line-height: 100%;
	text-decoration: underline;
	text-decoration-style: solid;
	height: 100%;
	display: flex;
	align-items: end;
}

.blog-image img {
	width: 100%;
	border-radius: 3px;
	transition: transform .5s ease;
	transform-origin: center;
}


.blog-title {
	font-family: var(--font-opensans);
	font-weight: 700;
	font-size: 16px;
	line-height: 122%;
	text-transform: capitalize;
	width: 61%;
}

.blog-item:hover .blog-image img {
	filter: grayscale(100%);
	transform: scale(1.08);
}

.home-testimonial-section .slick-list {
	overflow: visible;
}

#blog-slider .slick-track {
	display: flex;
	justify-content: center;
	align-items: center;
}

.blog-inner {
	position: relative;
}

.blog-inner::before {
  content: "";
  position: absolute;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 2;
  inset: 0;
  opacity: 0;
  animation: fadeInBlur 2s ease forwards;
  animation-delay: 2s; /* starts after 2s */
}

@keyframes fadeInBlur {
  to {
    opacity: 1;
  }
}



.slick-active .blog-inner::before {
  opacity: 0;
}


.blog-inner .blog-image img {
	height: 383px;
	object-fit: cover;
}

.news-page .blog-image img {
	height: 420px;
	object-fit: cover;
}

.news-page .blog-box {
    margin-top: -60px;
}

.slick-active .blog-inner img {
	height: 437px;
}

.home-testimonial-section {
	padding-bottom: 135px;
}

.home-testimonial-section .slick-arrow {
	background: var(--red);
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	position: absolute;
	bottom: -74px;
}

.prev-arrow {
	right: 70px;
}

.next-arrow {
	right: 0px;
}

.blog-row p {
	font-family: var(--font-opensans);
	font-weight: 400;
	font-size: 24px;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--red);
}

.testimonial-row p {
	font-family: var(--font-opensans);
	font-weight: 400;
	font-size: 24px;
	line-height: 67px;
	color: #00000099;
}

.testimonial-slider .item {
	padding: 25px;
}

.header-contact-info {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
}

.slick-dots {
	display: flex;
	justify-content: center;
	column-gap: 15px;
}

.slick-dots li button {
	font-size: 0px;
	width: 10px;
	height: 10px;
	border: none;
	background: #c1000059;
	border-radius: 50%;
}

.slick-dots li.slick-active button {
	background: var(--red);
}

.body-copy-right {
	padding-left: 70px;
	position: relative;
}

.body-copy-right:before {
    content: "";
    height: 94%;
    position: absolute;
    width: 0.5px;
    left: 0;
    top: 9px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
}

.home-body-copy .award-list ul li {
	font-size: 18px;
}

.body-copy-image {
	padding-right: 25px;
	padding-bottom: 25px;
}

.body-copy-image {
	position: relative;
	margin-top: 30px;
}

.body-copy-image::before {
	content: "";
	position: absolute;
	width: 98%;
	height: 85%;
	border: 8px solid #A70227;
	right: 0px;
	bottom: 0px;
	z-index: 1;
}

.body-copy-image img {
	z-index: 2;
	position: relative;
}

.home-personal_injury {
	margin-top: 165px;
	padding-bottom: 260px;
}

.injury-bg-image {
    margin-top: -135px;
    position: relative;
    padding: 64px 80px 80px 80px;
}

.injury-bg-image::before {
	content: "";
	background: #C10000E0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}

.point-list,
.personal-heading {
	position: relative;
	z-index: 2;
}

.personal-heading h2 {
	font-family: var(--font-opensans);
	font-weight: 800;
	font-size: 50px;
	line-height: 70px;
	text-transform: uppercase;
}

.point-list ul {
	display: flex;
	flex-direction: column;
	row-gap: 30px;
	margin-top: 30px;
}

.point-list ul li {
	font-family: var(--font-nunito);
	font-weight: 400;
	font-size: 21px;
	line-height: 158%;
	position: relative;
	padding-left: 15px;
}

.point-list ul li::before {
	content: "";
	position: absolute;
	left: 0px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #fff;
	top: 12px;
}

.home-types-injury .award-list ul {
	display: flex;
	flex-direction: inherit;
	flex-wrap: wrap;
	row-gap: 25px;
}

.home-types-injury .award-list ul li {
	width: 50%;
	column-gap: 20px;
}

.home-types-injury {
	background-color: #F5F5F5;
}

.home-types-injury .award-list ul li a {
    font-size: 21px;
    color: #333;
    display: flex;
    align-items: center;
    column-gap: 20px;
	transition: 0.5s;
}

.home-types-injury .award-list ul li a:hover {
    color: var(--red);
}

/************* Home CSS END *************/

/*************  Inner Pages CSS Start *************/

#breadcrumbs {
	font-family: var(--font-nunito);
	font-family: Nunito Sans;
	font-weight: 700;
	font-size: 18px;
	line-height: 158%;
	color: #232841;
}

.breadcrumb-sec * {
	color: #232841;
	font-weight: 400;
	font-size: 18px;
	line-height: 158%;
	color: #232841;
}

.breadcrumb-sec span span, .breadcrumb-sec span span a {
	color: #232841;
	font-weight: 700;
	font-size: 18px;
	line-height: 158%;
	color: #232841;
}

.blog-meta {
	display: flex;
}


.search-left-side .page-title span {
	color: var(--red);
	font-size: 28px;
	line-height: 35px;
	font-weight: 300;
}

.search-left-side .entry-title a {
	display: inline-block;
	font-style: normal;
	letter-spacing: 0.01em;
	width: auto;
	position: relative;
	margin-bottom: 10px;
	font-size: 25px;
	line-height: 40px;
	text-transform: capitalize;
	color: #2c2c2c;
	font-weight: 600;
}

.search_result article {
	width: 100%;
	position: relative;
	padding: 0;
	text-align: left;
	border-bottom: 1px solid #ededed;
	margin-bottom: 30px;
	padding-bottom: 40px;
}

.search-icon-form button {
	display: flex;
}

.search-input-box input::placeholder {
	color: #ffffff85 !important;
}

.sidebar .widget.searchitem {
	padding: 0;
	border: none;
	float: left;
	width: 100%;
	position: relative;
	box-shadow: none;
}

.sidebar .searchitem .search-field {
	color: #000;
	font-size: 16px;
	height: 60px;
	display: inline-block;
	width: 100%;
	float: left;
	margin: 0;
	padding: 12px;
	padding-right: 65px;
	line-height: 26px;
	background: #fff;
	border-radius: 0px;
	border: 1px solid #BABABA;
}

.sidebar .searchitem .search-submit {
	background-image: url(../images/red-search-icon.svg) !important;
	background-size: 20px !important;
	border: 1px solid var(--bs-grey);
}

.sidebar .searchitem .search-submit {
	border: none;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 50px;
	height: 50px;
	padding: 10px;
	margin: auto;
	cursor: pointer;
	font-size: 0px;
	background-position: 15px center;
	background-repeat: no-repeat;
	right: 6px;
	background-color: transparent;
	border-radius: 15px;
	color: #fff;
	text-transform: uppercase;
	transition: 1s all;
}

.screen-reader-text {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.sidebar .searchitem label {
	display: inline;
	margin-bottom: 0;
}

.sidebar .widget {
	margin-bottom: 35px;
	z-index: 1;
}

.blog-card:hover img.avatar {
	transform: none;
}

.mobile-search-bar:hover svg path {
	transition: 0.5s;
}

.header-contact-info:hover a {
	color: var(--red);
}

.reviews-list .inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;
	height: 100%;
}

.form-btn .ppc-btn:hover {
	color: var(--red);
	background-color: rgba(240, 239, 239, 1);
	border-color: var(--red);
}

.faq-page .accordion-body p {
	font-size: 21px;
}

.prev:hover,
.next:hover {
	color: var(--red);
	background-color: rgba(240, 239, 239, 1);
	border-color: var(--red);
}

.widget ul li a:hover {
	color: var(--red);
}

.sidebar-form .wpcf7-submit:hover {
	color: var(--red);
	background-color: rgba(240, 239, 239, 1);
	border-color: var(--red);
}

.search_result a {
	color: var(--red);
}

.search_result a.btn {
	color: var(--white);
}

.search_result a.btn:hover {
	color: var(--red);
}

.search_result a:hover {
	text-decoration: underline;
}

.search_result a.btn:hover {
	text-decoration: none;
}

.form-content ul li a {
	transition: 0.5s;
}

.form-content ul li a:hover {
	text-decoration: underline;
}

/* Show and then fade out after 5s */
.wpcf7 form.sent .wpcf7-response-output {
	animation: cf7-fadeout 0.5s ease 5s forwards;
}

@keyframes cf7-fadeout {
	to {
		opacity: 0;
		max-height: 0;
		padding-top: 0;
		padding-bottom: 0;
		margin-top: 0;
		margin-bottom: 0;
		visibility: hidden;
	}
}

.accordion-button {
	justify-content: flex-end;
	align-items: flex-start;
}

.faq-alpha {
	padding-right: 10px;
}

.breadcrumb a:focus {
	color: var(--red);
}


.advocate-block {
	background-color: #fff;
}

.advocate-block {
	padding: 40px 60px;
	margin-top: 80px;
	column-gap: 70px;
}

.advocate-block .shady-black {
	font-family: var(--font-nunito);
}

.advocate-block a {
	width: max-content;
	min-width: max-content;
	height: max-content;
}

.about-family-section .family-image::before {
	width: 92%;
	height: 88%;
	right: 5%;
	bottom: 25px;
}

.about-family-section .btn {
	margin-top: 30px;
}

.about-family-section .family-content-inner::before {
	height: 89%;
}

.breadcrumb-sec {
	background: #F3F3F3;
}

.inner-page-banner {
	height: 350px;
	text-align: center;
}

.inner-page-banner {
	height: 350px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.inner-banner-heading {
	font-family: var(--font-opensans);
	font-weight: 700;
	font-size: 70px;
	line-height: 136%;
	text-align: center;
	text-transform: uppercase;
}


/* Contact Us Page */

.contact-page-form .sub-heading {
	font-weight: 400;
	font-size: 24px;
	line-height: 100%;
	text-align: center;
	color: var(--red);
}

.contact-info {
	background: #fff;
	display: flex;
	width: 100%;
	padding: 50px 40px;
}

.contact-info-inner span {
	background: var(--red);
	width: 50px;
	min-width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
}

.contact-info-inner {
	display: flex;
	width: 50%;
}

.contact-left-block {
	padding: 30px;
}

.contact-info-inner {
	display: flex;
	width: 50%;
	column-gap: 20px;
	align-items: center;
	font-family: var(--font-nunito);
	font-weight: 500;
	font-size: 24px;
	line-height: 158%;
	color: var(--red);
}

.contact-left-block {
	padding: 70px 50px;
	background: #F5F5F5;
	border: 1px solid #E5E5E5;
}

.contact-image-block {
	padding-left: 40px;
}

.contact-form-block {
	padding-right: 40px;
}

.contact-right-block {
	width: 100%;
	height: 100%;
	padding: 30px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.blog-post-list .blog-inner::before {
	display: none;
}

.blog-post-list .blog-box {
	flex-wrap: wrap;
	justify-content: space-between;
	height: 222px;
	padding: 30px;
	row-gap: 20px;
	width: 92%;
}

.blog-item:hover .post-author {
	color: #fff;
}

.blog-post-list .blog-box.author-show {
	height: 285px;
}

.blog-post-list .blog-title {
	font-weight: 700;
	font-size: 20px;
	text-transform: capitalize;
	width: 100%;
	line-height: 123%;
}

.blog-post-list .blog-box p {
	font-weight: 400;
	font-size: 16px;
	line-height: 158%;
	margin-bottom: 0px;
}

.blog-post-list .blog-item {
	padding: 0px;
}

.blog-post-list .blog-box a {
	justify-content: end;
	width: 100%;
	text-align: right;
	height: auto;
}

.blog-post-list>.row {
	row-gap: 40px;
}

.blog-post-list .blog-box a {
	color: var(--red);
}

.blog-post-list .blog-box {
	background: #fff;
	box-shadow: 0px 0px 8px 0px #00000026;
}

.blog-post-list .blog-box {
	transition: 0.5s;
}

.blog-post-list .blog-item:hover .blog-box {
	background-color: var(--red);
}

.blog-post-list .blog-item:hover .blog-box .blog-title,
.blog-post-list .blog-item:hover .blog-box p,
.blog-post-list .blog-item:hover .blog-box a {
	color: #fff!important;
}

.contact-form-sidebar {
	background: #0A070C;
	padding: 50px 30px;
}

.blog-page-row .blog-list-area {
	width: 70%;
}

.blog-page-row .form-sidebar {
	width: 30%;
}

.blog-page-row .form-sidebar {
    width: 30%;
    padding-left: 117px;
    padding-right: 0px;
}

.blog-page-row .blog-post-list .col-md-6 {
	padding: 0px;
}

.blog-page-row .blog-post-list .blog-item {
	padding: 0px 20px;
}

.accept-text {
	font-family: var(--font-nunito);
	font-weight: 500;
	font-style: Italic;
	font-size: 16px;
	line-height: 158%;
}

.sidebar-form-heading {
	font-family: var(--font-opensans);
	font-weight: 700;
	font-size: 30px;
	line-height: 40px;
	text-align: center;
	text-transform: uppercase;
}

.single-post .blog-img img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

.single_post p {
	color: #232841;
}

.practice-areas-page .single-practice {
	width: 25%;
}

.practice-areas-page .single-practice:nth-child(2) {
	margin-top: 0px;
}

.practice-areas-page .single-practice:nth-child(3) {
	margin-top: 0px;
}


/* Team Page */

.team-list-sc .img-sc img {
	width: 100%;
}

.team-list-sc .title-sc {
	background: #fff;
	position: absolute;
	bottom: -40px;
	width: 84%;
	box-shadow: 0px 0px 8px 0px #00000026;
	padding: 20px 10px 20px 30px;
}

.team-list-sc .title {
	font-family: var(--font-opensans);
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	text-transform: capitalize;
	color: #000;
}

.team-list-sc .sub-title {
	font-family: var(--font-nunito);
	font-weight: 400;
	font-size: 16px;
	line-height: 158%;
	color: #000;
	margin-top: 10px;
}

.bg-black .heading {
	color: #fff;
}

.team-page-row {
	row-gap: 38px;
}

.team-page-row .title-sc,
.team-page-row .title,
.team-page-row .sub-title {
	transition: 0.5s;
}

.team-page-row .col-wrap {
	padding: 0px 10px;
}

.team-page-row .col-wrap:hover .title-sc {
	background-color: var(--red);
}

.team-page-row .col-wrap:hover .title {
	color: #fff;
}

.team-page-row .col-wrap:hover .sub-title {
	color: #fff;
}

.team-detail .team-member-title {
	font-family: var(--font-opensans);
	font-weight: 700;
	font-size: 40px;
	line-height: 52px;
}

.team-sub-title {
	font-family: var(--font-nunito);
	font-weight: 400;
	font-size: 18px;
	line-height: 158%;
	color: var(--red);
}

.team-content-right a {
	background: var(--red);
	color: #fff;
	padding: 20px;
	font-family: var(--font-nunito);
	display: flex;
	justify-content: center;
	align-items: center;
	width: max-content;
	column-gap: 10px;
	font-weight: 800;
	font-size: 18px;
	line-height: 158%;
}

.team-content {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px;
}

.team-profile-image {
	width: 35%;
}

.team-profile-content {
	width: 65%;
	padding-left: 100px;
}

.team-content-title {
	font-family: var(--font-opensans);
	font-weight: 700;
	font-size: 40px;
	line-height: 52px;
	margin-bottom: 24px;
}

.team-detail-section li {
	font-family: var(--font-nunito);
	font-weight: 400;
	font-size: 18px;
	line-height: 35px;
}

.team-detail-section li::before {
	background: #fff !important;
}

.team-detail-section p {
	margin-bottom: 6px;
}


/* Case_results  */

div#case-results-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.case-result-box {
	width: 33%;
	padding: 15px 15px;
}

.case-result-item {
	background: #F3F3F3;
	border: 1px solid #BFBFBF;
	padding: 60px 45px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 100%;
}

.case-result-title {
	font-family: var(--font-opensans);
	font-weight: 700;
	font-size: 44px;
	line-height: 40px;
	text-align: center;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.case-result-title::before {
	content: "";
	position: absolute;
	width: 300px;
	bottom: 0px;
	border-bottom: 1px solid rgb(0 0 0 / 20%);
	left: 50%;
	transform: translateX(-50%);
}

.result-read-more {
	background: transparent;
	border: none;
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	text-decoration: underline;
	color: var(--red);
}

.case-result-content {
	font-family: var(--font-nunito);
	font-weight: 400;
	font-size: 18px;
	line-height: 158%;
	text-align: center;
	margin-bottom: 30px;
}

.case-result-content {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	/* show only 3 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.case-result-item {
	transition: 0.5s;
}

.case-result-item:hover {
	background-color: var(--red);
}

.case-result-title,
.case-result-content,
.result-read-more {
	transition: 0.5s;
}

.case-result-item:hover .case-result-title,
.case-result-item:hover .case-result-content,
.case-result-item:hover .result-read-more,
.case-result-item:hover .case-content-title {
	color: #fff;
}

.case-result-item:hover .case-result-title::before {
	border-bottom: 1px solid rgb(255 255 255 / 30%);
}

.page-testimonial-section .item {
	padding: 15px;
}

#cares-slider .slick-list {
	overflow: hidden;
}


#cares-slider .prev-arrow {
	background: var(--red);
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	position: absolute;
	top: -63px;
}

#cares-slider .next-arrow {
	background: var(--red);
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	position: absolute;
	top: -63px;
}

.community-section .sub-heading {
	font-weight: 700;
	font-size: 40px;
	line-height: 80px;
	margin-bottom: 0px;
	text-transform: none;
}

.community-section::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 50%;
	background: #000;
	bottom: 0px;
}

.community-section hr {
	width: 100%;
	margin: 30px 0px 50px 0px;
}

.community-section h2 {
	text-transform: uppercase;
}

.project-block-main {
	padding: 15px;
	width: 25%;
}

.project-block-inner {
	background: #fff;
	padding: 30px 40px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.white-btn {
	color: var(--red);
	background: #fff;
	margin: auto;
	display: block;
	margin-top: 30px;
}

.page-testimonial-section .home-sec-topcontent h2 {
	text-transform: uppercase;
}

.page-testimonial-section .testimonial-slider .item .inner {
	background: #F3F3F3;
	padding: 40px 30px;
}

.page-testimonial-section .home-sec-topcontent {
	padding-bottom: 50px;
}


.page-with-sidebar h2,
.page-with-sidebar h3,
.page-with-sidebar h4,
.page-with-sidebar h5,
.page-with-sidebar h6 {
	margin: 60px 0px 30px 0px;
}

.blog-list-area h2:first-child {
    margin-top: 0px;
}

.single-service {
	width: 25%;
	padding: 10px;
	height: 450px;
}

.single-service-inner {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

.service-title {
	background-color: #fff;
	font-family: var(--font-opensans);
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	text-transform: capitalize;
	padding: 28px 65px;
	color: rgba(0, 0, 0, 1);
	z-index: 2;
	transition: 0.5s;
}

.single-service-inner::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.single-service:hover .service-title {
	background-color: var(--red);
	color: #fff;
}

.consult-form-block {
	padding: 80px 50px;
	text-align: center;
}

.consult-form-block .form-heading {
	margin-bottom: 40px;
}

.consult-form-inner .wpcf7-submit {
	width: 254px;
}

.font-italic {
	font-style: italic;
}

.paging-new .nav-links {
	display: flex;
	width: 100%;
	justify-content: center;
	border-top: 1px solid rgba(0, 0, 0, .3);
	border-bottom: 1px solid rgba(0, 0, 0, .3);
	margin-top: 40px;
	padding: 20px 0px;
}

.paging-new .page-numbers {
	background: transparent;
	width: 44px;
	height: 44px;
	color: rgba(35, 40, 65, 1);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin: 0px 10px;
	border: 1px solid rgba(35, 40, 65, 1);
}

.page-numbers.current {
	color: #fff;
	background: var(--red);
	border: 1px solid var(--red);
}

.paging-new .page-numbers.prev {
	margin-right: auto;
}

.paging-new .page-numbers.next {
	margin-left: auto;
}

.paging-new .page-numbers.prev,
.paging-new .page-numbers.next {
	font-size: 0px;
}

.paging-new .page-numbers.prev::before {
	content: "";
	background-image: url(https://masseyfightstg.wpenginepowered.com/wp-content/uploads/2025/09/Right-Icon.png);
	position: absolute;
	width: 44px;
	height: 40px;
	background-size: 14px;
	background-repeat: no-repeat;
	background-position: center;

}

.paging-new .page-numbers.next::before {
	content: "";
	background-image: url('https://masseyfightstg.wpenginepowered.com/wp-content/uploads/2025/09/left-Icon.png');
	position: absolute;
	width: 44px;
	height: 40px;
	background-size: 14px;
	background-repeat: no-repeat;
	background-position: center;
}

.next.page-numbers,
.prev.page-numbers {
	color: #fff;
	background: var(--red);
	border: 1px solid var(--red);
}

.news-page .blog-box {
	flex-wrap: wrap;
	justify-content: space-between;
	height: 160px;
	padding: 30px;
	row-gap: 9px;
	width: 92%;
}

#case-results-list .case-result-box:nth-child(1):hover .case-result-item svg path {
	fill: #fff;
}

#case-results-list .case-result-box:nth-child(2):hover .case-result-item svg path {
	fill: #fff;
}

#case-results-list .case-result-box:last-child:hover .case-result-item svg path {
	fill: #fff;
}

#case-results-list .case-result-box:last-child:hover .case-result-item svg g path {
	stroke: #fff;
	fill: none;
}

.services-results-page .case-result-title {
	font-size: 28px;
	padding-bottom: 15px;
	margin-bottom: 15px;
	margin-top: 30px;
}

.row.service-page-single-row {
	justify-content: flex-start;
	align-items: center;
	display: flex;
	flex-direction: row;
	padding: 30px 0px;
	column-gap: 40px;
}

.row.service-page-single-row a {
	width: max-content;
}

.home-testimonial-section {
	overflow: hidden;
}


.post-author {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
}

.author-link {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	column-gap: 10px;
}

.post-author .author-name {
	font-family: var(--font-opensans);
	font-weight: 700;
	font-size: 18px;
	line-height: 100%;
	text-transform: capitalize;
}


.avatar {
	width: 40px;
	height: 40px;
	object-fit: cover;
	border-radius: 50%;
}


.practice-side {
	border: 1px solid #e2e2e2;
	background: #fff;
	border-radius: 15px;
	padding: 40px 30px;
	margin-top: 36px;
}

.widget-title {
	font-family: var(--font-opensans);
	font-weight: 700;
	font-size: 30px;
	line-height: 40px;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.widget-menu ul li a {
	color: var(--shady-black);
}

.widget-menu ul li {
    margin-bottom: 15px;
    border-bottom: 1px solid #00000038;
    padding-bottom: 15px;
}

.widget-menu .activeChild a {
	font-weight: 600;
	color: var(--red);
}

.home-blog-slider .blog-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.sub-menu .sub-menu {
	min-width: 320px;
}

.phone-button {
	transition: 0.5s;
}

.body-copy-image img {
	width: 100%;
}

.pri-link {
	color: #fff;
}

.pri-link:hover {
	color: #fff;
	text-decoration: underline;
}

.wpcf7-form-control input[type="checkbox"] {
  display: none;
}

.wpcf7-acceptance .wpcf7-list-item-label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: block;
    line-height: 1.4;
}

.wpcf7-acceptance .wpcf7-list-item-label:before {
    border: 1px solid var(--shady-black);
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    top: 1px;
    left: 0;
    border-radius: 2px;
    background: var(--bs-white);
}

.wpcf7-acceptance label input:checked+.wpcf7-list-item-label:before {
    border-color: var(--red);
    background: var(--red);
}

.wpcf7-acceptance label input:checked+.wpcf7-list-item-label:before {
    border-color: #fff;
    background: var(--red);
}

.wpcf7-acceptance label input:checked+.wpcf7-list-item-label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 8px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.wpcf7-list-item {
    display: inline-block;
    margin: 0px;
}

.wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed;
    background: var(--red);
    color: #fff;
    border: 1px solid var(--red);
}

.view-all-blog-btn {
    font-family: var(--font-opensans);
    font-weight: 700;
    font-size: 22px;
    line-height: 161%;
    text-decoration: underline;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

.blog-box, .blog-item .blog-title, .blog-item a, .blog-item p{
	transition: 0.5s;
}

.blog-item:hover .blog-box {
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
	background: #fff;
}

.blog-item:hover .blog-title, .blog-item:hover a {
	color: var(--red)!important;
}

.proud-heading {
	margin-bottom: 30px;
}

.home-proud-section .btn {
	margin-top: 30px;
}


.current-menu-ancestor .current-menu-item a {
	    color: var(--bs-white);
    background: var(--red);
}

.phone-text img{
	width: 22px;
	height: 22px;
}

.practice-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.practice-popup .popup-inner {
  background: #fff;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  border-radius: 8px;
  position: relative;
  animation: fadeInUp 0.5s ease;
}

.practice-popup .popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.practice-popup .popup-content {
  font-size: 16px;
  line-height: 1.6;
  color: #222;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.single-practice {
	cursor: pointer;
}

.mobile-search-bar {
	    margin-top: -2px;
}

.wpcf7 .wpcf7-submit.white-btn:disabled {
    color: var(--red);
    background: #fff;
}

.social-sc {
    padding-top: 20px;
}
.social-sc li a , .social-sc li a svg, .social-sc li a svg path {
	transition: 0.5s;
}
.social-sc li a:hover {
	background: transparent;
}

.breadcrumb-sec {
	padding: 15px 0px;
}
.community-section p{
	line-height: 35px;
}
.cares-slide img {
	width: 100%;
}
.cares-row h2 {
	text-transform: uppercase;
}
.modal-header {
    padding-top: 10px;
}
.case-results-page h2 {
	text-transform: uppercase;
}

.sidebar .form-group {
    margin-bottom: 15px;
}

.sidebar .form-control {
    height: 60px;
}
.sidebar textarea.form-control {
	height: 60px!important;
	    padding: 15px 20px !important;
}

.nav-links>.current {
	margin-left: auto;
}

.blog-post-list .blog-box a {
    font-size: 14px;
}

.blog-post-list .blog-box p {
	 display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.paging-new .page-numbers {
	transition: 0.5s;
}

.paging-new .page-numbers:hover {
    background: var(--red);
    color: #fff;
    border: none;
}

.contact-page-map iframe {
	margin-bottom: -10px;
}

.home-athens-section{
    padding: 120px 0px;
}

.paged .nav-links>.current {
    margin-left: 10px;
}

.home-athens-section h2 {
	font-weight: 800;
    font-size: 50px;
    line-height: 150%;
}

.blog-image a{
	z-index: 1;
    position: relative;
}

.slick-active .blog-image a{
	z-index: 3;
    position: relative;
}



.footer-menu .menu>li>a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    right: 0;
    left: 0;
    bottom: -2px;
    background: #fff;
    transition: all .5s ease-in-out;
    margin: auto;
    opacity: 1;
    left: 50%;
    transform: translateX(-50%);
}

.footer-menu .menu>li>a:hover:before {
    width: 100%;
}

.footer-menu .current-menu-item>a:before {
    width: 100% !important;
}

.direction-link {
	width: max-content;
    margin: 15px auto 0px;
}

.phone-bottom span , .direction-link {
    position: relative;
}

.phone-bottom span:before, .direction-link:before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--red);
    transition: all .5s ease-in-out;
    margin: auto;
    opacity: 1;
    left: 50%;
    transform: translateX(-50%);
}
.phone-bottom span:hover:before, .direction-link:hover:before {
	width: 100%;
}

.ser-phone-link {
	padding: 18px 30px;
    border: 1px solid var(--red);
    border-radius: 6px;
    line-height: 136%;
	transition: .5s;
}

.ser-phone-link:hover {
    border: 1px solid var(--red);
	background-color: var(--red);
	color: #fff;
}

.menu-wrap .current-menu-item>a {
	color: var(--red);
}

.view-all-blog-btn:hover{
    color: #000;
} 

.view-all-blog-btn:hover svg path{
    fill: #000;
} 

.sub-menu .sub-menu {
    margin-top: 4px !important;
}

.about-menu-top .sub-menu .sub-menu {
    margin-top: 1px !important;
}

.paged-11 .page-numbers.current {
	margin-right: auto;
}

.blog-list-area>h2 {
	margin-bottom: 30px;
}

.community-section span{
	display: flex;
    justify-content: center;
    align-items: center;
}

.slick-arrow, .slick-arrow:hover svg path {
	transition: 0.5s;
}

.slick-arrow:hover {
    background-color: #fff!important;
    border: 1px solid var(--red)!important;
}
.slick-arrow:hover svg path {
        fill: var(--red);
}

.wpcf7-acceptance .wpcf7-list-item-label span{
	text-align: left !important;
    display: block;
}

.slick-arrow span {
	 display: flex;
    justify-content: center;
    align-items: center;
}

 .slick-slide {
  margin: 0 15px; /* gap between slides */
}

 .slick-list {
  margin: 0 -15px; /* compensate margins */
}


.blog-list-area img {
		margin-top: 30px;
	}
	.blog-list-area>p>img{
		margin-top: 0px;
	}
.blog-inner {
	transition: 2s;
}

.home-award-section {
    padding-top: 68px;
}

.single-post h1{
        font-size: 54px;
        line-height: 122%;
        margin-bottom: 20px;
    }

.form-sidebar .wpcf7-acceptance span{
	    font-size: 15px;
    line-height: 24px;
}

.initiatives-block-main {
	padding: 10px;
}

.initiatives-block-inner {
    background: #F3F3F3;
    border: 1px solid #BFBFBF;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: space-between;
	row-gap: 20px;
}

.initiatives-content h5 {
    font-family: var(--font-opensans);
    font-weight: 700;
    font-size: 30px;
    line-height: 42px;
    text-transform: uppercase;
    position: relative;
    margin: 0px 0px 15px 0px;
}

.row.cares-initiatives {
    justify-content: center;
}

.initiatives-image {
    width: 100%;
}

.initiatives-image img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    object-position: top;
}

.block-even .initiatives-block-inner {
	flex-direction: column-reverse;
}

.initiatives-top-heading {
    margin-bottom: 80px;
}

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


/* Popup */
.practice-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-inner {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80%;
    overflow-y: auto;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.event-list li {
	background: #F5F5F5;
    padding: 20px;
    font-size: 18px;
    line-height: 35px;
	transition: 0.5s;
}

.event-list li b {
	color: #C10000;
	transition: 0.8s;
}

.event-list ul {
	display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding-top: 20px;
}

.event-list li:hover {
	background: #C10000;
	color: #fff;
}

.event-list li:hover b {
	color: #fff;
}

.taligate-form {
	background-color: #F5F5F5;
}

#review-slider .slick-list{
	overflow: hidden;
}


#review-slider .slick-track {
    display: flex;
    height: 100%;
}

#review-slider .slick-slide {
    display: block;
    display: flex;
    align-items: stretch;
    height: auto;
}

.testimonial-slider .item {
    padding: 25px;
    height: 100%;
    cursor: grab;
}

.page-testimonial-section .item {
	cursor: auto;
}

.scholar-image img {
	width: 70%;
    margin: auto;
}