/* Common CSS Start */

:root {
	--blue: #29304A;
	--secondary: #D2D7DF;
	--white: #fff;
	--black: #000;
	--body: #333;
	--font-heading: 'Oswald', sans-serif;
	--font-content: 'Roboto', 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-content);
	font-size: 18px;
	line-height: 30px;
	background-color: var(--lightgrey);
	padding-top: 150px;
}
p {
  text-align: justify;
}
.wow {
	overflow: hidden;
}

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

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

.trans-5, .trans-5 p, .trans-5 svg path{
	transition: 0.5s;
}


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

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

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

.text-light-bg {
	color: var(--secondary);
}

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

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

.text-blue, .text-blue p {
	color: var(--blue);
}

.body-black, .body-black p {
	color: var(--body);
}

.body-text, .body-text p{
	font-family: var(--font-content);
	font-weight: 300;
	font-size: 16px;
	line-height: 28px;
}

.light-blue-bg {
	background-color: var(--secondary);
}

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

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

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

.hide {
	display: none;
}

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

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

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

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

body, p {
	margin-bottom: 15px;
	font-family: var(--font-content);
	font-weight: 400;
	font-size: 18px;
	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(--blue);
}

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;
}

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

.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-content);
}

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

.btn {
	color: var(--white);
	background-color: var(--blue);
	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;
	z-index: 1;
	text-align: center;
	transition: .6s;
	padding: 15px 25px;
	border-radius: 0px;
	font-family: var(--font-content);
	font-weight: 400;
	font-size: 20px;
	line-height: 100%;
	text-transform: uppercase;
	width: max-content;
}

.white-btn {
	color: var(--blue);
	background: #fff;
	display: block;
}

.light-blue-btn {
	color: var(--body);
	background:  var(--secondary);
	display: block;
}

.white-trans-btn {
	color: var(--white);
	background: transparent;
	border: 1px solid #fff;
	display: block;
}

.blue-trans-btn {
    color: var(--blue);
    background: transparent;
    border: 1px solid var(--blue);
    display: block;
}

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

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

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

.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(--blue);
}

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

.white-btn:hover {
	background: var(--blue);
    color: #fff;
	border: 1px solid #fff;
}

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-heading);
	font-weight: 700;
	text-transform: uppercase;
}

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

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(--blue);
	border-radius: 50%;
	top: 13px;
	transform: translateY(-50%);
	left: 4px;
}

/* Section-Padding */

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

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

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

.pt-0 {
	padding-top: 120px;
}

.pb-0 {
	padding-bottom: 100px;
}

/* Section-Margin */

.section-mr {
	margin: 120px 0;
}

.section-mt {
	margin-top: 120px;
}

.section-mb {
	margin-bottom: 120px;
}

.mt-0 {
	margin-top: 120px;
}

.mb-0 {
	margin-bottom: 0px;
}

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

.heading-font {
	font-family: var(--font-heading);
}

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

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

.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(--blue);
	background: var(--bs-white);
}

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

.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 */

/* -----------Pagination------------ */

.paging-new .nav-links {
	display: flex;
	width: 100%;
	justify-content: center;
	margin-top: 40px;
	padding: 20px 0px;
}

.paging-new .page-numbers {
    background: transparent;
    width: 50px;
    height: 50px;
    color: rgba(35, 40, 65, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px;
    margin: 0px 10px;
    font-family: Roboto;
    font-weight: 400;
    font-size: 18px;
    line-height: 32.71px;
    color: rgba(51, 51, 51, 1);
}

.page-numbers.current {
    color: var(--blue);
    font-weight: 900;
}

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

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

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

.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(../images/left-arrow-white.svg);
	position: absolute;
	width: 44px;
	height: 40px;
	background-size: 7px;
	background-repeat: no-repeat;
	background-position: center;

}

.paging-new .page-numbers.next::before {
	content: "";
	background-image: url(../images/right-arrow-white.svg);
	position: absolute;
	width: 44px;
	height: 40px;
	background-size: 7px;
	background-repeat: no-repeat;
	background-position: center;
}

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


/* -----------Pagination-End----------- */

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

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

.schema-sec-2 .schema-wrap {
	background-color: var(--blue);
	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************/

/* 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 {
    font-family: var(--font-heading);
    padding: 20px 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    font-weight: 400;
    font-size: 22px;
    line-height: 100%;
    text-transform: uppercase;
	color: var(--blue);
}

.nav-menu .menu-top>li>a:before {
	content: "";
	position: absolute;
	width: 0;
	height: 1px;
	right: 0;
	left: 0;
	bottom: 0;
	background: var(--blue);
	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(--white); */
}

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

.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(--blue);
	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(--blue);
	color: #fff;
}

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

.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(--blue);
	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;
}

.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(--blue);
    min-width: 280px;
    text-align: left;
}

ul.menu-top li .sub-menu li a {
    font-family: var(--font-heading);
    padding: 20px 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    font-weight: 400;
    font-size: 22px;
    line-height: 100%;
    text-transform: uppercase;
}

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 {
    color: var(--blue);
    background: var(--secondary);
}

ul.menu-top li .sub-menu li a:hover {
    color: var(--white);
    background: var(--blue);
}
.header-row{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.header-left-logo {
	width: 250px;
}

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

.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;
}

.phone-wrapper {
	row-gap: 8px;
}

.phone-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.header-phone.text-white {
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 26px;
	line-height: 100%;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 13px;
	color: var(--blue) !important;
}
.header-contact-info .white-search-icon svg path, .header-phone svg path {
    fill: var(--blue);
}
.header-phone-text.text-light-bg {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
	color: var(--blue);
}

ul.menu-top li .sub-menu li.menu-item-has-children>a:hover {
	background-color: var(--blue);
	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-blue.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-arrow.svg);
}

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

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

/* 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;
}

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

.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: 50px;
	column-gap: 15px;
}

.white-search-icon {
	display: flex;
	justify-content: center;
	cursor: pointer;
	padding-right: 30px;
}

.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: 19px 0px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.18);
   /*  background: var(--blue); */
    background: #fff;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header#header.small-header {
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.18);
}
.logo-wrapper img {
    max-height: 110px;
    object-fit: contain;
    width: auto;
    object-position: center left;
}
.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 {
	display: flex;
    justify-content: center;
    align-items: center;
}

.header-contact-info a {
    transition: .5s;
    display: flex;
    justify-content: end;
    align-items: center;
    border-right: 2px solid  var(--blue);
    border-left: 2px solid  var(--blue);
    padding: 20px;
    min-width: 229px;
}
.phone-button {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 16px;
	line-height: 136%;
	text-align: center;
	background: var(--blue);
	color: var(--white);
	padding: 11px;
	border-radius: 5px;
	border: 1px solid transparent;
	letter-spacing: 1px;
}

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

.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 {
	fill: var(--secondary);
}

/** Mobile Search Bar ***/

.mobile-search-bar-box {
	position: fixed;
	top: 0;
	width: 100%;
	height: 162px;
	z-index: 10000;
	background-color: var(--blue);
	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(--blue);
	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: 120px;
	z-index: 10000;
	background-color: var(--blue);
	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(--blue);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
    background: transparent;
}

.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(--blue);
    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: 11px;
	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;
}

.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(--blue);
	border: 2px solid var(--blue);
	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: var(--blue);
    text-align: center;
    margin-left: auto !important;
    margin-right: auto !important;
    opacity: 1;
    width: 100%;
    border-radius: 0px;
    padding: 5px 10px;
    font-weight: 400;
    font-family: var(--font-heading);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: .5px;
	border-color: var(--blue);
}

.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:50px;
	width: 100%;
	padding: 10px 17px;
	color: var(--bs-body-color);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: transparent;
	background-clip: padding-box;
	border-radius: 0px;
	transition: border-color .5s ease-in-out, box-shadow .5s ease-in-out;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 18px;
	line-height: 158%;
	border: 1px solid rgba(220, 220, 220, 1);
}

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

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

.wpcf7 select {
	color: rgba(13, 13, 13, 1);
}

.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-content);
}

.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;
}

.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;
	}
}

/************ Contact Form CSS END ************/

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

footer.footer {
    background: var(--blue);
}

footer a {
	color: #fff;
}

.footer-main-columns {
    width: 32%;
    padding: 0px 30px 0px 0px;
}

.footer-main-menu {
    width: 20%;
}

.footer-address {
	width: 28%;
}

.footer-text p {
	line-height: 32px;
	margin-top: 35px;
}

.follow-text.text-white {
    font-weight: 600;
    font-size: 25px;
    line-height: 100%;
    text-transform: uppercase;
    border-left: 2px solid rgba(245, 245, 247, 1);
    padding-left: 10px;
}

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

.footer-menu {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.footer-menu li a {
    font-family: var(--font-content);
    font-weight: 300;
    font-size: 22px;
    line-height: 32px;
    position: relative;
    padding-left: 24px;
}

.footer-menu li a::before {
    content: "";
    width: 12px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.footer-address-title {
	font-weight: 600;
    font-size: 25px;
    line-height: 100%;
    text-transform: uppercase;
}

.nap-content .address svg {
	margin-top: 9px;
}

.nap-content.text-white {
    margin-top: 30px;
}

.address-inner span , .address-inner .direction-link, .phone-inner a span {
	font-family: var(--font-content);
	font-weight: 300;
    font-size: 22px;
    line-height: 32px;
}

.phone-inner {
	display: flex;
    align-items: center;
    column-gap: 15px;
}

footer a:hover {
	color: rgb(204, 209, 218);
}

.footer-bottom-row p {
    font-family: var(--font-content);
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    color: rgba(51, 51, 51, 1);
    padding: 13px 0px;
}

.subsribe-form  {
	display: flex;
	align-items: center;
	padding: 40px 0px;
}

.subsribe-form .form-control {
    height: 36px;
    background: #fff;
    padding: 6px 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
	font-family: var(--font-content);
}

.subsribe-form .wpcf7-form-control-wrap {
	width: 218px;
}

.subsribe-form .btn {
    height: 36px;
    background: rgba(210, 215, 223, 1);
    padding: 0px;
    max-width: 80px;
    min-width: 80px;
    font-weight: 400;
    font-style: unset;
    font-size: 20px;
    line-height: 26px;
    text-transform: uppercase;
	font-family: var(--font-content);
}

.privacy-menu {
	display: flex;
	column-gap: 20px;
}

.privacy-menu li a {
	font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.26px;
    color: #333;
    font-family: var(--font-content);
}




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

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

.home-banner img {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
}

.home-award-section {
    height: 100vh;
    padding-top: 100px;
}

.home-banner:after {
    content: "";
    background: #00000066;
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

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

.banner-sub-heading {
	font-weight: 300;
    font-size: 35px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
	font-family: var(--font-content);
}

.banner-heading {
    font-weight: 700;
    font-size: 75px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    margin: 30px 0px;
}

.banner-content p{
	font-family: var(--font-content);
	font-weight: 300;
	font-size: 30px;
	line-height: 100%;
	text-align: center;
}

.banner-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
	padding-top: 45px;
}

/* Service-box */

.service-box {
    background-color: var(--secondary);
    padding: 40px 50px;
    display: flex;
    column-gap: 15px;
}

.service-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 35px;
    line-height: 50px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service-box:hover {
    background-color: var(--blue);
	box-shadow: 0px 4px 60px 0px #00000040;
}

.service-box:hover .service-title, .service-box:hover .service-des p {
	color: var(--white);
}

.service-box:hover svg path {
	fill: var(--white);
}

.home-service-section {
    margin-top: -200px;
}

.service-icon:before {
    content: none;
    position: absolute;
    width: 2px;
    height: 88px;
    background: var(--blue);
    left: 50%;
    transform: translateX(-50%);
    bottom: 45px;
	transition: 0.5s;
}

.service-icon svg {
	margin-top: 12px;
}

.service-box:hover .service-icon:before {
	background-color: var(--white);
}

/* Who We Are */

.left-sub-title {
	font-family: var(--font-heading);
	font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    text-transform: uppercase;
}

.home-who-we-are-section .body-text {
    padding: 10px 0px 40px 0px;
}

.home-who-we-are-section img {
    width: 100%;
}

.home-who-we-are-section:before {
    content: "";
    position: absolute;
    width: 456px;
    height: 643px;
    background-image: url(../images/trial-lawyers.webp);
    background-repeat: no-repeat;
}

.center-title-box .left-sub-title {
	display: flex;
    justify-content: center;
    align-items: center;
	column-gap: 15px;
}

.center-title-box hr {
	width: 93px;
    border-top: 2px solid #333333;
}

.case-results-row {
	padding: 15px;
}

.case-results-row {
    padding: 15px;
    /* margin: 60px 0px 0px 0px; */
}

.result-main {
    padding: 15px;
}

.result-title {
	font-weight: 600;
	font-size: 75px;
	line-height: 100%;
	letter-spacing: 0%;
	text-transform: uppercase;
	align-items: flex-start;
}

.result-sub-title {
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    text-transform: uppercase;
    padding: 20px 0px;
}

.result-title span {
	font-size: 45px;
    margin-top: -8px;
    margin-right: 10px;
}

.result-item:hover {
    background-color: #fff;
}

.result-item:hover .result-title, .result-item:hover p{
    color: var(--blue) !important;
}

.result-item:hover .result-sub-title{
    color: var(--body)!important;
}

.result-item {
    position: relative;
    overflow: hidden;
    transition: all 0.8s ease;
    border: 1px solid var(--white);
    padding: 60px;
}

.result-item .body-text, .result-item .body-text p, .result-item .result-title, .result-item .result-sub-title {
    transition: transform 0.8s ease;
}

.result-item a {
    display: inline-block;
	opacity: 0;
	visibility: hidden;
    transform: translateY(0px);
	height: 0px;
    transition: opacity 0.8s ease, transform 0.8s ease;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
	font-family: var(--font-content);
}

/* .result-item:hover .body-text, .result-item:hover .result-title, .result-item:hover .result-sub-title {
    transform: translateY(-20px);
} */

.result-item:hover a {
    opacity: 1;
    visibility: visible;
}
.result-item {
  position: relative;
  width: 100%;
  height: 300px; 
  perspective: 1000px;
}

.result-item .front,
.result-item .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease; 
  padding: 45px 40px 12px;
  background: var(--blue);
}

.result-item .back {
  transform: rotateX(180deg);
}

.result-item:hover .front {
  transform: rotateX(180deg);
}

.result-item:hover .back {
  transform: rotateX(0deg); 
}
.page-results-section .result-main .result-item {
    background: transparent; padding: 0px;
}

.home-video-section:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #29304AE3;
}

.video-row {
	justify-content: space-between;
}

.video-content {
	text-align: right;
    padding-left: 40px;
}

.about-sec-video a {
	display: flex;
    flex-direction: column;
    align-items: center;
    width: 122px;
    row-gap: 15px;
}

.about-sec-video a img{
	width: 122px;
    height: 122px;
	border-radius: 50%;
	transition: transform 0.5s ease;
	transform: scale(1); 
}

.about-sec-video a img:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: var(--blue);
	transform: scale(1.1); 
}

.about-sec-video a span{
	font-weight: 400;
	font-size: 30px;
	line-height: 100%;
}

.about-sec-video {
    padding-left: 114px;
}

.home-video-section {
	padding-bottom: 222px;
}

.what-do-row {
    box-shadow: 0px 4px 40px 0px #0000001A;
    padding: 100px 200px;
    background: #fff;
}

.practice-row {
    padding: 25px 0px 60px 0px;
}

.what-do-main {
	padding: 10px;
}

.what-do-inner {
    padding: 52px 25px;
    height: 100%;
    display: block;
}

.what-do-inner:before {
    content: "";
    background-color: #333333D9;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
	transition: 0.5s;
}

.what-do-inner:hover:before {
    background-color: #29304ABF;
}

.what-do-sub-title {
    font-weight: 600;
    font-size: 25px;
    line-height: 100%;
    text-transform: uppercase;
	padding: 20px 0px;
}

.home-whatwedo-section {
	margin-top: -60px;
}

.home-experience-section::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #d2d7dfa6;
}

.left-title-box {
    border-left: 2px solid var(--blue);
    padding-left: 15px;
    display: inline-block;
}

.exp-inner {
    display: flex;
    align-items: center;
    column-gap: 17px;
}

.exp-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
}

.exp-sub-title {
    font-family: var(--font-content);
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
}

.exp-list {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    padding: 40px 0px;
}

.exp-block {
    width: 274px;
    text-align: center;
    position: absolute;
    padding: 70px;
    bottom: -60px;
    left: 7px;
}

.exp-block:before {
    content: "";
    background-color: #0000004D;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
	transition: 0.5s;
}

.exp-box-title {
	font-weight: 600;
	font-size: 50px;
	line-height: 100%;
	text-transform: uppercase;
	z-index: 2;
	position: relative;
}

.exp-box-sub-title {
	font-family: var(--font-content);
	font-weight: 400;
	font-size: 22px;
	line-height: 26px;
	text-align: center;
	z-index: 2;
	position: relative;
	margin-top: 15px;
}

.exp-main-image {
    border: 1px solid var(--blue);
    max-width: 606px;
    padding: 20px;
    height: 609px;
}

.exp-main-image img {
	width: 100%;
}

ul.slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    padding-top: 30px;
}

.slick-dots li button {
	font-size: 0px;
    width: 14px;
    height: 14px;
    border: none;
    background: #333;
    opacity: 0.3;
    border-radius: 50%;
}

.slick-dots li.slick-active button {
    opacity: 1;
}

.home-logos-section .slick-slide img {
    height: 170px !important;
    width: auto !important;
}

.home-testimonial-section:before {
	content: "";
    background-color: #29304AE5;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.home-testimonial-section .container {
	z-index: 2;
}

.testimonial-item {
    align-items: flex-start;
    column-gap: 15px;
    padding: 43px 40px 67px 0px;
}

.fallback-letter {
	width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 50%;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 25px;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--blue);
}

.review-title {
	font-family: var(--font-heading);
	font-weight: 600;
    font-size: 25px;
    line-height: 100%;
    text-transform: uppercase;
}

.testimonial-sub-title {
	font-family: var(--font-content);
	font-weight: 300;
	font-size: 16px;
	line-height: 26px;
}

.review-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
}

.review-des {
    margin-top: 15px;
}

.testimonial-item:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../images/testi-shape.webp);
    background-size: 100%;
    width: 100%;
    height: 50%;
	background-repeat: no-repeat;
}

.testimonial-item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(../images/testi-shape.webp);
    background-size: 100%;
    width: 100%;
    height: 50%;
    rotate: 180deg;
	background-repeat: no-repeat;
}

.testimonial-main {
    padding: 0px 127px 0px 95px;
}

.review-des p {
	display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-testimonial-section .slick-dots li button {
    background: #fff;
}

div#testimonial-slider {
    padding-top: 60px;
}

svg.qoute-img {
    position: absolute;
    bottom: 27px;
    right: 2px;
	transition: 0.8s;
}

.testimonial-item:hover svg.qoute-img {
    fill: #fff;
}

.home-blog-section, .home-footer-form {
    background: rgba(210, 215, 223, .2);
}

.blog-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 125%;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
	margin: 10px 0px;
}

.home-blog-section .blog-item {
    padding: 15px;
	border: 1px solid transparent;
	transition: 0.8s;
}

.home-blog-section .blog-item:hover  {
    border: 1px solid #29304A;
}

.home-blog-section .blog-inner {
    background: #fff;
	transition: 0.8s;
	height: 100%;
}

.blog-box {
	padding: 0px 15px 10px 15px;
}

.home-blog-section .blog-item:hover .blog-inner {
	box-shadow: 0px 4px 50px 0px #0000001A;
}

.home-blog-section .blog-item:hover .blog-title {
	color: #29304A;
}

.home-blog-section .btn {
	margin-top: 40px;
}

.blog-box .body-text{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-map {
	position: absolute;
    height: 100%;
    width: 50%;
    right: 0;
    top: 0;
}

.footer-form-block {
    padding-right: 30px;
}

.footer-map {
	padding-left: 30px;
}

.form-main-block .left-title-box {
	margin-bottom: 35px;
}

.team-arrows p {
	background: var(--secondary);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
	cursor: pointer;
	transition: 0.5s;
}

.team-arrows p svg path {
	stroke: #333;
	transition: 0.5s;
}

.team-arrows p:hover {
	background: var(--blue);
}

.team-arrows p:hover svg path {
	stroke: #fff;
}

.team-arrows {
    display: flex;
    column-gap: 5px;
    justify-content: flex-end;
    padding-top: 25px;
}

.team-right-section {
	display: flex;
    flex-direction: column;
    align-items: end;
}

.team-left-section {
    padding-left: 204px;
}

.team-content-wrapper .main-heading {
    line-height: 100%;
    margin-bottom: 10px;
}

.team-content-wrapper .body-text{
	line-height: 32px;
	margin-top: 30px;
}

.member-image {
    width: 100%;
    position: relative;
    height: 770px;
}

.member-image img {
    width: 100%;
    padding-left: 20px;
    padding-bottom: 20px;
    height: 100%;
    object-fit: cover;
}

.member-image::before {
    content: "";
    position: absolute;
    width: 97%;
    height: 100%;
    border: 1px solid var(--blue);
    bottom: 0;
    right: 20px;
    left: 0px;
    z-index: -1;
}

.our-team-thumbs-slider {
    position: absolute;
    top: 0;
    width: 53%;
    right: -99px;
}

.our-team-thumbs-slider .slick-track .slick-slide .team-thumb-inner{
	    opacity: .3;
}

.our-team-thumbs-slider .slick-track .slick-active .team-thumb-inner{
	    opacity: 1;
}

.team-thumb-inner img {
	width: 94px;
    height: 97px;
    object-fit: cover;
}

.team-thumb-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 15px;
    background: rgba(210, 215, 223, 1);
    width: 319px;
}

.thumb-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 25px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--blue);
}

.thumb-sub {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
	margin-top: 7px;
}

.team-content-wrapper {
    padding-top: 170px;
    padding-left: 40px;
}

.home-team-section:before {
	content: "";
	width: 431px;
	height: 794px;
	position: absolute;
	left: 0;
	top: 0;
	background-color: var(--blue);
}

.home-team-section .slick-track .slick-active:last-child {
	width: 100px;
}

.team-view-btn {
	margin-top: 30px;
}

.blog-date {
    position: absolute;
    top: 0px;
    right: 0px;
    font-family: Roboto;
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
    background: rgb(210, 215, 223);
    padding: 3px 15px;
	transition: 0.8s;
}

.blog-inner {
    position: relative;
}

.home-blog-section .blog-item:hover .blog-date {
    position: absolute;
    top: 0px;
    right: 0px;
    font-family: var(--font-content);
    background: var(--blue);
	color: #fff;
    padding: 3px 15px;
}

.blog-link {
	display: inline-block;
	opacity: 0;
	visibility: hidden;
	transform: translateY(0px);
	height: 0px;
	transition: opacity 0.8s ease, transform 0.8s ease;
	font-weight: 700;
	font-size: 14px;
	line-height: 24px;
	font-family: var(--font-content);
	color: var(--blue);
	text-align: right;
    width: 100%;
}

.blog-item:hover .blog-link {
    opacity: 1;
    visibility: visible;
    transform: translateY(-4px);
}

.testi-top-row {
	position: relative;
}

.testi-top-row .testi-btn {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

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

.html5-elem-data-box {
	display: none !important;
}

.breadcrumb-sec{
    background: var(--blue);
    color: #fff;
	font-family: var(--font-heading);
	padding: 10px;
}

.breadcrumb-sec a {
	color: #fff;
}

.breadcrumb-sec a, .breadcrumb-sec span {
    font-size: 20px;
    font-weight: 400;
}

.breadcrumb-sec a {
	text-decoration: underline;
}


/************* Practice page CSS *************/

.page-whatwedo-section .what-do-row {
	padding: 0px;
    box-shadow: none;
}

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

.inner-page-banner .h1 {
	text-transform: uppercase;
	font-family: var(--font-heading);
}

.inner-banner-sub-heading.text-white {
    font-family: var(--font-content);
    font-weight: 300;
    font-size: 35px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
	margin-bottom: 15px;
}

.page-whatwedo-section {
    margin-top: 0px;
}

/* Contact Us Page CSS */

.contact-form .form-control {
    height: 50px;
    padding: 10px 17px;
}

.contact-form .custom-btn {
	display: flex;
    justify-content: center;
}

.contact-form .custom-btn  .btn {
    min-width: 100px;
}


/* Case Results Page CSS */

.page-results-section .result-main .result-item {
    background: var(--blue);
}

.page-results-section .result-main {
    padding: 10px;
}

.page-results-section .result-item:hover .body-text p,
.page-results-section .result-item:hover .result-title, 
.page-results-section .result-item:hover .result-sub-title, 
.page-results-section .result-item:hover a{
    color: #fff!important;
}

.page-results-section .case-results-row {
    padding: 0px;
    margin: 0px 0px;
}

.page-results-section .case-results-row {
	width: 100%;
}

.page-results-section .case-results-row .result-main:nth-child(2) .result-item {
	background-color: var(--blue);
}

/* Team Page CSS */

.team-section-page .team-item-inner .title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 35px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
}

.team-section-page .team-item-inner .sub-title {
    font-family: var(--font-content);
    font-weight: 300;
    font-size: 18px;
    line-height: 32.71px;
    text-align: center;
}

.team-section-page .team-item-inner .img-sc img {
    width: 100%;
    height: 457px;
    object-fit: cover;
	object-position: top center;
}

.team-section-page .inner-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 20px 0px 20px;
    row-gap: 10px;
}

ul.team-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

.team-info {
    padding-bottom: 20px;
}

.team-section-page .col-md-4.team-item {
    padding: 10px;
}

.team-section-page .team-item-inner {
	transition: 0.5s;
}

.team-section-page .team-item-inner:hover {
	box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.1);
}

.team-section-page .team-members.align-items-center {
    padding-top: 25px;
}

.team-members .team-item {
	padding-bottom: 20px;
}

.our-team-thumbs .slick-slide.slick-current.slick-active {
    display: none!important;
}

.team-profile-image {
	border: 1px solid var(--blue);
    padding: 15px;
}

.team-profile-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: top;
}

.team-profile-left {
    width: 43%;
    float: left;
    padding-right: 40px;
    padding-bottom: 10px;
}

.team-achievements {
	background: rgba(251, 251, 251, 1);
}

.team-single-title {
	font-family: var(--font-heading);
    font-weight: 400;
    font-size: 35px;
    line-height: 100%;
    color: rgba(28, 28, 28, 1);
    text-transform: uppercase;
    padding: 20px 0px;
}

.achievements {
	display: flex;
    flex-direction: column;
    row-gap: 50px;
}

.team-email {
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--blue);
	display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0px 0px 20px 15px;
    column-gap: 10px;
}

/* Blog Page */

.blog-img {
	height: 100%;
}

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

.blog-post-list .blog-image img {
	height: 219px;
    width: 100%;
    object-fit: cover;
}

.blog-post-list .row .col-md-6 {
    width: 47.5%;
    padding: 0px;
    border: 1px solid rgba(229, 229, 229, 1);
	transition: 0.8s;
}

.blog-post-list .row .col-md-6:hover {
    box-shadow: 0px 5.03px 80px 0px rgba(0, 0, 0, 0.15);
}

.blog-post-list .blog-title {
    font-weight: 500;
    font-size: 28px;
    line-height: 128%;
    color: var(--blue);
}

.blog-post-list .body-text {
	font-weight: 300;
    font-size: 18px;
    line-height: 32.71px;
    -webkit-line-clamp: 3;
}

.blog-post-list .blog-date {
    font-size: 16px;
    line-height: 18px;
    background: var(--blue);
    color: #fff;
}

.blog-post-list .blog-link {
	opacity: 1;
    visibility: visible;
    font-size: 20px;
    line-height: 35.23px;
    margin: 10px 0px;
    transform: translateY(0px) !important;
}

.sidebar {
	padding: 0px 0px 0px 87px;
}

.contact-form-sidebar {
    background: var(--blue);
    padding: 40px;
}

.contact-form-sidebar .form-control {
    border: 1px solid rgb(255 255 255 / 50%);
}

.contact-form-sidebar .form-control::placeholder {
	color: #ffffff80;
}

.contact-form-sidebar .form-control:focus {
    border: 1px solid #fff;
}

.contact-form-sidebar .form-control {
    color: #fff;
}

.contact-form-sidebar p, .contact-form-sidebar .white-btn {
	width: 100%;
    min-width: 100%;
}

.sidebar .searchitem .search-submit {
    background-image: url(../images/search-white.svg) !important;
    background-size: 20px !important;
    background-position: center;
    width: 109px;
    height: 60px;
    padding: 10px;
    margin: auto;
    cursor: pointer;
    font-size: 0px;
    background-repeat: no-repeat;
    background-color: var(--blue);
    border-radius: 0px;
    text-transform: uppercase;
    transition: 1s all;
    border: none;
	position: absolute;
	right: 0px;
	top: 0px;
}

.search-form {
    position: relative;
    margin-bottom: 50px;
}

.search-form label {
	width: 100%;
    height: 60px;
}

.search-form label input {
	width: 100%;
    height: 60px;
    border: 1px solid rgba(210, 210, 210, 1);
    padding: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    font-family: var(--font-content);
}

.sidebar-form-title {
	font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.contact-form-sidebar .col-12 {
    padding: 0px;
    margin-top: 0;
}

/* Single_post */

.single-post-title{
	font-family: var(--font-heading);
    font-weight: 500;
    font-size: 28px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--blue);
    margin-top: 30px;
    margin-bottom: 20px;
}

.post-content p {
	color: rgba(51, 51, 51, 1);
}

.post-content li {
    font-family: var(--font-content);
    font-weight: 400;
    font-size: 18px;
    line-height: 158%;
	color: rgba(51, 51, 51, 1);
}

.post-content h2{
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 25px;
	line-height: 100%;
	text-transform: uppercase;
	margin-top: 50px;
    margin-bottom: 30px;
	color: var(--body);
}

.page-img-full {
	width: 100%;
	height: 425px;
	object-fit: cover;
}

.widget-menu.sidebar-box {
    border: 1px solid #e2e2e2;
    background: #fff;
    border-radius: 0px;
    padding: 40px 30px;
    margin-top: 36px;
}

.widget-title {
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-family: var(--font-heading);
}

.static-page-details h1, .static-page-details h2, .static-page-details h3, .static-page-details h4, .static-page-details h5,.static-page-details h6 {
	color: var(--body);
}

.what-do-inner a {
	font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    font-family: var(--font-content);
}

/* Search page CSS */

.search-page-wrapper {
    background: rgba(210, 215, 223, .2);
}

.search-page-wrapper article {
    background-color: #fff;
    padding: 40px;
    margin-bottom: 35px;
}


.page-numbers {
	position: relative;
}

.page-numbers.next::after {
    content: "Next";
    position: absolute;
    bottom: -25px;
    font-family: var(--font-content);
    font-weight: 300;
    font-size: 18px;
    line-height: 18px;
    color: rgba(51, 51, 51, 1);
}

.page-numbers.prev::after {
    content: "Previous";
    position: absolute;
    bottom: -25px;
    font-family: var(--font-content);
    font-weight: 300;
    font-size: 18px;
    line-height: 18px;
    color: rgba(51, 51, 51, 1);
}

.contact-page-map {
	height: 389px;
}

.contact-page-map iframe{
	height: 100%;
}

.nav-btn {
	background: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
	transition: 0.5s;
}

.nav-btn svg path{
	transition: 0.5s;
}

.single-post-navigation a{
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav-btn:hover {
	border: 1px solid var(--blue);
    background: transparent;
}

.nav-btn:hover svg path{
	stroke: var(--blue);
}

.blog-box-meta {
	padding-top: 15px;
}

.blog-box-meta .avatar {
	width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--blue);
}

.blog-box-meta .author-name {
	font-family: var(--font-content);
    font-size: 20px;
    font-weight: 500;
}

.phone-wrapper .header-phone, .phone-wrapper .header-phone svg path {
	transition: 0.5s;
}

.phone-wrapper:hover .header-phone {
    color: var(--secondary)!important;
}

.phone-wrapper:hover .header-phone svg path {
	fill: var(--secondary);
}

.social-sc li svg path {
	transition: 0.5s;
}
 
.social-sc li:hover svg path {
	fill: var(--secondary);
}

.footer-map iframe {
	width: 100%;
	height: 100%;
}

.footer-bottom-row {
    width: 100%;
    margin: 0;
    justify-content: space-evenly;
    align-items: center;
}

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

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

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

.subsribe-form label.error {
    bottom: -22px;
    right: -79px;
    font-size: 10px;
}

.footer-address .wpcf7 form.sent .wpcf7-response-output {
    color: var(--blue)!important;
    background: #ffffff;
    padding: 2px;
    font-size: 16px;
    border-color: #ffffff;
    margin: -10px 0px 30px 0px;
}

.nap-icon-row {
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-weight: 300;
    font-size: 22px;
    line-height: 32px;
    font-family: var(--font-content);
    column-gap: 22px;
}

.nap-icon-row svg {
	margin-top: 4px;
}

.social-sc svg {
    width: auto;
    height: 21px;
}

.home-testimonial-section .center-title-box hr {
    border-top: 2px solid #fff;
}

.team-single-content ul {
	 display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.footer-menu li.current-menu-item a {
	font-weight: 600;
}

.search-left-side .page-title span {
	word-wrap: break-word; 
}

.team-detail .main-heading {
    margin-top: -8px;
}

.menu-header ul li > ul {
    opacity: 0.1;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.menu-header ul li:hover > ul {
    opacity: 1 !important;
}

.menu-header ul li > ul {
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: all 0.2s linear;
    position: absolute;
    z-index: 1;
}

.menu-header ul li:hover > ul {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}


.contact-form-sidebar .form-control {
	font-family: var(--font-content);
	font-weight: 300;
}

.close-btn:hover {
	background: #fff;
}

.close-btn:hover:before, .close-btn:hover:after {
    opacity: 1;
    background-color: var(--blue);
}
.inner-section {
    text-align: center;
}
.home-testimonial-section {
    display: none;
}
.page-privacy-policy .home-logos-section {
    display: none;
}

.home-blog-section .blog-image {
	height: 170px;
}

.home-blog-section .blog-image img {
	height: 100%;
	object-fit: cover;
}

.main-personal-content-row {
    box-shadow: 0px 4px 40px 0px #0000001A;
    padding: 100px 110px;
    background: #fff;
    row-gap: 60px;
    margin-top: -60px;
    z-index: 2;
    position: relative;
}

.main-personal-content-row .row:last-child {
	flex-direction: row-reverse;
}

.main-personal-content-row img {
	width: 80%;
}

#case-reults-slider .slick-dots li button {
    background: #fff;
}

#case-reults-slider button.slick-prev {
    position: absolute;
	left: 3px;
    top: 50%;
    transform: translateY(-50%);
}

#case-reults-slider button.slick-next {
    position: absolute;
	right: 3px;
    top: 50%;
    transform: translateY(-50%);
}

#case-reults-slider button {
    border: none;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
}

.case-results-row {
    padding: 15px 30px;
}




#pa-home-slider .slick-dots li button {
    background: #fff;
}

#pa-home-slider button.slick-prev {
    position: absolute;
	left: 3px;
    top: 50%;
    transform: translateY(-50%);
}

#pa-home-slider button.slick-next {
    position: absolute;
	right: 3px;
    top: 50%;
    transform: translateY(-50%);
}

#pa-home-slider button {
    border: none;
    background: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
}
#pa-home-slider {
    padding: 0 30px 20px;
}
#pa-home-slider .slick-track {
    display: flex;
}
#pa-home-slider .slick-slide {
    height: auto;
}
#pa-home-slider .slick-slide > div, #pa-home-slider .slick-slide .what-do-main {
    height: 100%;
}
.footer-logo img {
    max-width: 150px;
}
.news-list-list {
    padding-bottom: 50px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 50px;
}
.news-list-list:last-child {
    padding-bottom: 0px;
    border-bottom: 0px solid #ddd;
    margin-bottom: 0px;
}
.news-page{
    background: rgba(210,215,223,.2);
}