
:root {
	--clr-primary: #0b2a4e;
	--clr-accent: #e6e9ed;
	--clamp-title: clamp(1.75rem, 3.8vw, 2.9rem);
	--clamp-sub-title: clamp(1.25rem, 2.5vw, 28px);
	--clr-black: #000;
	--clr-dark: #1e1e1e;
	--clr-body: #4a4a4a;
	--clr-white: #fff;
	--clr-gray: #808080;
	--clr-gray-100: #f8f8f8;
	--clr-gray-200: #ededed;
	--clr-gray-300: #d8d8d8;
	--clr-gray-400: #ccc;
	--clr-gray-500: #bfbfbf;
	--clr-gray-600: #a6a6a6;
	--clr-gray-700: #a1a1a1;
	--clr-gray-800: #9d9d9d;
	--clr-gray-900: #909090;
	--font-title: "Conv_AGaramondPro-Regular";
	--font-body: "Open Sans", sans-serif;
	--smooth-shadow: 0px .6px .9px rgba(0, 0, 0, .006), 0px 1.4px 2.1px rgba(0, 0, 0, .009), 0px 2.3px 3.5px rgba(0, 0, 0, .011), 0px 3.5px 5.2px rgba(0, 0, 0, .013), 0px 5px 7.5px rgba(0, 0, 0, .015), 0px 7.1px 10.6px rgba(0, 0, 0, .017), 0px 10.1px 15.1px rgba(0, 0, 0, .019), 0px 14.6px 21.9px rgba(0, 0, 0, .021), 0px 22.5px 33.8px rgba(0, 0, 0, .024), 0px 40px 60px rgba(0, 0, 0, .03);
	--border-shadow: rgba(9, 30, 66, .25) 0px 1px 1px, rgba(9, 30, 66, .13) 0px 0px 1px 1px;
	--elevation-1: rgba(0, 0, 0, .1) 0px 1px 3px 0px, rgba(0, 0, 0, .06) 0px 1px 2px 0px;
	--elevation-2: rgba(0, 0, 0, .1) 0px 4px 6px -1px, rgba(0, 0, 0, .06) 0px 2px 4px -1px;
	--elevation-3: rgba(0, 0, 0, .1) 0px 10px 15px -3px, rgba(0, 0, 0, .05) 0px 4px 6px -2px;
	--elevation-4: rgba(0, 0, 0, .1) 0px 20px 25px -5px, rgba(0, 0, 0, .04) 0px 10px 10px -5px;
	--clamp-btn: clamp(1em, 2.5vw, 1.25em) clamp(1em, 2.5vw, 2em);
	--clamp-box: clamp(1rem, 3vw, 1.25rem);
	--overlay-linear: linear-gradient(hsla(212, 75%, 17%, 85%), hsla(0, 0%, 0%, 85%));
	--overlay-secondary-and-dark: linear-gradient(hsla(90.87deg, 89.61%, 30.2%, 50%), hsla(0, 0%, 0%, 85%));
	--section-padding: clamp(40px, 10vw, 80px);
	--fw-title: 400;
}

:is(.overlay-dark, .overlay-linear) {
	position: relative;
	isolation: isolate;
	background-size: cover;
	background-attachment: fixed;
}

.overlay-dark::before {
	content: "";
	inset: 0;
	position: absolute;
	z-index: -1;
	background-image: linear-gradient(hsla(0, 0%, 0%, 75%), hsla(0, 0%, 0%, 75%));
}

.overlay-linear::before {
	content: "";
	inset: 0;
	position: absolute;
	z-index: -1;
	background-image: var(--overlay-linear);
}

/*--------------------------------------------------------------
# Inner Banner
--------------------------------------------------------------*/
.inner-banner {
	position: relative;
	min-height: 25vh;
	min-height: 25dvh;
	padding-block: var(--section-padding);
	display: grid;
	place-items: center;
	grid-template-areas: "stacked";
	overflow: hidden;
}

.inner-banner.styled {
	place-items: unset;
	padding-block: 0;
}

.inner-banner.styled .row {
	height: 100%;
}

.inner-banner > * {
	grid-area: stacked;
}

.inner-banner-image img {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: bottom;
}

.inner-banner-image img.dark {
	filter: brightness(.3);
}

.inner-banner-content .banner-title > * {
	margin: 0;
	font-size: var(--clamp-title);
	color: var(--clr-white);
}

.office-banner .inner-banner-content .banner-title > * {
	margin-bottom: 1.5rem;
}

.office-banner .inner-banner-content .banner-text *:not(span) {
	color: #fff;
	font-size: 1.25rem;
}

.office-banner .inner-banner-content .common-btn {
	padding: .71rem 2.5rem;
	border-color: #fff;
	background-color: transparent;
}

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

.bg-filled {
	background-color: var(--clr-primary);
	color: var(--clr-white);
}

.bg-filled .section-title > * {
	color: var(--clr-white);
}

.bg-filled .btn {
	background-color: var(--clr-secondary);
}

* {
	box-sizing: border-box;
	font-size: 16px;
	line-height: 28px;
	font-family: "Open Sans", sans-serif;
}

body {
	font-family: "Open Sans", sans-serif;
}

a {
	color: #08c;
}

header#hdr a.login-text:hover, header#hdr a.head-call:hover {
	color: #fff;
}

div#custom-search-input button.btn.btn-danger {
	background: #0b2a4e;
	border: 1px solid #0b2a4e;
	margin: 0px 10px;
}

p {
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
}

section {
	overflow: hidden;
}

header.header {
	width: 100%;
	max-width: 100%;
	padding-block: 10px;
	z-index: 9999;
	left: 0;
	top: 0;
	background-color: #0b2a4e;
}

header.header .common-btn {
	background-color: #fff;
	border-color: #fff;
	color: #0b2a4e !important;
}

header.header::before {
	background-color: #000;
	content: "";
	height: 0;
	width: 100%;
	bottom: 0;
	transition: .3s all ease-in-out;
	-ms-transition: .3s all ease-in-out;
	-webkit-transition: .3s all ease-in-out;
	position: absolute;
	z-index: -1;
}

header.header .container {
	max-width: 1545px;
}

header.header a.common-btn {
	margin-right: 15px;
	color: #fff;
	padding: 2px 15px;
}

.site-logo {
	display: block;
	position: relative;
	z-index: 10;
}

header.header.homepage {
	position: sticky;
	top: 0;
	background-color: #0b2a4e;
}

.site-logo img {
	max-width: 340px;
	width: 100%;
}

header, .site-logo img {
	transition: .3s all ease-in-out;
	-ms-transition: .3s all ease-in-out;
	-webkit-transition: .3s all ease-in-out;
}

a.login-text {
	line-height: 22px;
	text-decoration: none;
	color: #fff;
}

a.head-call:hover {
	color: #0056b3;
}

.login-text {
	margin-left: 15px;
	margin-right: 15px;
}

a.login-text span {
	display: block;
}

.head-call {
	font-size: 20px;
	color: #fff;
	font-weight: 700;
	margin-right: 18px;
}

.login-text {
	font-size: 14px;
}

.common-btn {
	background-color: #0b2a4e;
	color: #fff;
	font-size: 15px;
	display: inline-block;
	padding: 8px 28px;
	text-transform: capitalize;
	line-height: 1.1;
	border: 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
	font-weight: 600;
	border: 2px solid #0b2a4e;
	border-radius: 3px;
	text-decoration: none;
}

.common-btn, .common-btn::after {
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.common-btn::before, .common-btn::after {
	background: #fff;
	content: "";
	position: absolute;
	z-index: -1;
}

.common-btn:focus {
	color: #fff !important;
}

.common-btn:hover {
	color: #0b2a4e !important;
}

.common-btn:hover:after {
	height: 100%;
	left: 0;
	top: 0;
	width: 100%;
}

.common-btn::after {
	height: 0;
	left: 50%;
	top: 50%;
	width: 0;
}

.white-btn {
	background-color: #fff;
	color: #0b2a4e;
	font-size: 15px;
	display: inline-block;
	padding: 8px 28px;
	text-transform: capitalize;
	line-height: 1.1;
	border: 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
	font-weight: 600;
	border: 2px solid #0b2a4e;
	border-radius: 3px;
	text-decoration: none;
}

.white-btn, .white-btn::after {
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.white-btn::before, .white-btn::after {
	background: #fff;
	content: "";
	position: absolute;
	z-index: -1;
}

.white-btn:hover {
	color: #0b2a4e !important;
}

.white-btn:hover:after {
	height: 100%;
	left: 0;
	top: 0;
	width: 100%;
}

.white-btn::after {
	height: 0;
	left: 50%;
	top: 50%;
	width: 0;
}

a:hover, a:focus {
	color: inherit;
	text-decoration: none;
	transition: all .5s ease 0s;
	-webkit-transition: all .5s ease 0s;
	outline: none;
}

a:not([href]):not([tabindex]) {
	color: inherit;
	text-decoration: none;
}

.header-action i.fa.fa-search {
	background: rgba(255, 255, 255, .76);
	width: 34px;
	height: 30px;
	text-align: center;
	line-height: 28px;
	cursor: pointer;
	color: #0b2a4e;
	border-radius: 2px;
}

.header-action .btn.btn-danger i.fa.fa-search {
	background: none;
	color: #fff;
}

.modal-header h4 {
	margin-bottom: 0;
}

#myModal .modal-dialog {
	margin-top: 200px;
}

.header_social_icon {
	margin: 0 17px 0 0;
}

.header_social_icon li a {
	color: #fff;
	margin-left: 15px;
}

.navbar.navbar-expand-lg {
	padding: 5px 0;
	margin-top: 18px;
}

header div#navbarNav ul li {
	position: relative;
}

header .navbar-nav li a {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	padding: 10px 9px;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 10rem;
	padding: .5rem 0;
	margin: .125rem 0 0;
	font-size: 1rem;
	color: #212529;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: .25rem;
}

form#contact_form .form-group.col-md-5 .form-group.col-lg-8.col-md-8.col-sm-12.col-12 {
	padding-left: 0px;
}

ul.dropdown-menu li a {
	color: #000;
	width: 100%;
	float: none;
	padding: 5px 15px;
	display: inline-block;
}

.header_social_icon li {
	list-style: none;
}

header.header {
	border-top: 3px solid #08c;
	background-color: #0b2a4e;
	position: relative;
}

section.hero-sec .carousel-inner {
	height: 100%;
}

.hero-sec {
	margin-top: 0;
}

section {
	position: relative;
	z-index: 1;
}

#banner .carousel-caption {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000;
}

section#banner .carousel-caption .custom {
	text-align: left;
}

section#banner .carousel-caption .custom h1 {
	font-family: "Conv_AGaramondPro-Regular";
	font-weight: normal;
	font-size: 55px;
	line-height: 60px;
	text-transform: capitalize;
}

section#banner .carousel-caption .custom ul {
	display: flex;
	margin: 0;
	padding: 0;
}

section#banner .carousel-caption .custom ul li {
	list-style: none;
	font-size: 17px;
	line-height: 26px;
}

section#banner .carousel-caption .custom ul li p {
	padding: 0px 15px;
	margin-bottom: 0px;
	position: relative;
	text-shadow: 1px 1px #000;
}

section#banner .carousel-caption .custom ul li p:first-child:before {
	content: "";
	display: block;
	position: absolute;
	background-color: #0b2a4e;
	width: 7px;
	height: 20px;
	top: 6px;
	left: 0px;
}

section#banner ul.carousel-indicators {
	display: none !important;
}

section.our_client.common-sec {
	background: #f1f3f4;
	padding: 50px 0;
}

section.our_client h3 {
	color: #000;
	font-size: 30px;
	margin-bottom: 15px;
	font-family: "Conv_AGaramondPro-Regular";
	font-weight: normal;
}

section.our_client.common-sec ul.our_client_section {
	text-align: center;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0;
	padding: 0;
}

section.our_client.common-sec ul.our_client_section li {
	text-align: center;
	list-style: none;
}

section.our_services {
	background: #f4f6f7;
}

.heading_section h2 {
	position: relative;
	padding-left: 20px;
	margin-bottom: 40px;
}

.heading_section h2:before {
	content: "";
	display: block;
	position: absolute;
	background-color: #0b2a4e;
	width: 5px;
	height: 35px;
	top: 4px;
	left: 0px;
}

ul#myTab .nav-link.active {
	background-color: #0b2a4e !important;
}

ul#myTab li.nav-item a h3 {
	font-size: 30px;
}

ul#myTab li.nav-item a p {
	margin: 0px;
	font-size: 17px;
	line-height: 26px;
}

h2 {
	font-size: 45px;
	line-height: 50px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: "Conv_AGaramondPro-Regular";
	font-weight: normal;
}

section.our_services.common-sec ul#myTab li.nav-item a {
	padding: 15px;
	border-radius: 0px;
}

section.our_services.common-sec ul#myTab li.nav-item a {
	background-color: #555;
	margin-bottom: 12px;
	color: #fff;
	padding: 22px;
	border-radius: 0px;
}

section.our_services.common-sec .form-contact {
	padding: 30px 15px;
	border: 1px solid #d0d0d0;
	height: 100%;
}

.common-sec {
	padding: 50px 0;
}

section.our_services.common-sec ul#myTab li.nav-item:last-child a {
	margin-bottom: 0px;
}

section.our_services.common-sec .form-row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -5px;
	margin-left: -5px;
}

section.our_services.common-sec .form-side-outer .form-row > .col, section.our_services.common-sec .form-side-outer .form-row > [class*=col-] {
	padding-left: 15px;
	padding-right: 15px;
}

section.our_services.common-sec .form-side-outer.form-contact .form-control {
	border-radius: 2px;
	background: none;
	border: 1px solid #a6a6a6;
	min-height: 57px;
}

section.our_services.common-sec .form-side-outer.form-contact textarea#message {
	min-height: 140px;
}

.videosec {
	padding: 50px 0;
	background: #fff;
}

.abt-outer {
	padding: 50px 0;
	background: #f4f6f7;
}

.video-text img {
	float: left;
	padding: 10px;
	margin: 0 15px 15px 0;
	border: 1px solid #ddd;
	background: #fff;
	width: 50%;
}

.books_sec {
	padding: 50px 0;
	border-top: 1px solid #d0d0d0;
	background: #f5f5f5;
}

.video-con {
	padding-bottom: 20px;
	background: #fff;
}

.video-con-header {
	padding: 10px 15px;
	background: #0b2a4e;
	display: flex;
	gap: .5rem;
	align-items: center;
}

.video-con-header h4 {
	margin-left: 10px;
	line-height: 1;
	margin-bottom: 0;
	display: inline-block;
}

.text-white {
	color: #fff !important;
}

.video-con p {
	padding: 15px 15px 0 15px;
}

.amazon-btn {
	border: 1px solid #d0d0d0;
}

.amazon-btn {
	margin-left: 15px;
	display: inline-block;
	border-radius: 3px;
	overflow: hidden;
}

.book-inner {
	border: 1px solid #d0d0d0;
}

.book-inner .video-left {
	width: 100%;
	float: left;
}

.awarded_sec {
	background-image: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2026/04/Englewood-NJ-Office.jpg");
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 90px 0;
	position: relative;
}

.awarded_sec.nitro-lazy {
	background-image: none !important;
}

.awarded_sec:before {
	content: "";
	position: absolute;
	background: rgba(0, 0, 0, 52%);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.heading_white h2 {
	color: #fff;
}

.awarded_sec ul {
	align-items: center;
}

.awarded_sec ul li {
	padding: 0px 28px;
}

.news_video {
	background: #f4f6f7;
}

section.news_video .news_section h5 {
	margin-bottom: 10px;
}

section.news_video .news_section h5 a {
	font-size: 18px;
	line-height: 28px;
	text-transform: uppercase;
	font-family: "Open Sans", sans-serif;
	color: #0b2a4e;
	font-weight: 500;
}

.news_section p {
	color: #0f0f0f;
	font-size: 17px;
	line-height: 30px;
	font-family: "Open Sans", sans-serif;
	margin-bottom: 20px;
}

.news_video .left_side_news {
	border-right: 1px solid #d0d0d0;
	padding-right: 26px;
}

.video_section_sec .vdo-box, .vdo-box {
	position: relative;
	overflow: hidden;
	transition: all ease 1s;
	padding-top: 0px;
}

.video_section_sec .vdo-box:before, .vdo-box:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	top: 0px;
	left: 0px;
	opacity: 0;
	transition: all ease 1s;
}

.video_section_sec .vdo-box img, .vdo-box img {
	transition: all ease 1s;
}

span.hover_play {
	position: absolute;
	bottom: 0;
	z-index: 99999;
	width: 100%;
	left: 0px;
	font-size: 45px;
	color: #fff;
	opacity: 0;
	transition: all ease 1s;
}

span.hover_play i {
	text-align: center;
	width: 100%;
	font-size: 35px;
}

.video_section_sec .vdo-box-title {
	position: absolute;
	bottom: 0;
	color: #fff;
	font-size: 14px;
	left: 10px;
	z-index: 9999;
	display: block;
	padding: 5px 10px;
	background: rgba(0, 0, 0, .8);
	width: 100%;
	left: 0;
}

.vdo-box:hover:before {
	opacity: .9;
	transition: all ease 1s;
	z-index: 9;
}

.video_section_sec .vdo-box:hover span.hover_play, .vdo-box:hover span.hover_play {
	opacity: .9;
	bottom: 65px;
	transition: all ease 1s;
}

.video_section_sec .vdo-box:hover img, .vdo-box:hover img {
	transform: scale(1.1);
	transition: all ease 1s;
}

.news-event_sec {
	background: #0b2a4e;
}

.bottom-border {
	border-bottom: 1px solid #fff;
	display: block;
	font-size: 35px;
	line-height: 42px;
	padding-bottom: 10px;
}

.news-section {
	border-bottom: 1px solid #fff;
	padding: 15px 0;
}

.news-list h6 {
	font-family: "Open Sans";
	font-weight: 600;
}

.news-list p {
	line-height: 1.9;
	margin-bottom: 0;
}

.news-list a {
	text-decoration: underline;
	display: inline-block;
	float: right;
	color: #fff;
}

.news-list a:hover {
	text-decoration: none;
}

.center-btn .common-btn {
	margin-top: 20px;
	background: #fff;
	color: #0b2a4e !important;
}

.center-btn .common-btn:hover {
	color: #fff !important;
}

section.vdo-sec {
	background: #f4f6f7;
}

section.testimonials-sec {
	background-image: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/themes/wildeslaw/img/testi-bg.jpg");
	background-position: top right;
	background-size: cover;
	background-repeat: no-repeat;
}

section.testimonials-sec.nitro-lazy {
	background-image: none !important;
}

.testimonials-box p, .testimonials-box span {
	color: #fff;
	font-size: 17px;
	line-height: 30px;
}

.testimonials-box span {
	display: block;
}

section.testimonials-sec .slick-prev, section.testimonials-sec .slick-next {
	display: none !important;
}

.copy_right {
	background-color: #001833;
}

section.copy_right p, section.copy_right p a {
	color: #fff;
	text-align: left;
	margin: 0px;
	padding: 15px 0px;
}

p.dislink.right_align_menu {
	text-align: right !important;
}

span.divider_dislinks {
	display: inline-block;
	background: #ccc;
	width: 1px;
	height: 20px;
	margin: 0 12px;
	position: relative;
	top: 5px;
}

section#banner .carousel-item img {
	width: 100%;
}

header.header.Sticky-fixed {
	top: 0px;
	border-bottom: 1px solid #ccc;
	border-top: 0px;
}

section.aboutimmg {
	background: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/themes/wildeslaw/img/abbac.jpg");
	padding: 50px 0px;
	background-repeat: no-repeat;
	background-size: cover;
}

section.aboutimmg .abtext {
	background: rgba(255, 255, 255, 92%);
	padding: 30px;
	width: 50%;
	float: right;
}

.conbtn ul {
	margin: 0;
	padding: 0;
}

.conbtn ul li {
	display: inline-block;
	list-style: none;
	margin: 0px 5px 0px 0px;
}

section.information {
	text-align: center;
	padding: 60px 0px;
}

section.information .abinf h3 {
	font-size: 32px;
	line-height: 42px;
	color: #000;
}

.news-testi-sec.nswts {
	background: #f4f6f7;
	padding: 50px 0px 30px 0px;
}

.news-testi-sec.nswts ul {
	list-style: none;
	margin: auto;
	padding: 0;
}

.news-testi-sec.nswts .news-left-main li {
	padding: 12px 0;
	border-bottom: 1px solid #eee;
}

.news-testi-sec.nswts .news-left-box h4 {
	margin-bottom: 6px;
}

.news-testi-sec.nswts .news_section h5 a, .news-testi-sec.nswts .news-left-box h4 a {
	font-size: 18px;
	color: #0b2a4e;
	font-weight: 500;
	font-family: "Open Sans", sans-serif !important;
	text-transform: capitalize;
}

.news-testi-sec.nswts .news-left-main li p {
	font-size: 17px;
	line-height: 20px;
	margin-bottom: 5px;
}

.news-testi-sec.nswts .news-left-btn a {
	display: inline-block;
	color: #05497a;
	font-weight: 600;
	font-size: 16px;
}

.innner-vid-sec-main.invdeo .wl_video_testimonials_new li {
	display: inline-block;
	width: 31.3%;
	margin: 0 !important;
	margin-right: 17px !important;
	margin-bottom: 25px !important;
}

.innner-vid-sec-main.invdeo .wl_video_testimonials_new li .video_col {
	text-align: center;
	background: #fff;
	position: relative;
	box-shadow: 0 0 15px #e0dcdc;
	overflow: hidden;
}

.vdo-box {
	transition: all ease 1s;
}

.innner-vid-sec-main.invdeo .wl_video_testimonials_new li .video_col h4 {
	font-size: 17px;
	padding: 1px 5px;
	margin: 0;
	font-family: "Open Sans", sans-serif;
}

.innner-vid-sec-main.invdeo .wl_video_testimonials_new ul li .overlay i {
	width: 28px;
	height: 28px;
	line-height: 28px;
	background: #0b2a4e;
	border-radius: 50%;
	font-size: 12px;
	color: #fff;
	display: block;
	text-align: center;
	margin: auto;
	position: absolute;
	top: 58px;
	left: 12%;
	transform: translateX(-50%);
}

.innner-vid-sec-main.invdeo .wl_video_testimonials_new li:nth-child(3), .innner-vid-sec-main.invdeo .wl_video_testimonials_new li:nth-child(6) {
	margin-right: 0px !important;
}

section.abtforum {
	padding: 50px 0px;
	background: #f2f2f2;
}

section.abtforum .abtfrm {
	width: 40%;
	background: rgba(0, 0, 0, .42);
	padding: 25px;
}

section.abtforum .right_side_form.video_form.clearfix {
	background: #fff;
	padding: 30px;
	border: 1px solid #ddd;
}

section.abtforum .right_side_form.video_form .form-group.col-md-12.subm {
	padding-left: 0;
}

section.sectitle {
	text-align: center;
	padding: 20px 0px;
	background: #f0f0f0;
}

section.sectitle h2, section.sectitle h1 {
	color: #000;
}

.partners-new a img {
	width: 100% !important;
}

.partners-new a.float-left {
	width: 100%;
}

.desc .name a {
	color: #000;
	font-weight: 600;
	font-family: "AGaramondPro-Regular";
	font-size: 30px;
}

section.partsect .partners-new .desc .name a {
	color: #000;
	font-family: "Conv_AGaramondPro-Regular";
	font-weight: normal;
	font-size: 30px;
}

section.partsect .partners-new p a {
	color: #05497a;
	text-decoration: none;
}

section.partsect {
	background: #f4f6f7;
	padding: 60px 0px;
}

section.partsect p a {
	color: #0b2a4e;
	font-weight: 600;
}

section.partsect .partners-new p span {
	font-weight: 700;
}

section.partsect .partnersect .partners-new {
	margin-bottom: 40px;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}

section.partsect .partnersect .partners-new.mb0 {
	border-bottom: 0px !important;
	padding-bottom: 0px !important;
	margin-bottom: 0px !important;
}

section.partsect .partnersect .partners-new.mb0 {
	margin-bottom: 0px;
}

.prtch .partners-new {
	margin-bottom: 30px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 30px;
}

.prtch .partners-new.mb0 {
	margin-bottom: 0px;
	border-bottom: 0px solid #ddd;
	padding-bottom: 0px;
}

.prtch .partners-new.mb0 {
	margin-bottom: 0px;
}

.prtch .partners-new h2 a {
	color: #000;
	font-family: "Conv_AGaramondPro-Regular";
	font-size: 30px;
}

.prtch .partners-new h2 {
	font-size: 30px;
	font-weight: 700;
}

section.ofcounsel {
	background: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/themes/wildeslaw/img/cousel.jpg");
	padding: 50px 0px;
	background-repeat: no-repeat;
	background-size: cover;
}

section.ofcounsel .abtext {
	background: rgba(0, 0, 0, 80%);
	padding: 30px;
	width: 50%;
	float: right;
}

section.ofcounsel .abtext h2, section.ofcounsel .abtext p {
	color: #fff;
}

section.jnav {
	padding: 50px 0px;
}

section.martin .container-fluid {
	padding-left: 0;
	padding-right: 0;
}

section.martin {
	background: #0b2a4e;
}

section.martin .abinf {
	padding: 50px 0px;
	max-width: 600px;
}

section.martin .abinf h1, section.martin .abinf p {
	color: #fff;
}

.cnsl img {
	width: 100%;
	height: 1000px;
	object-fit: cover;
}

.cnsl1 img {
	width: 100%;
	height: 1060px;
	object-fit: cover;
}

section.victcalle {
	background: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/themes/wildeslaw/img/victbac.jpg");
	padding: 50px 0px;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	background-attachment: fixed;
}

section.victcalle:before {
	content: "";
	position: absolute;
	background: rgba(0, 0, 0, 65%);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

section.victcalle h1, section.victcalle p {
	color: #fff;
}

section.heln {
	padding: 50px 0px;
}

section.danrett {
	padding: 50px 0px;
}

section.danrett .vicalt {
	background: #f5f5f5;
	padding: 40px;
}

section.histry {
	background: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/themes/wildeslaw/img/history.jpg");
	padding: 50px 0px;
	background-repeat: no-repeat;
	background-size: cover;
}

section.histry .abtext {
	background: rgba(255, 255, 255, 92%);
	padding: 30px;
	width: 50%;
	float: right;
}

section.lennoncase {
	padding: 50px 0px;
}

section.bgwild {
	background: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/themes/wildeslaw/img/bg_the_john_case.jpg");
	padding: 50px 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: right top;
}

section.lennoncase {
	background: #fbfdff;
}

section.bgwild p {
	margin-bottom: 10px;
}

section.bgwild p a {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
}

section.bgwild ul.links_wild {
	list-style: none;
	margin: auto;
	padding: 0;
}

section.bgwild ul.links_wild li {
	margin-bottom: 20px;
	list-style: none;
}

section.bgwild ul.links_wild li a {
	color: #fff;
}

section.bgwild ul.links_wild li a i.fa.fa-university {
	padding: 5px 10px 7px 0px;
	float: left;
}

section.bgwild ul.links_wild li p {
	color: #fff;
}

.jlenn {
	background: #0b2a4e;
	padding: 30px;
}

.jlenn h2, .jlenn p {
	color: #fff;
}

section.lennoncase .col-lg-6 {
	padding-left: 10px;
	padding-right: 10px;
}

section.servcspage {
	padding: 50px 0px;
	background: #f4f6f7;
}

section.servcspage h2, .wilservweing h2 {
	font-size: 32px;
	line-height: 42px;
	text-align: center;
	padding-bottom: 20px;
	font-weight: 700;
	color: #000;
}

.wildserv {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.wildserv .wildservinner {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	flex-basis: calc(93% / 4);
	margin: 10px;
	background: #fff;
	box-shadow: 0px 1px 7px rgba(0, 0, 0, 15%);
}

.wildserv .wildservinner h4 a {
	color: #000;
	display: block;
	padding: 10px;
	font-size: 17px;
	line-height: 26px;
	font-family: "Open Sans", sans-serif;
}

.wildserv .wildservinner h4 {
	margin-bottom: 0px;
	text-align: left;
	padding-left: 5px;
	padding-right: 5px;
}

.wildserv .wildservinner .wildimg {
	overflow: hidden;
	transition: 2s ease-out;
	text-align: center;
}

.wildserv .wildservinner .wildimg img {
	transition: 300ms ease-out;
}

.wildserv .wildservinner .wildimg img:hover {
	transform: scale(1.05);
}

section.wilservweing {
	padding: 50px 0px;
}

section.wilservweing h2 span {
	color: #d19f66;
}

section.wilservweing h2 span {
	display: block;
}

section.wilservweing {
	margin-bottom: 50px;
}

section.compl {
	padding: 0px 0px 50px 0px;
	background: #f4f6f7;
}

section.compl h5 {
	text-align: center;
	font-size: 28px;
	line-height: 36px;
	width: 80%;
	margin: 0 auto;
}

.complnc {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 20px;
	justify-content: center;
}

section.compl.huffring .complnc {
	padding-bottom: 0px;
}

.complnc .complncinner {
	display: flex;
	flex-wrap: wrap;
	flex-basis: calc(93% / 4);
	background: #fff;
	margin: 10px;
	padding: 20px;
	text-align: center;
	flex-direction: column;
	border: 1px solid #ddd;
}

.complnc .complncinner p a {
	color: #000;
	width: 100%;
	display: block;
	font-weight: 500;
}

.complnc .complncinner .cmpicn i {
	font-size: 32px;
	line-height: 42px;
	color: #0b2a4e;
}

.complnc .complncinner .cmpicn {
	padding-bottom: 5px;
}

section.compl p {
	text-align: center;
}

.complnc .complncinner p {
	color: #000;
	font-size: 17px;
	line-height: 28px;
	max-width: 100% !important;
}

section.discpg {
	background: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/themes/wildeslaw/img/crthm.jpg");
	padding: 80px 0px;
	background-repeat: no-repeat;
	background-size: cover;
}

section.discpg .abtext {
	background: rgba(255, 255, 255, 92%);
	padding: 30px;
	width: 50%;
	float: right;
}

section.busimmig {
	padding: 50px 0px;
}

section.discpg .abtext .disclm ul {
	margin: 0;
	padding: 0;
}

section.discpg .abtext .disclm ul li {
	list-style: none;
	padding-bottom: 10px;
	font-size: 16px;
	line-height: 26px;
	margin-left: 20px;
}

section.discpg .abtext .disclm ul li:before {
	content: "";
	font-family: "FontAwesome";
	padding-right: 10px;
	margin-left: -20px;
	color: #0b2a4e;
}

section.busimmig .col-lg-6 {
	display: flex;
	align-items: center;
}

section.martin .abinf h4 {
	color: #fff;
}

section.martin .abinf ul.bimmgrt {
	margin: 0;
	padding: 0;
}

section.martin .abinf ul.bimmgrt li {
	list-style: none;
	color: #fff;
	padding-bottom: 10px;
	margin-left: 20px;
}

section.martin .abinf ul.bimmgrt {
	padding-top: 10px;
	padding-bottom: 10px;
}

section.martin .abinf ul.bimmgrt li:before {
	content: "";
	font-family: "FontAwesome";
	padding-right: 8px;
	margin-left: -20px;
}

section.conspract {
	background: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/themes/wildeslaw/img/counseler.jpg");
	padding: 50px 0px;
	background-repeat: no-repeat;
	background-size: cover;
}

section.conspract .abtext {
	background: rgba(0, 0, 0, 80%);
	padding: 30px;
	width: 50%;
	float: right;
}

section.conspract .abtext h2, section.conspract .abtext p {
	color: #fff;
}

section.chartitble {
	background: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/themes/wildeslaw/img/charitable.jpg");
	padding: 50px 0px;
	background-repeat: no-repeat;
	background-size: cover;
}

section.chartitble .abtext {
	background: rgba(0, 0, 0, 80%);
	padding: 30px;
	width: 50%;
	float: right;
}

section.chartitble .abtext h2, section.chartitble .abtext p {
	color: #fff;
}

section.familyimmeg {
	background: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/themes/wildeslaw/img/familyimmeg.jpg");
	padding: 50px 0px;
	background-repeat: no-repeat;
	background-size: cover;
}

section.familyimmeg .abtext {
	background: rgba(0, 0, 0, 80%);
	padding: 30px;
	width: 45%;
	float: left;
}

section.familyimmeg .abtext h2, section.familyimmeg .abtext p {
	color: #fff;
}

section.invbased {
	padding: 60px 0px;
}

section.invisa {
	background: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/themes/wildeslaw/img/invisa.jpg");
	padding: 50px 0px;
	background-repeat: no-repeat;
	background-size: cover;
}

section.invisa .abtext {
	background: rgba(0, 0, 0, 80%);
	padding: 30px;
	width: 50%;
	float: right;
}

section.invisa .abtext h2, section.invisa .abtext p {
	color: #fff;
}

section.invisa .abtext h1 {
	color: #fff;
}

.weing img {
	width: 100%;
	height: 870px;
	object-fit: cover;
}

section.invbased.bacdrk {
	background: #0b2a4e;
}

section.invbased.bacdrk p {
	color: #fff;
}

.immvisas {
	display: flex;
	flex-wrap: wrap;
}

.immvisas .immvisasinner {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	flex-basis: calc(100%);
	background: #fff;
	padding: 25px;
	margin: 10px;
	border: 5px double #d19f66;
	font-size: 17px;
	line-height: 28px;
}

.immvisas .immvisasinner h2, .immvisas .immvisasinner p {
	color: #000 !important;
}

.busimmigvid {
	padding: 50px 0px;
}

.cnsvid img {
	width: 100%;
	height: 810px;
	object-fit: cover;
}

section.visas {
	background: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/themes/wildeslaw/img/visas.jpg");
	padding: 50px 0px;
	background-repeat: no-repeat;
	background-size: cover;
}

section.visas .abtext {
	background: rgba(0, 0, 0, 80%);
	padding: 30px;
	width: 50%;
	float: right;
}

section.visas .abtext h2, section.visas .abtext p {
	color: #fff;
}

section.martin.mrtns {
	background: #f5f5f5;
}

section.martin.mrtns .abinf h4, section.martin.mrtns .abinf p {
	color: #000;
}

section.martin.mrtns .abinf ul.bimmgrt li {
	color: #000;
}

section.martin.mrtns .abinf ul.bimmgrt li:before {
	color: #0b2a4e;
}

section.numbact {
	background: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/themes/wildeslaw/img/numb1.jpg");
	position: relative;
	padding: 50px 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

section.numbact:before {
	position: absolute;
	content: "";
	background: rgba(11, 42, 78, 82%);
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

section.numbact h4, section.numbact h5 {
	color: #fff;
}

section.numbact p {
	color: #fff;
}

section.numbact ul.bimmgrt {
	margin: 0;
	padding: 0;
}

section.numbact ul.bimmgrt li {
	list-style: none;
	color: #fff;
	padding-bottom: 10px;
	margin-left: 20px;
}

section.numbact ul.bimmgrt li:before {
	content: "";
	font-family: "FontAwesome";
	padding-right: 8px;
	margin-left: -20px;
	color: #fff;
}

.bacdrk {
	background: #0b2a4e;
}

section.busimmigvid.bacdrk .abinf p {
	color: #fff;
}

.blpost {
	background: #fff;
	padding: 60px 0px 50px 0px;
}

.blpost h2 {
	color: #fff;
	margin: 0 0 30px 0;
}

.blpost .i {
	margin-bottom: 30px;
}

.blpost .i .c {
	background: #fff;
	-webkit-box-shadow: 0 4px 0 #ddd;
	-moz-box-shadow: 0 4px 0 #ddd;
	box-shadow: 0 4px 0 #ddd;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	position: relative;
	overflow: hidden;
	padding-bottom: 80px;
}

.blpost .i .c .wrap {
	position: relative;
}

.blpost .i .c .wrap img {
	width: 100%;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.blpost .i .c .wrap .info {
	padding: 20px 10px;
	position: absolute;
	top: 100%;
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.blpost .i .c .wrap .info .name {
	margin: 0;
	font-size: 16px;
	line-height: 26px;
	font-weight: 700;
}

.blpost .i .c .wrap .info .name a {
	color: #000;
}

.blpost .i .c .wrap .info .position {
	margin: 0;
	font-size: 14px;
	font-size: 1.4rem;
	color: #555659;
}

.blpost .i .c .more {
	position: absolute;
	bottom: -100%;
	width: 100%;
	padding-bottom: 40px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.blpost .i .c .more p {
	margin: 0 18px 30px 18px;
	line-height: 22px;
}

.blpost .i .c .more .socials {
	margin: 0 0 20px 0;
}

.blpost .i .c .more .socials a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 22px;
	font-size: 2.2rem;
	color: #fff;
	margin: 0 0 0 3px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	text-align: center;
	-webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, .1);
	-moz-box-shadow: 0 3px 0 rgba(0, 0, 0, .1);
	box-shadow: 0 3px 0 rgba(0, 0, 0, .1);
}

.blpost .i .c .more .socials a:first-child {
	margin: 0;
}

.blpost .i .c .more .socials a.facebook {
	background: #3262b9;
}

.blpost .i .c .more .socials a.facebook:hover {
	background: #2d57a5;
}

.blpost .i .c .more .socials a.twitter {
	background: #3dd7e5;
}

.blpost .i .c .more .socials a.twitter:hover {
	background: #27d2e2;
}

.blpost .i .c .more .socials a.google-plus {
	background: #e23535;
}

.blpost .i .c .more .socials a.google-plus:hover {
	background: #de2020;
}

.blpost .i .c .more .socials a.linkedin {
	background: #069;
}

.blpost .i .c .more .socials a.linkedin:hover {
	background: #005580;
}

.blpost .i .c:hover img {
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	opacity: 0;
}

.blpost .i .c:hover .info {
	top: 0;
}

.blpost .i .c:hover .info {
	display: none;
}

.blpost .i .c:hover .more {
	top: 10%;
	height: 100%;
	padding: 20px;
}

.blpost .i .c .more h3.name {
	color: #000;
	font-size: 18px;
	line-height: 26px !important;
}

.blpost .i .c .more h3.name a {
	color: #000;
}

.readbtn a {
	background: #0b2a4e;
	padding: 8px 20px;
	color: #fff;
}

.row.navcenter nav ul.pagination {
	justify-content: center;
}

.row.navcenter nav .page-link {
	color: #0b2a4e;
}

.blpost .i .c .wrap img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

section.atriclpg {
	background: #f5f5f5;
	padding: 50px 0px;
}

section.atriclpg .artcpg {
	display: flex;
	flex-wrap: wrap;
}

section.atriclpg .artcpg .artcpginner {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	flex-basis: calc(93% / 4);
	margin: 10px;
	text-align: center;
	background: #0b2a4e;
}

section.atriclpg .artcpg .artcpginner h4 {
	text-transform: uppercase;
	padding: 10px 10px;
	font-size: 16px;
	line-height: 24px;
}

section.atriclpg .artcpg .artcpginner h4 a {
	color: #fff;
	font-size: 16px;
	line-height: 24px;
}

section.atriclpg .artcpg .artcpginner .artimg img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

section.atriclpg {
	text-align: center;
}

section.bldetl {
	padding: 50px 0px;
}

section.information.drk {
	background: #0b2a4e;
}

section.information.drk .abinf h3 {
	color: #fff;
}

section.information.drk .abinf h3 a {
	color: #fff;
}

section.compl.huffring h5 {
	padding-bottom: 10px;
}

.wildimg img {
	width: 100%;
	object-fit: cover;
}

section.compl.genr .complnc .complncinner .desc {
	background: #0b2a4e;
	padding: 7px;
	color: #fff;
	font-size: 12px;
	line-height: 22px;
}

.wllmg .wildimg img {
	height: 220px;
	object-fit: cover;
}

.gallerysp .btn:focus, .gallerysp .btn:active, .gallerysp button:focus, .gallerysp button:active {
	outline: none !important;
	box-shadow: none !important;
}

.gallerysp #image-gallery .modal-footer {
	display: block;
}

.gallerysp .thumb {
	margin-top: 15px;
	margin-bottom: 15px;
}

nav.navbar.navbar-expand-lg ul#menu-main-menu button.sub-menu-toggle {
	display: none;
}

section#banner .carousel-caption .custom ul li span {
	padding: 0px 15px;
	margin-bottom: 0px;
	position: relative;
	text-shadow: 1px 1px #000;
	display: block;
}

section#banner .carousel-caption .custom ul li span:before {
	content: "";
	display: block;
	position: absolute;
	background-color: #0b2a4e;
	width: 7px;
	height: 20px;
	top: 6px;
	left: 0px;
}

section#banner .carousel-caption .custom ul li {
	padding-right: 20px;
}

section.our_services .form-contact.form-side-outer textarea.form-control {
	min-height: 140px !important;
}

.prtch .partners-new a.common-btn {
	color: #fff;
}

.wildserv .wildservinner .wildimg a img {
	max-width: 60px;
	object-fit: cover;
}

section.absrct {
	background: #f4f6f7;
	padding: 60px 0px;
}

section.information {
	background: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2021/10/call-to-act-bg.jpg");
	background-attachment: fixed;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

section.information:before {
	position: absolute;
	content: "";
	background: rgba(0, 0, 0, 60%);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

section.information .abinf h3 {
	font-size: 22px;
	line-height: 32px;
	color: #fff;
	font-family: "Open Sans", sans-serif;
	font-weight: 500;
}

section.common-sec.testimonials-inner.parallaxie {
	box-shadow: 0 0 25px rgba(238, 238, 238, .93);
	padding: 25px;
	border: 1px solid #eee;
}

section.common-sec.testimonials-inner.parallaxie .heading_section h2 {
	margin-bottom: 0px;
}

section.common-sec.testimonials-inner.parallaxie p {
	color: #000;
}

section.common-sec.testimonials-inner.parallaxie span.client-nm, section.common-sec.testimonials-inner.parallaxie span.testi-dt {
	color: #0b2a4e;
	font-family: "Conv_AGaramondPro-Regular";
	font-weight: normal;
	font-size: 19px;
	line-height: 26px;
}

section.common-sec.testimonials-inner.parallaxie span.testi-dt {
	display: none;
}

section.common-sec.testimonials-inner.parallaxie button.slick-prev.slick-arrow, section.common-sec.testimonials-inner.parallaxie button.slick-next.slick-arrow {
	display: none !important;
}

section.abtforum .wl_video_testimonials_new ul {
	margin: 0;
	padding: 0;
}

section.abtforum form#contact_form .common_form p {
	font-size: 12px;
	color: #f00;
	margin-bottom: 10px;
}

section.abtforum .right_side_form form#contact_form .form-group.col-md-12.subm {
	text-align: right;
}

section.abtforum .right_side_form.video_form.clearfix {
	padding: 10px 20px;
}

section.abtforum .right_side_form.video_form.clearfix .form-group {
	margin-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
}

section.abtforum .right_side_form.video_form.clearfix input.form-control {
	padding: 6px;
}

section.abtforum .right_side_form.video_form.clearfix textarea.form-control {
	max-height: 50px;
}

section.counsel1 {
	padding: 50px 0px;
	background: #f4f6f7;
}

h4 {
	font-size: 30px;
	line-height: 40px;
}

section.jnav .abinf h1 {
	color: #fff;
	font-size: 30px;
}

section.jnav .abinf p {
	color: #fff;
}

section.jnav {
	background: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2021/10/dark.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

section.heln {
	background: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2021/10/dark2.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

section.heln .abinf h4, section.heln .abinf p {
	color: #fff;
}

.news-left-main ul li:last-child {
	border-bottom: 0px !important;
}

section.bsprtnt {
	background: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2021/10/dark.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	padding: 50px 0px;
	background-position: center center;
}

section.bsprtnt p {
	color: #fff;
}

ul.bimmgrt {
	margin: 0;
	padding: 0;
}

ul.bimmgrt li {
	list-style: none;
	color: #fff;
	display: block;
	font-size: 17px;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #383838;
}

ul.bimmgrt li:before {
	content: "";
	font-family: "FontAwesome";
	padding-right: 10px;
}

ul.bimmgrt li:last-child {
	border-bottom: 0px;
	margin-bottom: 0;
}

.page-id-39811 .bsprtnt h4 {
	color: #fff;
	font-size: 24px;
	margin-bottom: 15px;
}

ul[class*="col_"] {
	display: flex;
	flex-wrap: wrap;
}

ul.bimmgrt.col_2 > * {
	min-width: 240px;
	display: flex;
	margin-inline: 12px;
	flex: 1 1 calc(100% / 2 - 24px);
}

ul.bimmgrt.col_4 > * {
	min-width: 240px;
	display: flex;
	margin-inline: 12px;
	flex: 1 1 calc(100% / 4 - 24px);
}

ul.bimmgrt.col_3 > * {
	min-width: 240px;
	display: flex;
	margin-inline: 12px;
	flex: 1 1 calc(100% / 3 - 24px);
}

.abinf li, .abinf li::before {
	color: #000 !important;
}

section.bsprtnt p a {
	color: #0056b3;
}

.conslimg {
	float: right;
	padding-left: 20px;
	padding-bottom: 20px;
}

.conslimg img {
	box-shadow: 10px 10px 0 #0b2a4e;
	max-width: 576px;
}

section.invisa11 {
	background: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2021/10/blur.jpg");
	padding: 50px 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

ul.bimmgrt1 {
	margin: 15px 0px;
	padding: 20px;
	background: #fff;
}

ul.bimmgrt1 li {
	list-style: none;
	padding-bottom: 10px;
	margin-left: 20px;
}

ul.bimmgrt1 li:before {
	font-family: "FontAwesome";
	content: "";
	padding-right: 10px;
	margin-left: -20px;
}

section.cnsl1 {
	background: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2021/10/services-bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	padding: 50px 0px;
	background-position: center center;
	background-attachment: fixed;
}

section.compl1 {
	padding: 50px 0px;
	background: #f4f6f7;
}

section.compl1 .complnc .complncinner {
	background: #f4f6f7;
}

section.compl1 .complnc .complncinner:hover {
	background: #ebebeb;
	cursor: pointer;
}

section.discpg1 {
	background: #f4f6f7;
	padding: 50px 0px;
}

section.discpg1 .disclm ul {
	margin: 0;
	padding: 0;
}

section.discpg1 .disclm ul li {
	list-style: none;
	padding-bottom: 10px;
	margin-left: 22px;
	position: relative;
}

section.discpg1 .disclm ul li:before {
	aspect-ratio: 1;
	position: absolute;
	content: "";
	margin-left: -35px;
	top: -8px;
	width: 30px;
	background: no-repeat url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2023/09/statue-of-liberty.png") center/contain;
}

section.information .abinf a {
	font-size: 22px;
	line-height: 32px;
}

section.blpost1 {
	padding: 50px 0px;
}

section.blpost1 .c.text-center {
	position: relative;
	background: #f5f5f5;
	overflow: hidden;
	min-height: 350px;
}

section.blpost1 .c.text-center .wrap {
	/* padding: 15px 15px 0px 15px; */
	padding: 0;
}

section.blpost1 .c.text-center .wrap img {
	width: 100%;
	height: 350px;
	object-fit: contain;
	max-width: 100%;
}

section.blpost1 .info h3 {
	padding: 15px;
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #05497a;
	text-align: center;
	overflow: hidden;
	transition: all .5s ease-in-out 0s;
	-webkit-transition: all .5s ease-in-out 0s;
	margin-bottom: 0px;
}

section.blpost1 .c.text-center .readbtn a.common-btn {
	background: transparent;
	border: 0px;
	font-size: 17px;
	line-height: 28px;
	text-transform: uppercase;
}

section.blpost1 .info h3 a {
	color: #fff;
	color: #fff;
	display: block;
	margin-bottom: 20px;
}

section.blpost1 .c.text-center .more {
	position: absolute;
	background: #05497a;
	padding: 20px 20px;
	bottom: 0px;
	z-index: 11;
	min-height: 100%;
}

section.blpost1 .c.text-center .more h3, section.blpost1 .c.text-center .more p, section.blpost1 .c.text-center .more h3 a {
	color: #fff;
}

section.blpost1 .c.text-center .more {
	opacity: 0;
	transition: all .3s ease-in-out 0s;
	-webkit-transition: all .3s ease-in-out 0s;
}

section.blpost1 .c.text-center:hover .more {
	opacity: 1;
}

section.blpost1 .i {
	padding-bottom: 30px;
}

.pagination {
	padding-top: 30px;
}

.pagination ul {
	margin: 0;
	padding: 0;
	text-align: center;
}

.pagination ul li {
	display: inline-block;
	padding: 10px 1px;
}

.pagination ul li a {
	border: 1px solid #ddd;
	padding: 12px 20px;
	color: #000;
	font-weight: 400;
}

.pagination ul li a:hover, .pagination ul li.active a, .pagination ul li.drk a {
	background: #05497a;
	color: #fff;
}

.pagination {
	justify-content: center;
}

h4.center {
	text-align: center;
}

section.compl1.cmpll .complnc .complncinner {
	position: relative;
}

section.compl1.cmpll .complnc .complncinner .cmpicn {
	position: absolute;
	left: 10px;
}

section.compl1.cmpll .complnc .complncinner p {
	padding-left: 40px;
	text-align: left;
	position: relative;
}

section.compl1.cmpll .complnc .complncinner p:before {
	content: "";
	position: absolute;
	font-family: "FontAwesome";
	font-size: 28px;
	color: #05497a;
}

.complnc.cmppl .complncinner {
	flex-basis: 100%;
}

.center {
	text-align: center;
}

section.counsel1 .abbimg img {
	width: 100%;
}

section.counsel1 .abbimg {
	padding-bottom: 20px;
}

section.counsel1.cnslt {
	padding-top: 0px;
}

ul.bimmgrsqt {
	margin: 0;
	padding: 0;
}

ul.bimmgrsqt li {
	list-style: none;
	padding-bottom: 10px;
	margin-left: 20px;
}

ul.bimmgrsqt li:before {
	content: "";
	font-family: "FontAwesome";
	padding-right: 10px;
	color: #0b2a4e;
	margin-left: -25px;
}

.complnc.cmntq .complncinner {
	flex-basis: 100%;
}

.complnc.cmntq .complncinner .desc {
	text-align: left;
	padding: 13px 15px !important;
	margin-top: 10px;
}

section.compl1.cmpll .complnc .complncinner i.fa.fa-university {
	padding-left: 10px;
}

section.compl1.cmpll .complnc .complncinner p {
	padding-left: 50px;
}

section.compl.genr .complnc .complncinner .desc p {
	padding-left: 0;
}

section.compl.genr .complnc .complncinner .desc p a {
	color: #fff;
	font-size: 12px;
}

section.compl.genr .complnc .complncinner .desc .date {
	font-size: 12px;
	text-transform: uppercase;
}

section.sectitle h2, section.sectitle h1 {
	font-size: 45px;
	line-height: 50px;
}

.conslimg2 img {
	border: 5px solid #0b2a4e;
}

.row.cle .clrins {
	box-shadow: 2px 2px 20px -10px #555;
	text-align: center;
	transition: all .5s ease-in-out 0s;
	-webkit-transition: all .5s ease-in-out 0s;
	padding: 15px 15px 1px 15px;
}

.row.cle .clrins img {
	max-width: 100%;
}

.tcenter p {
	text-align: center !important;
}

.row.cle .clrins h3 {
	background: #05497a;
	color: #fff;
	padding: 20px;
	font-size: 16px;
	font-family: "Open Sans", sans-serif;
	line-height: 26px;
}

.row.cle .clrins {
	margin-bottom: 20px;
}

.padd-row.pdrs .row.cmapr address {
	background: #05497a;
	margin: 0;
	padding: 30px 30px 20px 30px;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 25px;
}

.padd-row.pdrs .row.cmapr ul.addrs li p:first-of-type {
	color: #fff !important;
}

section.compl1.cmpll .row.cmapr ul.addrs {
	margin: 0;
	padding: 0;
}

section.compl1.cmpll .row.cmapr ul.addrs li {
	list-style: none;
	display: block;
	text-align: left;
	position: relative;
	padding-left: 62px;
	padding-bottom: 20px;
	vertical-align: middle;
	padding-top: 10px;
	margin-bottom: 10px;
}

section.compl1.cmpll .row.cmapr ul.addrs li i {
	background: none;
	color: #fff;
	width: 50px;
	height: 50px;
	line-height: 44px;
	text-align: center;
	font-size: 20px;
	border-radius: 100px;
	border: 2px solid;
	float: left;
	position: absolute;
	left: 0;
	top: 0px;
}

section.compl1.cmpll .row.cmapr ul.addrs li a {
	color: #fff;
}

section.compl1.cmpll .row.cmapr ul.addrs li:first-child i {
	top: 10px;
}

section.compl1.cmpll .row.cmapr iframe {
	-webkit-box-shadow: 5px 5px 30px -10px #888;
	box-shadow: 5px 5px 30px -10px #888;
}

.row.cmapr1 img {
	border: 5px solid #05497a;
	-webkit-box-shadow: 5px 5px 30px -10px #888;
	box-shadow: 5px 5px 30px -10px #888;
}

ul.links_wild li {
	list-style: none;
	padding-bottom: 10px;
}

ul.links_wild {
	margin: 0;
	padding: 0;
}

ul.service-list.srvc {
	margin: 0;
	padding: 0;
}

ul.service-list.srvc li {
	list-style: none;
	padding-bottom: 10px;
}

ul.service-list.srvc li a {
	color: #000;
}

ul.service-list.srvc li:before {
	content: "";
	font-family: "FontAwesome";
	padding-right: 10px;
	color: #0b2a4e;
}

ul.service-list.srvc {
	background: #fff;
	padding: 20px !important;
	margin: 0;
}

.cntfrmp {
	display: flex;
	flex-wrap: wrap;
}

.cntfrmp .cntfrmpinner {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	padding: clamp(15px, 3vw, 30px);
	width: 100%;
}

.cntfrmpinner form {
	width: 100%;
}

.cntfrmp .cntfrmpinner.cnt1 {
	flex-basis: 60%;
	background: #fff;
	box-shadow: 1px 1px 6px #ddd;
}

.cntfrmp .cntfrmpinner.cnt2 {
	flex-basis: 40%;
	background: #0b2a4e;
}

.cntfrmp .cntfrmpinner.cnt2 h3 {
	color: #fff;
	position: relative;
	padding-left: 12px;
}

p.red {
	font-size: 12px;
	color: #f00;
	margin-bottom: 8px;
}

.full-width.contact_us.loct address.address {
	background: #fff;
	padding: 20px 20px 10px 20px;
	min-height: 178px;
	border-radius: 3px;
	border-bottom: 2px solid #05497a;
}

.full-width.contact_us.loct {
	padding-top: 60px;
}

.contact__info h3:before {
	content: "";
	display: block;
	position: absolute;
	background-color: #fff;
	width: 3px;
	height: 35px;
	top: -2px;
	left: 0px;
}

.cntfrmp .cntfrmpinner.cnt2 .contact_email h4 {
	font-size: 17px;
	color: #fff;
	font-family: "Open Sans", sans-serif;
	margin-bottom: 0px;
}

.cntfrmp .cntfrmpinner.cnt2 .contact_email a {
	color: #fff;
}

.cntfrmp .cntfrmpinner.cnt2 p {
	color: #fff;
}

.cntfrmp .cntfrmpinner .contact_email {
	border-bottom: 1px solid #fff;
}

.cntfrmp .cntfrmpinner .contact_email:last-child {
	border-bottom: 0px;
}

.full-width.contact_us.loct .text-center h2 {
	padding-bottom: 40px;
}

.c.text-center p {
	font-size: 16px;
	line-height: 26px;
}

.c.text-center .readbtn a.common-btn:before, .c.text-center .readbtn a.common-btn:after {
	background: transparent;
}

.single.single-post section.sectitle h2, .single.single-post section.sectitle h1 {
	/*text-transform: capitalize;*/
	font-weight: 500;
}

.single.single-post img.size-full {
	float: left;
	padding-right: 20px;
	padding-bottom: 20px;
}

.padd-row.pdrs .row.cmapr img {
	width: 100%;
	object-fit: cover;
}

#fancybox-right-ico {
	position: relative;
}

#fancybox-right-ico:before {
	content: "";
	font-family: FontAwesome;
	color: #fff;
	z-index: 9;
	font-size: 40px;
}

div#fancybox-title {
	width: 100% !important;
}

#fancybox-close {
	top: -6px !important;
	right: -33px !important;
}

#fancybox-outer {
	position: relative;
	width: 100%;
	height: 100%;
	background: transparent !important;
	border-radius: 10px !important;
}

#fancybox-content {
	width: 0;
	height: 0;
	padding: 0;
	outline: none;
	position: relative;
	overflow: hidden;
	z-index: 1102;
	border: 10px solid #0b2a4e !important;
	border-radius: 10px !important;
}

.title_new_top .padd-row p:first-of-type {
	text-align: left !important;
	max-width: 100% !important;
	font-size: 17px;
	text-transform: capitalize;
	font-family: inherit !important;
	font-weight: normal !important;
}

.title_new_top .padd-row p:first-of-type strong {}

.title_new_top p:first-of-type {
	font-size: 30px;
	text-transform: uppercase;
	max-width: 80%;
	margin: 0 auto 30px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	font-family: "Conv_AGaramondPro-Regular";
	color: #000;
}

.photo-gallery .phglry h4 {
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	padding: 10px;
	font-family: "Open Sans", sans-serif;
	background: #0b2a4e;
	color: #fff;
	min-height: 94px !important;
}

.photo-gallery .phglry img {
	max-width: 100%;
	width: 100%;
	height: 270px;
	object-fit: cover;
}

section.gallery1.photo-gallery {
	background: #f4f6f7;
	padding: 50px 0px 50px 0px;
}

section.gallery1.photo-gallery .phglry {
	padding-bottom: 25px;
}

section.gallery1.photo-gallery .pagination {
	padding-top: 0px;
}

div#fancybox-wrap {
	z-index: 999999;
}

section.vidglr {
	padding: 50px 0px;
	background: #f3f5f6;
}

.vidglrpg {
	display: flex;
	flex-wrap: wrap;
}

.vidglrpg .vidglrpginner {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	flex-basis: calc(92% / 3);
	background: #0b2a4e;
	padding: 25px;
	margin: 15px;
}

.vidglrpg .vidglrpginner .vid1 a {
	color: #fff;
}

.audioplayer {
	background: #fff;
	padding: 50px;
	border-radius: 0px;
	text-align: center;
}

.audioplayer audio {
	width: 50%;
	margin: 0 auto;
}

section.tstimn {
	background: #f4f6f7;
	padding: 50px 0px;
}

section.tstimn .testimnl {}

section.tstimn .testimnl .testimninner {
	border: 1px solid #ddd;
	background: #fff;
	padding: 20px;
	margin-bottom: 20px;
}

section.tstimn .testimnl .testimninner p.date {
	margin-bottom: 0px;
	text-align: right;
}

section.tstimn .testimnl .testimninner p.testcnt {
	position: relative;
}

section.tstimn .testimnl .testimninner p.testcnt:before {
	content: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2021/10/quote_left.png");
	left: 0;
	top: 0;
	padding-right: 5px;
}

section.tstimn .testimnl .testimninner p.testcnt:after {
	content: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2021/10/quote_right.png");
	padding-left: 10px;
}

section.about-inner.services-block h2.sub_title {
	font-size: 26px;
	text-transform: uppercase;
	font-weight: 700;
	color: #000;
	line-height: 36px;
}

section.gallerysp {
	background: #f4f6f7;
	padding: 50px 0px;
}

section.gallerysp .video-gallery iframe {
	float: left;
	max-width: 100%;
	margin: 0 20px 10px 0;
	border: 5px solid #05497a;
	-webkit-box-shadow: 5px 5px 30px -10px #888;
	box-shadow: 5px 5px 30px -10px #888;
	margin-bottom: 25px;
}

.page-id-37413 .gallerysp h4 {
	font-size: 27px;
	margin-bottom: 8px;
	margin-bottom: 0px;
}

header#hdr .header-action a.login-text, header#hdr .header-action a.login-text span {
	font-size: 14px;
	line-height: 22px;
}

header#hdr .main-nav .header-action a.common-btn span.d-block {
	font-size: 15px;
}

.header_social_icon {
	padding-left: 0px;
}

section.news-event_sec.common-sec.text-white .news-section {
	min-height: 180px;
}

.single.single-post section.compl1.cmpll .title_new_top p:first-of-type {
	font-family: "Open Sans", sans-serif;
	font-size: 17px;
	color: #212529;
	line-height: 26px;
	font-weight: 600;
	width: 100%;
	text-align: left;
	max-width: 100%;
	text-transform: capitalize;
}

.single.single-post section.compl1.cmpll .complnc.cmppl .complncinner .cmpicn {
	display: none;
}

.single.single-post section.compl1.cmpll .complnc.cmppl .complncinner p {
	padding-left: 0px;
}

header#hdr .main-nav .header-action a.goog-te-menu-value span {
	font-size: 13px;
}

form#login_form .row.loginfrm {
	background: #fff;
	padding: 30px 20px;
	border: 4px double #d19f66;
	width: 55%;
	margin: 0 auto;
	-webkit-box-shadow: 3px 3px 30px -20px #333;
	box-shadow: 3px 3px 30px -20px #333;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

form#login_form .row.loginfrm input {
	margin-bottom: 10px;
}

form#login_form .row.loginfrm .centbtn {
	text-align: center;
}

form#login_form ul.form-list-1 {
	margin: 0;
	padding: 0;
	text-align: center;
}

form#login_form ul.form-list-1 li {
	list-style: none;
	display: inline-block;
	margin-bottom: 10px;
}

ul.form-list-1.frgbtn {
	margin-top: 10px !important;
}

form#login_form ul.form-list-1 li a {
	background: #333;
	color: #fff;
	padding: 8px 22px;
	display: block;
	border-radius: 5px;
}

.row.bacfrgt {
	background: #0b2a4e;
	padding: 10px;
	margin: 0px;
}

form#login_form .row.loginfrm .plrg {
	padding-left: 0px;
	padding-right: 0px;
}

.registerform {
	background: #fff;
	padding: 30px 20px;
	border: 4px double #d19f66;
	width: 55%;
	margin: 0 auto;
	-webkit-box-shadow: 3px 3px 30px -20px #333;
	box-shadow: 3px 3px 30px -20px #333;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.registerform .button-new {
	width: auto;
	color: #fff;
	padding: 0 40px;
	height: auto;
	line-height: 40px;
	min-width: auto;
	border: 0;
	background: #05497a;
	transition: all .5s ease-in-out 0s;
	-webkit-transition: all .5s ease-in-out 0s;
	display: inline-block;
	margin: 10px 0;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	text-transform: capitalize;
}

.registerform .button-new:hover, .registerform .button-new:focus {
	color: #fff;
	background: #473413;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

.registerform .form-row > .col, .form-row > [class*=col-] {
	padding-left: 10px;
	padding-right: 10px;
}

.row.bacfrgt ul {
	margin: 0;
	padding: 0;
}

.registerform .centbtn {
	text-align: center;
}

.registerform .centbtn button#sp_qc_submit {
	margin: 0 auto;
}

.registerform button#sp_qc_submit {
	width: auto;
	color: #fff;
	padding: 0 40px;
	height: auto;
	line-height: 40px;
	min-width: auto;
	border: 0;
	background: #05497a;
	transition: all .5s ease-in-out 0s;
	-webkit-transition: all .5s ease-in-out 0s;
	display: inline-block;
	margin: 10px 0;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	text-transform: capitalize;
}

.registerform button#sp_qc_submit:hover, .registerform button#sp_qc_submit:focus {
	color: #fff;
	background: #473413;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

.registerform ul.form-list-1 {
	margin: 0;
	padding: 0;
	text-align: center;
}

.registerform ul.form-list-1 li {
	list-style: none;
	display: inline-block;
	margin-bottom: 10px;
}

ul.form-list-1.frgbtn {
	margin-top: 10px !important;
}

.registerform ul.form-list-1 li a {
	background: #333;
	color: #fff;
	padding: 8px 22px;
	display: block;
	border-radius: 5px;
}

.registerform ul li {
	list-style: none;
	display: inline-block;
	padding-right: 10px;
}

.row.bacfrgt ul li a {
	color: #fff;
}

.profilepg {
	background: #fff;
	padding: 20px;
}

.profilepg input.form-control {
	background: #fff;
}

label#jform_spacer-lbl {
	font-size: 24px;
}

.page-template.page-template-student-page section.compl1.cmpll a {
	font-weight: 700;
	color: #0b2a4e;
}

.row.loginfrm .button-new {
	width: auto;
	color: #fff;
	padding: 0 40px;
	height: auto;
	line-height: 40px;
	min-width: auto;
	border: 0;
	background: #05497a;
	transition: all .5s ease-in-out 0s;
	-webkit-transition: all .5s ease-in-out 0s;
	display: inline-block;
	margin: 10px 0;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	text-transform: capitalize;
}

.row.loginfrm .button-new:hover, .row.loginfrm .button-new:focus {
	color: #fff;
	background: #473413;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

.userinfo table tbody tr td:first-child {
	font-weight: 700;
}

.userinfo table tbody tr td {
	width: 49%;
	float: left;
	margin: 1px;
	padding: 13px;
	background-color: #e8e8e8;
}

.userinfo table {
	width: 100%;
}

section.our_services.common-sec .form-contact.form-side-outer .form-group {
	margin-bottom: 30px;
}

.grn .complncinner p {
	padding-left: 0px !important;
}

.pdff a {
	color: #fff;
	font-size: 12px;
}

section.vdo-sec span.vdo-box-title:before {
	content: "";
	font-family: "FontAwesome";
	padding-right: 10px;
	color: #08c;
	margin-left: -20px;
}

section.vdo-sec span.vdo-box-title {
	padding-left: 20px;
	padding-top: 10px;
	color: #0b2a4e;
}

section.vdo-sec i.fa.fa-play-circle {
	display: none;
}

section.compl.genr .complnc .complncinner .desc p:before {
	display: none;
}

section.compl.genr .complnc .complncinner .desc p a {
	padding-left: 0px;
}

.wl_video_testimonials_new .video1.video_col .overlay i.fa.fa-play {
	display: none;
}

.wl_video_testimonials_new .video1.video_col h4 {
	padding-left: 20px;
	padding-top: 10px;
}

.wl_video_testimonials_new .video1.video_col h4:before {
	content: "";
	font-family: "FontAwesome";
	padding-right: 4px;
	color: #0b2a4e;
	margin-left: -20px;
}

@media only screen and (max-width: 991px) {
	.banner_visa_main {
		padding: 30px 20px 30px 20px !important;
		background-image: none;
		background: #000 !important;
	}
	
	.one_visa_text {
		padding: 0 0 0 0px !important;
		border-left: 0px !important;
	}
	
	.detail_prise {
		margin-bottom: 20px !important;
	}
	
	section.pricing-detail {
		padding: 30px 0 !important;
	}
	
	.timeline_main_about {
		padding: 30px 10px !important;
	}
	
	.fluid-block {
		padding-block: clamp(30px, 18vw, 50px);
	}
	
	p.dislink.right_align_menu {
		text-align: center !important;
	}
	
	.copy_right p {
		text-align: center !important;
	}
	
	.conslimg {
		float: left;
		padding-left: 0px;
		padding-bottom: 20px;
		width: 100%;
	}
	
	section.gallerysp {
		padding: 50px 15px;
	}
	
	.banner_visa_main.nitro-lazy {
		background-image: none !important;
	}
}

@media (min-width: 992px) {
	.practice-areas .col-wrapper .title > * {
		font-size: clamp(1rem, 2vw, 24px) !important;
	}
	
	.padding-right {
		padding-right: 0;
	}
	
	.padding-left {
		padding-left: 0;
	}
	
	header div#navbarNav ul li:hover .dropdown-menu {
		transform: scaleY(1) !important;
		-webkit-transform: scaleY(1);
		-ms-transform: scaleY(1);
		padding: 0px;
	}
	
	header .navbar-expand-lg .navbar-nav .dropdown-menu {
		position: absolute;
		float: left;
		left: 0px;
		right: 0px;
		width: 200px;
	}
	
	header div#navbarNav ul li {
		position: relative;
	}
	
	ul.dropdown-menu li a {
		color: #000;
		width: 100%;
		float: none;
		padding: 10px 15px;
		display: inline-block;
		font-size: 14px;
	}
	
	.nav-list > .active > a, .nav-list > .active > a:hover, .dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover, .nav-pills > .active > a, .nav-pills > .active > a:hover, .btn-primary {
		background: #0b2a4e;
	}
	
	header .navbar-expand-lg .navbar-nav .dropdown-menu li a:hover {
		color: #fff;
	}
	
	header div#navbarNav ul li > ul.dropdown-menu .menu-item-type-custom:before {
		width: 0;
		height: 0;
		border-top: 5px solid transparent;
		border-left: 7px solid #05497a;
		border-bottom: 5px solid transparent;
		content: "";
		position: absolute;
		right: 10px;
		top: 12px;
	}
	
	.abinf ul.bimmgrt1 li a {
		color: #000;
	}
	
	.complnc.cmpnc .complncinner p {
		padding-left: 0px !important;
	}
	
	ul.dropdown-menu li > ul.dropdown-menu.nav-child.unstyled.small {
		display: none;
		position: absolute;
		left: 100%;
		top: 0px;
		z-index: 9999;
	}
	
	header div#navbarNav ul li:hover > ul.dropdown-menu {
		display: block;
	}
}

@media only screen and (max-width: 575px) {
	.page-id-37413 .gallerysp h4 {
		font-size: 16px;
	}
	
	header#hdr .main-nav .mobile_ph a.head-call {
		display: block !important;
		margin-right: 0px;
	}
	
	.mobile_ph a.head-call {
		display: block !important;
	}
	
	.mobile_ph {
		margin-left: 20px;
		display: block !important;
	}
	
	.mobile_col_info {
		display: flex;
	}
	
	.audioplayer audio {
		width: 100%;
	}
	
	.single.single-post img.size-full {
		width: 100%;
		object-fit: contain;
	}
	
	.heading_section h2 {
		padding-bottom: 12px !important;
	}
	
	.single.single-post .news-testi-sec.nswts {
		padding-top: 40px;
	}
	
	section.compl1.cmpll .row.cmapr ul.addrs li a {
		color: #fff;
		word-break: break-all;
	}
	
	.row.cmapr1 {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	
	.row.cmapr1 .col-lg-9 {
		padding-left: 0px;
		padding-top: 20px;
	}
	
	.row.cmapr1 .conslimg {
		padding-top: 30px;
	}
	
	section.sectitle h2, section.sectitle h1 {
		font-size: 24px;
		line-height: 26px;
		margin-bottom: 0;
	}
	
	h4 {
		font-size: 18px;
		line-height: 30px;
	}
	
	.pagination ul li a {
		padding: 7px 10px;
	}
	
	section.abtforum .right_side_form.video_form.clearfix textarea.form-control {
		max-height: 100px;
		min-height: 100px;
	}
	
	.partners-new .col-md-9 {
		padding: 20px 30px;
	}
	
	header#hdr .main-nav .col-lg-3 {
		padding-right: 15px !important;
	}
	
	header#hdr .main-nav ul.d-flex.header_social_icon {
		padding-top: 10px;
	}
	
	header#hdr .main-nav {
		text-align: center;
	}
	
	header#hdr .main-nav .header-action {
		display: flex;
		justify-content: center !important;
		padding-top: 10px;
	}
	
	header#hdr .main-nav a.head-call {
		display: none;
	}
	
	header#hdr .main-nav .navbar.navbar-expand-lg {
		padding: 15px 0;
		margin-top: -42px;
	}
	
	header#hdr .main-nav .navbar.navbar-expand-lg button.navbar-toggler i {
		color: #fff;
	}
	
	header#hdr .main-nav .navbar.navbar-expand-lg button:focus {
		outline: 0px;
		border: 0px;
	}
	
	header#hdr .main-nav nav.navbar.navbar-expand-lg {
		width: 100%;
	}
	
	header#hdr .main-nav ul.nav.navbar-nav {
		width: 100%;
		background: rgba(0, 0, 0, 59%);
		padding: 20px;
	}
	
	header#hdr .main-nav ul.nav.navbar-nav li a {
		font-size: 16px;
		line-height: 30px;
	}
	
	header#hdr .main-nav ul.nav.navbar-nav li {
		padding: 10px 10px;
		border-bottom: 1px dashed #fff;
	}
	
	header#hdr .main-nav ul.nav.navbar-nav li:last-child {
		border-bottom: 0px;
	}
	
	section.our_client.common-sec ul.our_client_section {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	section.our_client.common-sec ul.our_client_section li {
		flex-basis: 15%;
		display: flex;
		flex-direction: column;
		margin: 10px;
	}
	
	section.our_client.common-sec {
		text-align: center;
	}
	
	.video_section_sec .vdo-box img, .vdo-box img {
		width: 100%;
	}
	
	section.copy_right p.dislink.right_align_menu {
		text-align: center !important;
	}
	
	section.copy_right p {
		text-align: center !important;
		padding: 2px;
		font-size: 14px;
	}
	
	section#banner .carousel-caption .custom ul {
		display: flex;
		flex-wrap: wrap;
	}
	
	section#banner .carousel-caption .custom h1 {
		font-size: 28px;
		line-height: 38px;
	}
	
	section#banner .carousel-caption .custom ul li p {
		font-size: 14px;
		line-height: 24px;
	}
	
	section.our_client.common-sec ul.our_client_section li a img {
		height: 14px;
	}
	
	section#banner .carousel-caption .custom ul li {
		display: flex;
		flex-basis: 100%;
		flex-direction: column;
		margin-bottom: 20px;
	}
	
	header#hdr {
		position: relative;
		background: #000;
	}
	
	section#banner .carousel-item img {
		width: 100%;
		height: 250px;
		object-fit: cover;
		object-position: top;
	}
	
	.heading_section h2 {
		font-size: 22px;
		line-height: 32px;
	}
	
	.video-con-header h4 {
		font-size: 16px;
	}
	
	.heading_white h2 {
		font-size: 22px;
		line-height: 32px;
	}
	
	.awarded_sec {
		padding: 40px 0px;
	}
	
	section.awarded_sec.common-sec ul.d-flex li {
		flex-basis: 100% !important;
	}
	
	section.awarded_sec.common-sec ul.d-flex {
		margin: 0;
		padding: 0px;
	}
	
	section.awarded_sec.common-sec ul.d-flex li img {
		height: 30px;
	}
	
	.bottom-border {
		font-size: 24px;
	}
	
	section.testimonials-sec {
		text-align: center;
	}
	
	.video-con-header img {
		width: 30px;
	}
	
	.news_video .left_side_news {
		border-right: 0px;
		padding-right: 0px;
	}
	
	section.awarded_sec.common-sec ul.d-flex {
		display: flex;
		flex-wrap: wrap;
	}
	
	section.awarded_sec.common-sec ul.d-flex li {
		display: flex;
		flex-basis: calc(100% / 3);
		margin-bottom: 25px;
		justify-content: center;
	}
	
	section.awarded_sec.common-sec h2 {
		padding-bottom: 20px;
	}
	
	section.our_services.common-sec .form-contact.form-side-outer iframe {
		transform: scale(.6);
	}
	
	section.aboutimmg .abtext {
		width: 100%;
	}
	
	h2 {
		font-size: 28px;
		line-height: 38px;
	}
	
	.common-btn {
		font-size: 14px;
	}
	
	section.information .abinf h3 {
		font-size: 18px;
		line-height: 28px;
	}
	
	.news-testi-sec.nswts .news-testi-left {
		padding: 10px;
	}
	
	.top_sec_heading.d-flex {
		flex-wrap: wrap;
		justify-content: center;
		display: flex;
		flex-direction: column;
	}
	
	.top_sec_heading.d-flex .heading_section {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	
	.innner-vid-sec-main.invdeo .wl_video_testimonials_new li {
		width: 100%;
	}
	
	.innner-vid-sec-main.invdeo .wl_video_testimonials_new ul li .overlay i {
		top: 84px;
	}
	
	.right_side_form.video_form .g-recaptcha {
		transform: scale(.6);
	}
	
	header#hdr .main-nav ul.nav.navbar-nav li a {
		font-size: 14px;
		line-height: 28px;
	}
	
	.news-testi-sec.nswts .news-testi-left {
		margin-bottom: 30px;
	}
	
	.prtch .partners-new .col-lg-9 {
		padding: 20px 30px;
	}
	
	section.martin .abinf {
		padding: 30px 20px;
		max-width: 100%;
	}
	
	section.ofcounsel .abtext {
		width: 100%;
	}
	
	h1 {
		font-size: 28px;
		line-height: 38px;
	}
	
	section.heln {
		padding: 40px 0px;
	}
	
	section.histry .abtext {
		width: 100%;
	}
	
	.wildserv .wildservinner {
		flex-basis: calc(100%);
	}
	
	section.servcspage h2, section.wilservweing h2 {
		font-size: 18px;
		line-height: 28px;
	}
	
	section.servcspage h2 br {
		display: none;
	}
	
	.abinf {
		padding-top: 20px;
	}
	
	section.conspract .abtext {
		width: 100%;
	}
	
	.abtext {
		width: 100% !important;
	}
	
	section.invbased .abtext {
		padding-top: 20px;
	}
	
	.innner-vid-sec-main.invdeo .wl_video_testimonials_new li .video_col a.vdo-box img {
		height: 179px;
		object-fit: cover;
	}
	
	.immvisas .immvisasinner {
		flex-basis: calc(100%);
	}
	
	.complnc .complncinner {
		flex-basis: calc(100%);
	}
	
	section.compl h5 {
		font-size: 20px;
		line-height: 30px;
		width: 90%;
	}
	
	section.atriclpg .artcpg .artcpginner {
		flex-basis: 100%;
	}
	
	section.compl h5 {
		font-size: 18px;
		line-height: 30px;
		width: 100%;
	}
	
	.cntfrmp .cntfrmpinner {
		flex-basis: 100% !important;
	}
	
	.news-testi-sec.nswts {
		padding-top: 0px;
	}
	
	/* section.partsect {
	padding-bottom: 0px !important;
} */
	.vidglrpg .vidglrpginner {
		flex-basis: calc(100%);
	}
	
	form#login_form .row.loginfrm, .registerform {
		width: 100%;
	}
	
	div#google_translate_element {
		margin-bottom: 10px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	form#login_form .row.loginfrm, .registerform {
		width: 100%;
	}
	
	.page-id-37413 .gallerysp h4 {
		font-size: 16px;
	}
	
	.audioplayer audio {
		width: 100%;
	}
	
	.vidglrpg .vidglrpginner {
		flex-basis: calc(88% / 2);
	}
	
	.single.single-post .news-testi-sec.nswts {
		padding-top: 40px;
	}
	
	.cntfrmp .cntfrmpinner {
		width: 100% !important;
	}
	
	section.partsect {
		padding-bottom: 0px !important;
	}
	
	.news-testi-sec.nswts {
		padding-top: 50px;
	}
	
	.cntfrmp .cntfrmpinner {
		flex-basis: 100% !important;
	}
	
	.innner-vid-sec-main.invdeo .wl_video_testimonials_new li:nth-child(3), .innner-vid-sec-main.invdeo .wl_video_testimonials_new li:nth-child(6) {
		margin-right: 15px !important;
	}
	
	.innner-vid-sec-main.invdeo .wl_video_testimonials_new li {
		width: 45%;
	}
	
	section.blpost1 .info h3 {
		font-size: 14px;
		line-height: 24px;
	}
	
	.pagination ul li a {
		padding: 8px 10px;
	}
	
	.partners-new .col-md-9 {
		padding: 20px 30px;
	}
	
	.innner-vid-sec-main.invdeo .wl_video_testimonials_new ul li .overlay i {
		top: 38px;
	}
	
	section.atriclpg .artcpg .artcpginner {
		flex-basis: 100%;
	}
	
	.complnc .complncinner {
		flex-basis: calc(91% / 2);
	}
	
	.abtext {
		width: 100% !important;
	}
	
	.abinf {
		padding-top: 20px;
	}
	
	h2 {
		font-size: 32px;
		line-height: 42px;
	}
	
	section.ofcounsel .abtext {
		width: 100%;
	}
	
	.news-testi-left h2, .top_sec_heading h2 {
		font-size: 28px;
		line-height: 38px;
	}
	
	section.aboutimmg .abtext {
		width: 80%;
	}
	
	header#hdr .main-nav ul.d-flex.header_social_icon {
		padding-top: 10px;
	}
	
	header#hdr .main-nav {
		text-align: center;
	}
	
	header#hdr .main-nav .header-action {
		display: flex;
		justify-content: center !important;
		padding-top: 10px;
	}
	
	header#hdr .main-nav a.head-call {
		display: none;
	}
	
	header#hdr .main-nav .navbar.navbar-expand-lg {
		padding: 15px 0;
		margin-top: -42px;
	}
	
	header#hdr .main-nav .navbar.navbar-expand-lg button.navbar-toggler i {
		color: #fff;
	}
	
	header#hdr .main-nav .navbar.navbar-expand-lg button:focus {
		outline: 0px;
		border: 0px;
	}
	
	header#hdr .main-nav nav.navbar.navbar-expand-lg {
		width: 100%;
	}
	
	header#hdr .main-nav ul.nav.navbar-nav {
		width: 100%;
		background: rgba(0, 0, 0, 59%);
		padding: 20px;
	}
	
	header#hdr .main-nav ul.nav.navbar-nav li a {
		font-size: 16px;
		line-height: 30px;
	}
	
	header#hdr .main-nav ul.nav.navbar-nav li {
		padding: 10px 10px;
		border-bottom: 1px dashed #fff;
	}
	
	header#hdr .main-nav ul.nav.navbar-nav li:last-child {
		border-bottom: 0px;
	}
	
	section.our_client.common-sec ul.our_client_section {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	section.our_client.common-sec ul.our_client_section li {
		flex-basis: 15%;
		display: flex;
		flex-direction: column;
		margin: 10px;
	}
	
	section.our_client.common-sec {
		text-align: center;
	}
	
	.video_section_sec .vdo-box img, .vdo-box img {
		width: 100%;
	}
	
	section.copy_right p.dislink.right_align_menu {
		text-align: center !important;
	}
	
	section.copy_right p {
		text-align: center !important;
		padding: 2px;
		font-size: 14px;
	}
	
	section#banner .carousel-caption .custom ul {
		display: flex;
		flex-wrap: wrap;
	}
	
	section#banner .carousel-caption .custom h1 {
		font-size: 28px;
		line-height: 38px;
	}
	
	section#banner .carousel-caption .custom ul li p {
		font-size: 14px;
		line-height: 24px;
	}
	
	section.our_client.common-sec ul.our_client_section li a img {
		height: 22px;
	}
	
	section#banner .carousel-caption .custom ul li {
		display: flex;
		flex-basis: 50%;
		flex-direction: column;
		margin-bottom: 20px;
	}
	
	header#hdr {
		position: relative;
		background: #000;
	}
	
	section#banner .carousel-item img {
		width: 100%;
		height: 250px;
		object-fit: cover;
	}
	
	.heading_section h2 {
		font-size: 28px;
		line-height: 38px;
	}
	
	.video-con-header h4 {
		font-size: 16px;
	}
	
	.video-con-header img {
		width: 30px;
	}
	
	.news_video .left_side_news {
		border-right: 0px;
		padding-right: 0px;
	}
	
	section.awarded_sec.common-sec ul.d-flex {
		display: flex;
		flex-wrap: wrap;
	}
	
	section.awarded_sec.common-sec ul.d-flex li {
		display: flex;
		flex-basis: calc(100% / 3);
		margin-bottom: 25px;
		justify-content: center;
	}
	
	section.awarded_sec.common-sec h2 {
		padding-bottom: 20px;
	}
	
	.news-testi-sec.nswts .news-testi-left {
		margin-bottom: 30px;
	}
	
	.prtch .partners-new .col-lg-9 {
		padding: 20px 30px;
	}
	
	section.martin .abinf {
		padding: 50px 30px;
		max-width: 100%;
	}
	
	section.histry .abtext {
		width: 100%;
	}
	
	.wildserv .wildservinner {
		flex-basis: calc(92% / 2);
	}
	
	section.servcspage h2, section.wilservweing h2 {
		font-size: 18px;
		line-height: 28px;
	}
	
	section.conspract .abtext {
		width: 100%;
	}
	
	section.invbased .abtext {
		padding-top: 20px;
	}
	
	.immvisas .immvisasinner {
		flex-basis: calc(100%);
	}
	
	section.compl h5 {
		font-size: 22px;
		line-height: 32px;
	}
}

@media only screen and (min-width: 768px) {
	.single.single-post p img {
		float: left;
		padding-right: 30px;
		padding-bottom: 10px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	form#login_form .row.loginfrm, .registerform {
		width: 80%;
	}
	
	.page-id-37413 .gallerysp h4 {
		font-size: 20px;
		line-height: 30px;
	}
	
	.vidglrpg .vidglrpginner {
		flex-basis: calc(91% / 2);
	}
	
	.cntfrmp .cntfrmpinner.cnt2 h3 {
		font-size: 24px;
		line-height: 34px;
	}
	
	.cntfrmp .cntfrmpinner.cnt1 {
		flex-basis: 58%;
	}
	
	.innner-vid-sec-main.invdeo .wl_video_testimonials_new ul li .overlay i {
		top: 24px;
	}
	
	.innner-vid-sec-main.invdeo .wl_video_testimonials_new li .video_col h4 {
		font-size: 12px;
	}
	
	section.blpost1 .info h3 {
		font-size: 14px;
		line-height: 24px;
	}
	
	.pagination ul li a {
		padding: 8px 10px;
	}
	
	.partners-new .col-md-9 {
		padding: 20px 30px;
	}
	
	.immvisas .immvisasinner {
		flex-basis: calc(93% / 2);
	}
	
	section.invbased .abtext {
		padding-top: 20px;
	}
	
	.abtext {
		width: 100% !important;
	}
	
	section.conspract .abtext {
		width: 80%;
	}
	
	.abinf {
		padding-top: 20px;
	}
	
	.wildserv .wildservinner {
		flex-basis: calc(93% / 2);
	}
	
	section.servcspage h2, section.wilservweing h2 {
		font-size: 18px;
		line-height: 28px;
	}
	
	section.histry .abtext {
		width: 80%;
	}
	
	.news-testi-left h2, .top_sec_heading h2 {
		font-size: 28px;
		line-height: 38px;
	}
	
	header#hdr .main-nav {
		text-align: center;
	}
	
	header#hdr .main-nav .header-action {
		display: flex;
		justify-content: center !important;
	}
	
	header#hdr .main-nav a.head-call {
		display: none;
	}
	
	header#hdr .main-nav .navbar.navbar-expand-lg {
		padding: 15px 0;
		margin-top: -42px;
	}
	
	header#hdr .main-nav .navbar.navbar-expand-lg button.navbar-toggler i {
		color: #fff;
	}
	
	header#hdr .main-nav .navbar.navbar-expand-lg button:focus {
		outline: 0px;
		border: 0px;
	}
	
	header#hdr .main-nav nav.navbar.navbar-expand-lg {
		width: 100%;
	}
	
	header#hdr .main-nav ul.nav.navbar-nav {
		width: 100%;
		background: rgba(0, 0, 0, 59%);
		padding: 20px;
	}
	
	header#hdr .main-nav ul.nav.navbar-nav li a {
		font-size: 16px;
		line-height: 30px;
	}
	
	header#hdr .main-nav ul.nav.navbar-nav li {
		padding: 10px 10px;
		border-bottom: 1px dashed #fff;
	}
	
	header#hdr .main-nav ul.nav.navbar-nav li:last-child {
		border-bottom: 0px;
	}
	
	section.our_client.common-sec ul.our_client_section {
		display: flex;
		flex-wrap: wrap;
	}
	
	section.our_client.common-sec ul.our_client_section li {
		flex-basis: 24%;
		display: flex;
		flex-direction: column;
		margin-bottom: 30px;
	}
	
	section#banner .carousel-caption .custom ul {
		display: flex;
		flex-wrap: wrap;
	}
	
	section#banner .carousel-caption .custom ul li {
		display: flex;
		flex-basis: 50%;
		flex-direction: column;
		margin-bottom: 20px;
	}
	
	header#hdr {
		position: relative;
		background: #000;
	}
	
	section#banner .carousel-item img {
		width: 100%;
		height: 500px;
		object-fit: cover;
	}
	
	.heading_section h2 {
		font-size: 28px;
		line-height: 38px;
	}
	
	.video-con-header h4 {
		font-size: 16px;
	}
	
	.video-con-header img {
		width: 30px;
	}
	
	.news_video .left_side_news {
		border-right: 0px;
		padding-right: 0px;
	}
	
	section.awarded_sec.common-sec ul.d-flex {
		display: flex;
		flex-wrap: wrap;
	}
	
	section.awarded_sec.common-sec ul.d-flex li {
		display: flex;
		flex-basis: calc(100% / 3);
		margin-bottom: 25px;
		justify-content: center;
	}
	
	section.awarded_sec.common-sec h2 {
		padding-bottom: 20px;
	}
	
	.news-testi-sec.nswts .news-testi-left {
		margin-bottom: 30px;
	}
	
	.prtch .partners-new .col-lg-9 {
		padding: 20px 30px;
	}
	
	section.ofcounsel .abtext {
		width: 80%;
	}
	
	section.martin .abinf {
		padding: 50px 30px;
		max-width: 100%;
	}
	
	section.atriclpg .artcpg .artcpginner {
		flex-basis: calc(94% / 2);
	}
	
	.complnc .complncinner {
		flex-basis: calc(93% / 2);
	}
	
	.innner-vid-sec-main.invdeo .wl_video_testimonials_new li {
		width: 29%;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	form#login_form .row.loginfrm, .registerform {
		width: 75%;
	}
	
	ul.d-flex.header_social_icon {
		display: none !important;
	}
	
	.complnc .complncinner {
		flex-basis: calc(91% / 3);
	}
	
	section.atriclpg .artcpg .artcpginner {
		flex-basis: calc(91% / 4);
	}
	
	.immvisas .immvisasinner {
		flex-basis: calc(95% / 2);
	}
	
	h2 {
		font-size: 32px;
		line-height: 42px;
	}
	
	section.partsect h2 a {
		font-size: 28px;
	}
	
	section.partsect p {
		font-size: 16px;
		line-height: 26px;
	}
	
	.news-testi-left h2, .top_sec_heading h2 {
		font-size: 28px;
		line-height: 38px;
	}
	
	header .navbar-nav li a {
		font-size: 13px;
		padding: 10px 3px;
	}
	
	.head-call {
		font-size: 14px;
	}
	
	.main-nav .header-action a.common-btn {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	section#banner .carousel-caption .custom h1 {
		font-size: 35px;
		line-height: 45px;
	}
	
	section.our_services.common-sec .form-contact.form-side-outer iframe {
		transform: scale(.8);
	}
	
	.innner-vid-sec-main.invdeo .wl_video_testimonials_new li {
		width: 30.3%;
	}
	
	header div#navbarNav ul li ul.sub-menu.jumbo_menu li ul.sub-menu li a {
		padding: 5px 0 5px 26px !important;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {
	header .navbar-nav li a {
		padding: 10px 6px !important;
	}
	
	header div#navbarNav ul li ul.sub-menu.jumbo_menu li ul.sub-menu li a {
		padding: 5px 0 5px 26px !important;
	}
	
	div#navbarNav ul#menu-main-menu > li.menu-item-has-children > a {
		padding-right: 20px !important;
	}
}

.mobile_ph {
	display: none;
}

@media only screen and (max-width: 1024px) {
	.mobmenu-right-alignment.mobmenu-panel button.sub-menu-toggle {
		border: 0px;
		background: transparent;
	}
	
	.mobmenu-right-alignment.mobmenu-panel button.sub-menu-toggle span.icon-plus, .mobmenu-right-alignment.mobmenu-panel button.sub-menu-toggle span.icon-minus {
		display: none;
	}
	
	.mobmenu-content #mobmenuright li:hover {
		background: transparent !important;
	}
	
	.mobmenu-content li {
		position: relative;
	}
	
	.mobmenu-content li button.sub-menu-toggle {
		position: absolute;
		top: 6px;
		right: 10px;
	}
	
	.mobmenu-content li button.sub-menu-toggle:focus {
		outline: 0px;
	}
	
	.main-nav nav.navbar.navbar-expand-lg {
		display: none;
	}
	
	header#hdr .main-nav .header-action {
		padding-bottom: 0px;
	}
	
	.mob-menu-logo-holder > .headertext span, .mobmenu input.mob-menu-search-field {
		font-size: 14px !important;
		text-align: left;
	}
	
	.mob-menu-header-holder.mobmenu .mob-menu-logo-holder a span {
		width: calc(100% - 40px);
		display: block;
		padding-left: 10px;
		line-height: 1.25;
	}
}

@media only screen and (min-width: 360px) and (max-width: 767px) {
	.mob-menu-logo-holder > .headertext span, .mobmenu input.mob-menu-search-field {
		font-size: 15px !important;
		text-align: left;
	}
}

@media only screen and (max-width: 767px) {
	.thnkpg {
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 50px;
	}
	
	.single.single-post table td {
		width: 100% !important;
		display: block;
	}
	
	.top_sec_heading.d-flex .heading_section {
		margin-bottom: 0px;
	}
	
	header.header.Sticky-fixed {
		border-bottom: 0px;
	}
	
	section.blpost1 .c.text-center .wrap img {
		height: 100%;
		object-fit: contain;
		max-height: 280px;
	}
	
	section.news_video.common-sec .btn_right {
		padding-bottom: 20px;
	}
	
	.heading_section h2 {
		margin-bottom: 20px;
	}
	
	section.news-event_sec.common-sec.text-white .center-btn.text-cent {
		padding-bottom: 30px;
	}
	
	section.common-sec.testimonials-sec.parallaxie h2.text-white:before {
		top: -3px;
		left: 31%;
	}
	
	section.common-sec.testimonials-sec.parallaxie {
		position: relative;
	}
	
	section.common-sec.testimonials-sec.parallaxie:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 65%);
	}
	
	header#hdr .main-nav .col-lg-9 {
		padding-left: 0px;
		padding-right: 0px;
	}
	
	header#hdr .main-nav .header-action .mobile_col_info {
		width: 100%;
		text-align: center;
		margin: 0 auto;
		float: none;
		justify-content: center;
		background: #fff;
		padding: 10px 0px 0px 0px;
	}
	
	header#hdr .main-nav .header-action .mobile_col_info a.head-call {
		color: #000;
		padding-top: 4px;
	}
	
	header#hdr .main-nav .header-action .mobile_col_info div#google_translate_element {
		background: #000;
		box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 69%);
	}
	
	header#hdr .main-nav ul.d-flex.header_social_icon {
		padding-top: 10px;
		width: 100%;
		text-align: center;
		float: none;
		justify-content: center;
		background: #222;
		padding-bottom: 10px;
		margin: 5px auto 0 auto;
		border-top: 1px solid #666;
		border-bottom: 1px solid #666;
	}
	
	header#hdr .main-nav .header-action a.login-text {
		padding-top: 6px;
	}
	
	section.common-sec.testimonials-inner.parallaxie {
		text-align: center;
	}
	
	section.common-sec.testimonials-inner.parallaxie .heading_section h2:before {
		left: 24%;
		top: -4px;
	}
	
	header#hdr .header-action a.login-text, header#hdr .header-action a.login-text span {
		font-size: 12px;
		text-align: left;
	}
	
	header.header a.common-btn {
		padding: 2px 18px;
	}
}

@media (min-width: 992px) {
	.menu-item-56:hover .dropdown-menu {
		display: grid !important;
		grid-template-columns: 1fr 1fr;
		min-width: 300px;
		left: -50px !important;
	}
	
	.menu-item-56 .dropdown-menu li a {
		text-transform: uppercase !important;
	}
}

#banner .carousel-item img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	object-fit: cover;
}

#banner .carousel-item .text {
	color: #fff;
	display: grid;
	min-height: 70vh;
	place-content: end center;
	padding-block-end: 20px;
}

#banner .carousel-item.slide-1 .text {
	place-content: center end;
}

#banner .carousel-item .text > *:not(.action) {
	font-size: clamp(24px, 3vw, 48px);
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
	text-shadow: 2px 2px #000;
}

#banner [class^="carousel-control"] span {
	filter: drop-shadow(1px 1px 1px #000);
	scale: 2;
}

.block {
	padding-block: clamp(30px, 18vw, 50px);
}

.heading_section.center {
	max-width: max-content;
	margin-inline: auto;
}

.bg-gray-300 {
	background-color: #f1f3f4;
}

.header_social_icon {
	margin-block-start: 24px;
}

.header_social_icon li a {
	color: #fff;
	background-color: #0b2a4e;
	min-width: 50px;
	display: inline-grid;
	place-items: center;
	border-radius: 50%;
	aspect-ratio: 1;
	transition: ease all 200ms;
}

.header_social_icon {
	justify-content: left;
	gap: 9px;
}

.header_social_icon li {
	width: auto !important;
}

.header_social_icon li {
	cursor: pointer;
}

.header_social_icon li a:hover {
	scale: 1.15;
}

.practice-areas .row {
	row-gap: 28px;
}

.practice-areas .col-wrapper {
	text-align: center;
	display: block;
	background-color: #0b2a4e;
	color: #fff;
	padding: 1em;
	height: 100%;
}

.practice-areas .col-wrapper img {
	margin-bottom: 15px;
	max-width: 40px;
	filter: invert(1);
}

.main-nav .header_social_icon {
	margin-top: 0 !important;
	margin-inline-start: 15px;
	gap: 4px;
}

.main-nav .header_social_icon li a {
	min-width: 35px !important;
	margin-left: 4px !important;
}

.main-nav .header_social_icon li a:hover {
	background-color: #000;
}

#banner .carousel-item.half .text {
	place-content: center;
	padding-inline: 8rem clamp(15px, 3.5vw, 30px);
}

.practice-areas .col-wrapper .title > * {
	font-size: 24px;
}

.footer-banner {
	padding-block: 50px !important;
}

.footer-banner .carousel-caption * {
	color: #0b2a4e !important;
}

:is(.testimonials-sec.parallaxie,
    .news-event_sec) .heading_section h2::before {
	background-color: #fff;
}

header .main-nav .header_social_icon li a {
	background-color: #fff !important;
	color: #0b2a4e;
}

.sub-menu {
	position: absolute;
	top: 100%;
	left: -30px;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 10rem;
	padding: .5rem 0;
	margin: .125rem 0 0;
	font-size: 1rem;
	color: #212529;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: .25rem;
}

.menu-item-has-children:hover > .sub-menu {
	display: block;
	padding-block: 0;
}

.menu-item-has-children .sub-menu a {
	color: #000;
	width: 100%;
	float: none;
	padding: 10px 15px;
	display: inline-block;
	white-space: nowrap;
}

.menu-item-has-children .sub-menu a:hover {
	background-color: #0b2a4e;
	color: #fff;
}

.menu-item-has-children .sub-menu .sub-menu {
	left: 100%;
	top: 0;
}

body:not(.home,
    .page-id-37669) :is(.information,
    .news-testi-sec.nswts,
    .abtforum) {
	display: none;
}

.page-id-37669 :is(.news-testi-sec.nswts,
    .abtforum) {
	display: none;
}

.more-list .sub-menu {
	left: auto;
	right: calc(100% - 50px);
}

.more-list .sub-menu .sub-menu {
	left: auto;
	right: calc(100%);
}

.prtch .partners-new a.common-btn {
	display: block;
	max-width: max-content;
	margin-top: 15px;
}

.partners-new a.float-left {
	margin-bottom: 30px;
}

.paddrow {
	padding-block: 50px;
}

header .lang {
	display: grid;
	width: 25px;
	aspect-ratio: 1;
	position: relative;
	place-content: center;
}

header .lang > * {
	grid-area: 1/-1;
	overflow: hidden;
}

header .lang > *:not(i) {
	opacity: 0;
}

header .lang i {
	display: grid;
	place-content: center;
	font-size: clamp(18px, 2vw, 24px);
	color: #fff;
}

header .lang::after {
	content: "Select Language";
	position: absolute;
	display: none;
	font-size: 12px;
	min-width: max-content;
	inset: 100% 0 0 50%;
	translate: -50%;
	pointer-events: none;
	user-select: none;
	height: max-content;
	color: #fff;
	background-color: #282828;
	padding: 2px 8px;
	border-radius: 4px;
	border: .5px solid #ccc;
	z-index: 99;
}

header .lang:hover::after {
	display: block;
}

.partsect .card {
	border-radius: 10px;
	height: 100%;
	overflow: hidden;
	transition: all 500ms cubic-bezier(.145, .84, .144, 1);
}

.partsect .row {
	row-gap: 30px;
	justify-content: center;
}

.partsect .card:hover {
	box-shadow: 0 4px 16px hsla(0, 0%, 0%, 10%);
	translate: 0 -8px;
}

.partsect .card-header {
	padding: 0;
}

.partsect .card-header img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	object-position: top;
}

.partsect .card-text {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-block-end: 15px;
}

.partsect .card-text p {
	margin: 0;
}

.partsect .card-title > * {
	margin: 0;
}

.partsect .card-title a {
	color: #000;
	font-size: 20px;
	font-weight: 600;
	display: block;
}

.partsect .card-title p a {
	color: #0b2a4e;
	font-size: 14px;
}

.partsect.of-counsel .card-header {
	background: transparent;
}

.partsect.of-counsel .card-img img {
	aspect-ratio: 1/.3;
	object-fit: contain;
	padding: 12px;
}

body.page-id-37669 .sectitle + .information {
	display: block !important;
}

p:empty {
	display: none;
}

.wildserv .wildservinner {
	padding: 25px 15px;
}

.wildserv .wildservinner * {
	text-align: center;
}

.wildserv .wildservinner br {
	display: none;
}

.map-info {
	padding-block-end: 0;
	background-color: #0b2a4e;
}

.map-info iframe {
	display: block;
}

.map-info p {
	margin: 0;
}

.office-inner .row > *:first-child {
	padding-inline-end: 2.5rem;
}

.office-inner .col-lg-6 {
	position: relative;
}

.office-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	position: absolute;
	inset: 0;
}

.map-cta {
	padding-block-end: 50px;
}

.map-cta * {
	color: #fff;
}

.map-cta .row > *:not(:last-child) {
	border-inline-end: 1px solid #ccc;
}

.map-cta .col-wrapper {
	text-align: center;
}

.map-cta .col-wrapper .icon {
	width: 60px;
	aspect-ratio: 1;
	display: none;
	place-content: center;
	border: 2px solid #fff;
	border-radius: 50%;
	font-size: 24px;
	margin-inline: auto;
	margin-block-end: 12px;
}

.btn-grids {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.btn-grids > * > * {
	font-size: 18px;
	line-height: 1;
	background-color: #f1f5f9;
	padding: 4px 8px;
	border: 1px solid #cfcfcf;
	border-radius: 4px;
	margin: 0;
}

.btn-grids > * > *:hover {
	background-color: #0b2a4e;
	color: #fff;
	border-color: #0b2a4e;
}

.about-sec {
	background-color: #0b2a4e;
}

.about-sec * {
	color: #fff;
}

.book-inner {
	display: flex !important;
	height: 100%;
	overflow: hidden;
}

.book-inner > *:first-child {
	min-width: 250px;
}

.book-inner iframe {
	height: 100%;
}

.book-inner .video-con {
	padding-bottom: 15px;
}

.book-inner .video-con .video-con-header img {
	max-width: 40px;
}

.book-inner .video-con h4 {
	font-size: 18px;
}

.book-inner .video-con p {
	font-size: 15px;
	line-height: 1.5;
}

.news_section .row * {
	margin: 0 !important;
}

.news_section .row a {
	display: block;
	padding: 15px;
}

.news_section .row a:hover {
	background-color: hsla(212, 75%, 17%, 10%) !important;
}

.news_section .row > *:not(:last-child) a {
	border-bottom: 1px solid #0b2a4e;
}

footer .header_social_icon {
	align-items: center;
	margin: 0;
}

footer .header_social_icon h4 {
	margin-block-end: 0;
	font-size: 18px;
	color: #fff;
	margin-inline-end: 8px;
}

footer .header_social_icon a {
	min-width: 35px;
	font-size: 14px;
	margin-inline-start: 0px;
	background-color: #fff;
}

footer .header_social_icon a svg {
	color: #001833;
}

.review-btns {
	display: flex;
	gap: 8px;
	align-items: center;
}

.review-btns img {
	max-width: 20px;
}

.review-btns a {
	display: flex;
	background-color: #fff;
	border-radius: 4px;
	align-items: center;
	padding-left: 10px;
	overflow: hidden;
}

.review-btns a * {
	transition: 200ms;
}

.review-btns a span {
	padding-inline: 10px;
	padding-block: 4px;
	margin-left: 10px;
	border-left: 1px solid #ccc;
	color: #fff;
	font-size: clamp(.75rem, 1vw, 1rem);
}

.review-btns .google span {
	background-color: #4789f4;
}

.review-btns .yelp span {
	background-color: #f44336;
}

.review-btns a:hover span {
	filter: brightness(.9);
}

@media (max-width: 992px) {
	#banner .carousel-item .text {
		place-content: end center !important;
	}
	
	#banner .carousel-item.slide-1 .text h1 {
		text-shadow: 1px 1px #fff !important;
	}
	
	.office-inner img {
		position: static;
		aspect-ratio: 16/9;
	}
	
	.office-inner .row > *:first-child {
		padding-inline-end: 0;
	}
	
	.fluid-block .row > *:not(.fluid-image) {
		order: 2;
	}
	
	.fluid-block .fluid-image {
		order: 1;
		margin-bottom: 24px;
	}
	
	.fluid-block .fluid-image img {
		border-radius: 10px;
	}
	
	#banner .carousel-item.half .text {
		padding: 24px !important;
		place-content: end center;
	}
	
	#banner .carousel-item .text > *:not(.action) {
		color: #fff !important;
		text-shadow: 2px 2px #000;
		margin: 0;
		text-align: center;
	}
	
	#banner .row > * {
		position: static !important;
	}
	
	section#banner .carousel-item img {
		height: 100% !important;
	}
}

@media (max-width: 767.95px) {
	.book-inner {
		flex-direction: column;
	}
	
	.header-action {
		row-gap: 12px;
	}
}

@media (max-width: 575.95px) {
	#banner .carousel-item .text {
		min-height: 50vh;
	}
	
	#banner [class^="carousel-control"] span {
		scale: 1.25;
	}
	
	.sbi-critical-notice {
		scale: .75;
		transform-origin: right;
	}
}

@media (min-width: 992px) {
	.part-horz .card {
		flex-direction: row;
		height: 100%;
	}
	
	.part-horz .card .card-img img {
		max-width: 250px;
		height: 100%;
	}
	
	.part-horz .card .common-btn:hover span {
		color: inherit !important;
	}
	
	.fluid-block {
		padding-block: 0 !important;
	}
	
	.fluid-block .fluid-image {
		position: relative;
		overflow: hidden;
	}
	
	.fluid-block .fluid-image img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.fluid-block .container-fluid .row > *:not(.fluid-image) {
		max-width: 660px;
		padding: clamp(25px, 4vw, 50px);
	}
	
	.fluid-block .container-fluid .row > *:first-child:not(.fluid-image) {
		margin-left: auto;
	}
	
	.fluid-block .row > *:first-child:not(.fluid-image) {
		padding-inline-start: 0 !important;
	}
	
	.fluid-block .row > *:last-child:not(.fluid-image) {
		padding-inline-end: 0 !important;
	}
}

.float-image img {
	float: right;
	margin-left: 1rem;
	margin-bottom: 1rem;
	max-width: 575px;
}

.wildservinner {
	display: block;
}

.wildserv .wildservinner h4 {
	font-size: 20px;
	font-family: "Conv_AGaramondPro-Regular" !important;
	color: #0b2a4e;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	margin-top: 1rem;
}

.wildserv .wildservinner .wildimg {
	max-width: 80px;
	margin-inline: auto;
}

@media (max-width: 991px) {
	.language-section .row .col-lg-3 {
		flex: 0 0 50% !important;
		max-width: 50% !important;
	}
	
	.language-section {
		padding: 35px 0px !important;
	}
	
	.float-image img {
		float: unset;
		max-width: 100%;
		margin-left: 0;
	}
	
	.lang-bx .img img {
		height: 40px !important;
		width: 40px !important;
	}
	
	.language-section .lang-bx h3 {
		font-size: 25px !important;
	}
	
	.language-section .lang-bx {
		padding: 10px !important;
	}
}

.postid-33229 .complnc .complncinner p a {
	padding: 0 !important;
}

.padd-row {
	padding-block: 60px;
}

.padd-row .padd-row {
	padding-block: 0;
}

@media (max-width: 991.95px) {
	.fluid-block .row > *:not(:is(.fluid-image,
            .fluid-content)) {
		order: 2;
	}
	
	.fluid-block :is(.fluid-image,
        .fluid-content) {
		order: 1;
		margin-bottom: 24px;
	}
	
	.fluid-block .fluid-image img {
		border-radius: 10px;
		box-shadow: var(--elevation-3);
	}
}

@media (min-width: 992px) {
	.fluid-block {
		padding-block: 0;
	}
	
	.fluid-block .fluid-image {
		position: relative;
		overflow: hidden;
	}
	
	.fluid-block .fluid-image img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.fluid-block .container-fluid .row > *:not(:is(.fluid-image,
            .fluid-content)) {
		max-width: 660px;
		padding: clamp(25px, 4vw, 50px);
	}
	
	.fluid-block .container-fluid .row > *:first-child:not(:is(.fluid-image,
            .fluid-content)) {
		margin-left: auto;
	}
	
	.fluid-block .row > *:first-child:not(:is(.fluid-image,
            .fluid-content)) {
		padding-inline-start: 1.5rem !important;
	}
	
	.fluid-block .row > *:last-child:not(:is(.fluid-image,
            .fluid-content)) {
		padding-inline-end: 1.5rem !important;
	}
}

.office-sec .card img {
	aspect-ratio: 16/9;
	object-position: bottom;
}

.office-sec .row {
	row-gap: 1.5rem;
}

.office-sec .card {
	border-radius: 4px;
	height: 100%;
	border: 0;
	box-shadow: 0 0 0 1px #ccc;
	border-bottom: 4px solid transparent;
	transition: all 200ms;
}

.office-sec .card:hover {
	border-bottom: 4px solid var(--clr-primary);
}

.office-sec .card-header {
	padding: 0;
}

.office-sec .card-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.office-sec .card-title a {
	font-size: 24px;
	font-weight: bold;
	color: var(--clr-black);
}

.office-sec .card-title a:hover {
	color: var(--clr-primary);
}

ul.styled-list li:not(:last-child) {
	margin-block-end: 1rem;
}

ul.styled-list li :is(b,
    strong) {
	margin-inline-end: 6px;
}

section#banner .carousel-item img {
	object-position: top;
}

.partners-new > .row {
	align-items: start !important;
}

.partners-new img {
	filter: grayscale(1);
}

.sec-101 .container {
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	justify-content: center;
	row-gap: 1.5rem;
}

.sec-101 .container > * {
	margin-inline: .75rem;
	flex: 0 1 max(400px - 1.5rem, calc(100% / 3 - 1.5rem));
}

.sec-101 .container a {
	color: #001833;
	display: block;
	border: 1px solid;
	padding: 1.5em 1em;
	height: 100%;
	display: grid;
	place-items: center;
}

@media (max-width: 1199.95px) {
	.book-inner {
		flex-direction: column;
	}
}

.vdo-sec .vdo-box {
	width: 100%;
	aspect-ratio: 1/.75;
	max-height: 240px;
}

.vdo-sec .vdo-box img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	max-height: 100% !important;
}

.search-results .wildserv .wildservinner .wildimg {
	max-width: 100%;
	max-width: 100%;
}

.search-results .wildserv .wildservinner .wildimg img {
	width: 100%;
	height: auto;
	aspect-ratio: 16/12;
	object-position: top center;
}

.search-results .wildservinner {
	padding: 12px;
}

:is(.posted-on,
    .post-taxonomies) {
	display: none;
}

.search-results .search-content p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

a.amazon-btn:hover img {
	mix-blend-mode: exclusion;
}

section.awards_hounr.block-space .des-text ul {
	list-style: none;
	font-weight: 700;
	padding: 0;
	margin: 0;
}

section.awards_hounr.block-space .des-text ul li {
	font-weight: 700;
}

@media (max-width: 991.95px) {
	.object-h-100-m iframe {
		height: 100% !important;
	}
	
	.bgwild {
		contain: layout;
	}
	
	.bgwild::before {
		content: "";
		position: absolute;
		inset: 0;
		background-color: hsla(0, 0%, 0%, 50%);
	}
	
	/* menu css */
	:root {
		--menu-font: "Open Sans", sans-serif;
		--menu-font-size: min(18px, 5vw);
		--primary-color: #0b2a4e;
		--hovered-color: #103e74;
		--submenu-bg: #030e1b;
		--submenu-border-color: rgba(255, 255, 255, 54%);
		--menu-border-color: rgba(255, 255, 255, 54%);
		--menu-color: #fff;
		--submenu-color: #fff;
		--menu-hovered-color: #fff;
		--toggle-button-color: #fff;
	}
	
	.mobmenu-right-panel .mobmenu-right-bt .mob-cancel-button {
		color: var(--toggle-button-color) !important;
	}
	
	.mobmenu-right-panel .mobmenu-right-bt {
		top: 5px !important;
		right: 5px !important;
	}
	
	.mobmenu-content {
		border-top: 0px solid #fff !important;
	}
	
	.mobmenu-content li {
		padding: 0 !important;
		margin: 0 !important;
	}
	
	#mobmenuright li a, #mobmenuright li a:visited, #mobmenuright .mobmenu-content h2, #mobmenuright .mobmenu-content h3, .mobmenu-left-panel .mobmenu-display-name {
		font-family: var(--menu-font) !important;
		font-weight: 400 !important;
		color: var(--menu-color) !important;
		padding: 6px 20px !important;
		font-size: var(--menu-font-size) !important;
	}
	
	#mobmenuright li {
		border-bottom: 1px solid var(--menu-border-color) !important;
		padding-bottom: 0 !important;
		position: relative !important;
		padding-inline: 0 !important;
	}
	
	#mobmenuright li:last-child {
		border: none !important;
	}
	
	#mobmenuright li button.sub-menu-toggle {
		position: absolute !important;
		right: 0 !important;
		top: 5px !important;
		background: transparent !important;
		border: none !important;
		color: var(--menu-color) !important;
	}
	
	#mobmenuright li button.sub-menu-toggle span.icon-plus {
		display: none !important;
	}
	
	#mobmenuright li button.sub-menu-toggle span.icon-minus {
		display: none !important;
	}
	
	#mobmenuright li .mob-expand-submenu.show-sub {
		top: 6px !important;
	}
	
	#mobmenuright li a, #mobmenuright li a:visited, .show-nav-right .mob-menu-copyright, .show-nav-right .mob-expand-submenu i {
		font-size: var(--menu-font-size) !important;
		color: var(--menu-color) !important;
	}
	
	.mobmenu-content #mobmenuright .sub-menu {
		background: var(--submenu-bg) !important;
	}
	
	.mobmenu-content #mobmenuright li > .sub-menu li {
		padding: 0 !important;
		margin: 0 !important;
		border-bottom: 1px solid var(--submenu-border-color) !important;
	}
	
	.mobmenu-content #mobmenuright .sub-menu a {
		color: var(--submenu-color) !important;
	}
	
	.mobmenu-content #mobmenuright li > .sub-menu li:last-child {
		border: none !important;
		margin: 0 !important;
		padding: 0 !important;
	}
	
	.mobmenu-content #mobmenuright > li a {
		font-size: .98rem !important;
		width: 100% !important;
		white-space: pre-wrap !important;
	}
	
	.sub-menu {
		padding: 0 !important;
	}
	
	.mobmenu-content #mobmenuright > li {
		overflow: hidden !important;
	}
	
	.mobmenu-content #mobmenuright > li > a:hover, .mobmenu-content #mobmenuright li:hover {
		background-color: var(--hovered-color) !important;
	}
	
	.mobmenur-container i {
		color: var(--toggle-button-color) !important;
	}
	
	.mobmenu-panel {
		background-color: var(--primary-color) !important;
	}
	
	#mobmenuright .sub-menu {
		border-radius: 0 !important;
		overflow: hidden;
	}
	
	#mobmenuright li {
		overflow: hidden;
	}
	
	footer .copy_right {
		padding-block: 1.5rem;
	}
	
	.parallaxie .d-flex {
		justify-content: center;
	}
	
	.cntfrmp {
		flex-direction: column !important;
	}
	
	section.partsect {
		padding-block: clamp(30px, 8vw, 60px);
	}
	
	.mobmenu .headertext {
		height: 100%;
		display: flex;
		align-items: center;
	}
	
	.conslimg img {
		width: 100%;
		max-width: 100%;
		aspect-ratio: 16/9;
		object-fit: cover;
		box-shadow: none !important;
	}
}

.genr, section.counsel1 {
	padding-block: clamp(30px, 8vw, 60px) !important;
}

span.error {
	color: #fff;
	background-color: red;
	display: block;
	font-size: 14px;
	color: #fff;
	padding: 4px 8px;
	line-height: 1;
}

/* Mobile Menu */
.mobile-menu {
	z-index: 999999;
}

.mobile-menu-btn {
	background-color: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	padding: 0;
	height: max-content;
}

.line {
	fill: none;
	stroke: #fff;
	stroke-width: 4;
	transition: stroke-dasharray 600ms cubic-bezier(.4, 0, .2, 1), stroke-dashoffset 600ms cubic-bezier(.4, 0, .2, 1);
}

.line1 {
	stroke-dasharray: 60 207;
}

.line2 {
	stroke-dasharray: 60 60;
}

.line3 {
	stroke-dasharray: 60 207;
}

.mobile-menu-btn.active .line1 {
	stroke-dasharray: 90 207;
	stroke-dashoffset: -134;
}

.mobile-menu-btn.active .line2 {
	stroke-dasharray: 1 60;
	stroke-dashoffset: -30;
}

.mobile-menu-btn.active .line3 {
	stroke-dasharray: 90 207;
	stroke-dashoffset: -134;
}

.backdrop {
	background-color: hsla(0, 0%, 0%, 40%);
	position: fixed;
	inset: 0;
	z-index: 99999;
	opacity: 0;
	transition: 700ms;
	pointer-events: none;
}

.backdrop.open {
	opacity: 1;
}

.topbar {
	background-color: #0b2a4e;
	color: #fff;
	position: relative;
	z-index: 999999;
}

.topbar .topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.search-wrapper {
	display: grid;
	grid-template-columns: 150px 60ch;
	place-content: center;
	gap: 1rem;
	padding-block: clamp(30px, 8vw, 60px);
}

.search-wrapper .search-image {
	background-color: #f2f2f2;
	border: 1px solid #ccc;
	padding: 1rem;
}

.search-wrapper .search-image img {
	max-width: 100%;
	height: 100%;
	object-fit: contain;
}

.search-wrapper .search-submit {
	cursor: pointer;
	background-color: #0b2a4e;
	color: #fff;
	font-size: 15px;
	display: inline-block;
	padding: 8px 28px;
	text-transform: capitalize;
	line-height: 1.1;
	border: 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
	font-weight: 600;
	border: 2px solid #0b2a4e;
	border-radius: 3px;
	text-decoration: none;
}

.search-wrapper input[type="search"] {
	border: 1px solid #aaa;
	padding-inline: .5rem;
	min-height: 35.7px;
	outline-color: transparent;
	caret-color: #001833;
}

.search-wrapper input[type="search"]:is(:focus) {
	border-color: #001833;
}

@media (max-width: 991.95px) {
	.search-wrapper {
		display: flex;
		flex-direction: column;
		text-align: center;
		max-width: 60ch;
		margin-inline: auto;
	}
	
	.search-wrapper .search-image {
		max-width: 150px;
		margin-inline: auto;
		margin-block-end: 1.5rem;
	}
	
	.clrins img {
		width: 100%;
		padding: 1rem;
	}
}

body:not(.postid-33229,
    .page-id-37667) .complncinner p::before {
	content: "";
	position: absolute;
	font-family: "FontAwesome";
	font-size: 28px;
	color: #05497a;
}

body:not(.postid-33229 .page-id-37667) .complnc .complncinner p a {
	padding-left: 45px;
}

body:not(.postid-33229 .page-id-37667) .complncinner p:first-of-type {
	font-family: "Open Sans", sans-serif;
	font-size: 17px;
	color: #212529;
	line-height: 26px;
	font-weight: 600;
	width: 100%;
	text-align: left;
	max-width: 100%;
	text-transform: capitalize;
}

.page-template-testimonials .testimninner {
	contain: layout;
}

.page-template-testimonials .testimninner::before {
	content: "";
	font: normal normal normal 7rem/1 FontAwesome;
	position: absolute;
	inset: 1.5rem auto auto 1.5rem;
	z-index: -1;
	opacity: .1;
}

#contact_form .g-recaptcha {
	scale: .75;
	transform-origin: left center;
}

body.menu-visible {
	overflow: hidden;
}

.header-action :is(i.fa.fa-search,
    svg[data-icon="magnifying-glass"]) {
	background: rgba(255, 255, 255, .76);
	width: 34px;
	height: 30px;
	text-align: center;
	line-height: 28px;
	cursor: pointer;
	color: #0b2a4e;
	border-radius: 2px;
	padding: 8px;
	box-sizing: border-box;
}

.header-action .btn.btn-danger i.fa.fa-search {
	background: none;
	color: #fff;
}

p a {
	padding: 0px 2px;
}

.small, small {
	font-size: 70%;
	font-weight: 400;
}

.language-section {
	background-image: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2025/10/best-immigration-law-firm-new-york.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 50px 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background-attachment: fixed;
	min-height: auto;
}

.language-section.nitro-lazy {
	background-image: none !important;
}

.language-section .container {
	position: relative;
	z-index: 77;
}

.language-section::after {
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, .56);
	position: absolute;
	content: "";
	inset: 0;
}

.lang-bx .img img {
	height: 42px;
	width: 42px;
}

.language-section .heading_section h2 {
	color: #fff;
}

.language-section .heading_section h2:before {
	background-color: #fff;
}

.language-section .lang-bx {
	display: flex;
	align-items: center;
	gap: 20px;
	background: #fff;
	padding: 10px;
	box-shadow: rgba(149, 157, 165, .2) 0px 8px 24px;
	border: 1px solid #eee;
	border-radius: 10px;
}

.language-section .row .col-lg-3 {
	flex: 0 0 20%;
	/* Flex item with no growth or shrinkage, set to 20% width */
	max-width: 20%;
}

.language-section .lang-bx h3 {
	margin: 0px;
	font-size: 20px;
	text-transform: capitalize;
	font-weight: 400;
}

section.bsprtnt {
	background: #f2f2f2 !important;
}

section.bsprtnt p {
	color: #000;
}

.language-section .row {
	width: 100%;
	max-width: 1000px;
	margin: auto;
	row-gap: 15px;
}

.more-info-bx p {
	color: #0b2a4e;
	font-size: 20px;
	margin: 30px 0px 0px 0px;
	background: #fff;
	padding: 9px 15px;
	display: inline-block;
	border-radius: 5px;
	font-weight: 600;
}

@media (max-width: 575.95px) {
	.language-section .row .col-lg-3 {
		flex: 0 0 100% !important;
		max-width: 100% !important;
	}
}

.block.block-secondary-main {
	background-color: var(--clr-secondary-main);
}

.block.block-secondary-main .clr-primary-main {
	color: var(--clr-primary-dark);
}

.block-parallax {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	clip-path: inset(0);
	background-color: var(--clr-primary-text);
	color: var(--clr-primary-light);
}

.block-parallax .parallax-image img {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
	pointer-events: none;
	user-select: none;
}

.block-parallax:not(.parallax-boxed) .parallax-image img {
	filter: brightness(.25);
}

.block-static .row {
	row-gap: 1.5rem;
}

.block-static .block-image img {
	border-radius: 1rem;
	width: 100%;
	object-fit: cover;
}

.block-static .block-image {
	position: relative;
	isolation: isolate;
}

.block-note .note-wrapper, .block-note .note-content {
	max-width: calc(100ch + 1rem);
	margin-inline: auto;
	padding-inline: 1rem;
	text-align: center;
	text-wrap: pretty;
}

.bg-gray-200 {
	background-color: #f2f2f2;
}

@media (min-width: 992px) {
	.block-fluid {
		--_gap: 5rem;
		position: relative;
		isolation: isolate;
		overflow: hidden;
		clip-path: inset(0);
	}
	
	.block-fluid .row {
		gap: 1.5rem var(--_gap);
		margin: 0;
	}
	
	.block-fluid .row > * {
		padding: 0;
		flex: 1;
	}
	
	.block-fluid .block-image img {
		position: fixed;
		inset: 0;
		z-index: -2;
		width: calc(50% - ( var(--_gap) / 2 ));
		height: 100%;
		object-fit: cover;
	}
	
	.block-fluid.fluid-100 .block-image img {
		width: 100%;
		position: absolute;
	}
	
	.block-fluid .block-image:last-child img {
		margin-left: auto;
	}
	
	.block-static {
		--_gap: 5rem;
	}
	
	.block-static .block-image img {
		min-height: 100%;
		aspect-ratio: 1/.65;
	}
	
	.block-static .row {
		margin: 0;
		column-gap: var(--_gap);
	}
	
	.block-static .row > :not(.block-image) {
		align-self: center;
	}
	
	.block-static .row > * {
		flex: 1;
		padding: 0;
	}
}

/* Inner Hero */
.parent-pageid-39777 .inner-hero, .page-id-41670 .inner-hero, .page-id-41725 .inner-hero, .page-id-41735 .inner-hero, .page-id-41819 .inner-hero, .page-id-41832 .inner-hero {
	position: relative;
	isolation: isolate;
	padding-block: 50px;
	min-height: calc(100vh - 120px);
	align-content: center;
	clip-path: inset(0);
	overflow: hidden;
}

.parent-pageid-39777 .inner-hero .contact-info a, .page-id-41670 .inner-hero .contact-info a, .page-id-41725 .inner-hero .contact-info a, .page-id-41735 .inner-hero .contact-info a, .page-id-41819 .inner-hero .contact-info a, .page-id-41832 .inner-hero .contact-info a {
	font-weight: 600;
	color: #0b2a4e;
}

@media (max-width: 991.98px) {
	.parent-pageid-39777 .inner-hero, .page-id-41670 .inner-hero, .page-id-41725 .inner-hero, .page-id-41735 .inner-hero, .page-id-41819 .inner-hero, .page-id-41832 .inner-hero {
		position: relative;
		isolation: isolate;
		padding-block: 50px;
		min-height: unset !important;
		align-content: center;
		clip-path: inset(0);
		overflow: hidden;
	}
	
	.parent-pageid-39777 .inner-hero .hero-slider, .page-id-41670 .inner-hero .hero-slider, .page-id-41725 .inner-hero .hero-slider, .page-id-41735 .inner-hero .hero-slider, .page-id-41819 .inner-hero .hero-slider, .page-id-41832 .inner-hero .hero-slider {
		mask-image: unset !important;
		opacity: .25;
	}
	
	.parent-pageid-39777 .inner-hero .hero-slider.nitro-lazy, .page-id-41670 .inner-hero .hero-slider.nitro-lazy, .page-id-41725 .inner-hero .hero-slider.nitro-lazy, .page-id-41735 .inner-hero .hero-slider.nitro-lazy, .page-id-41819 .inner-hero .hero-slider.nitro-lazy, .page-id-41832 .inner-hero .hero-slider.nitro-lazy {
		mask-image: none !important;
	}
}

.parent-pageid-39777 .inner-hero .hero-slider, .page-id-41670 .inner-hero .hero-slider, .page-id-41725 .inner-hero .hero-slider, .page-id-41735 .inner-hero .hero-slider, .page-id-41819 .inner-hero .hero-slider, .page-id-41832 .inner-hero .hero-slider {
	position: fixed;
	height: 100vh;
	height: 100dvh;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	user-select: none;
	mask-image: linear-gradient(to right, hsla(0, 0%, 0%, 5%), #000);
}

.parent-pageid-39777 .inner-hero .hero-slider :is(.slick-list,
    .slick-track,
    .slick-slide,
    .slick-slide>*,
    .slide), .page-id-41670 .inner-hero .hero-slider :is(.slick-list,
    .slick-track,
    .slick-slide,
    .slick-slide>*,
    .slide), .page-id-41725 .inner-hero .hero-slider :is(.slick-list,
    .slick-track,
    .slick-slide,
    .slick-slide>*,
    .slide), .page-id-41735 .inner-hero .hero-slider :is(.slick-list,
    .slick-track,
    .slick-slide,
    .slick-slide>*,
    .slide), .page-id-41819 .inner-hero .hero-slider :is(.slick-list,
    .slick-track,
    .slick-slide,
    .slick-slide>*,
    .slide), .page-id-41832 .inner-hero .hero-slider :is(.slick-list,
    .slick-track,
    .slick-slide,
    .slick-slide>*,
    .slide) {
	height: 100%;
}

.parent-pageid-39777 .inner-hero .hero-slider .slide, .page-id-41670 .inner-hero .hero-slider .slide, .page-id-41725 .inner-hero .hero-slider .slide, .page-id-41735 .inner-hero .hero-slider .slide, .page-id-41819 .inner-hero .hero-slider .slide, .page-id-41832 .inner-hero .hero-slider .slide {
	width: 100%;
	position: relative;
}

.parent-pageid-39777 .inner-hero .hero-slider .slide img, .page-id-41670 .inner-hero .hero-slider .slide img, .page-id-41725 .inner-hero .hero-slider .slide img, .page-id-41735 .inner-hero .hero-slider .slide img, .page-id-41819 .inner-hero .hero-slider .slide img, .page-id-41832 .inner-hero .hero-slider .slide img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.parent-pageid-39777 .inner-hero .hero-slider .slick-active img, .page-id-41670 .inner-hero .hero-slider .slick-active img, .page-id-41725 .inner-hero .hero-slider .slick-active img, .page-id-41735 .inner-hero .hero-slider .slick-active img, .page-id-41819 .inner-hero .hero-slider .slick-active img, .page-id-41832 .inner-hero .hero-slider .slick-active img {
	animation: burnOut 10s linear forwards 1;
}

@keyframes burnOut {
	from {
		transform: scale(1.35);
	}
	
	to {
		transform: scale(1);
	}
}

.parent-pageid-39777 .inner-hero .hero-content, .page-id-41670 .inner-hero .hero-content, .page-id-41725 .inner-hero .hero-content, .page-id-41735 .inner-hero .hero-content, .page-id-41819 .inner-hero .hero-content, .page-id-41832 .inner-hero .hero-content {
	max-width: 50ch;
}

.parent-pageid-39777 .inner-hero .hero-content .hero-title, .page-id-41670 .inner-hero .hero-content .hero-title, .page-id-41725 .inner-hero .hero-content .hero-title, .page-id-41735 .inner-hero .hero-content .hero-title, .page-id-41819 .inner-hero .hero-content .hero-title, .page-id-41832 .inner-hero .hero-content .hero-title {
	font-size: clamp(1.75rem, 3vw + 1rem, 3rem);
	margin-block-end: .5em;
}

.parent-pageid-39777 .inner-hero .hero-content .contact-info, .page-id-41670 .inner-hero .hero-content .contact-info, .page-id-41725 .inner-hero .hero-content .contact-info, .page-id-41735 .inner-hero .hero-content .contact-info, .page-id-41819 .inner-hero .hero-content .contact-info, .page-id-41832 .inner-hero .hero-content .contact-info {
	margin-block-end: 1.5rem;
	padding: 0;
	list-style-type: none;
}

.parent-pageid-39777 .inner-hero .hero-content .contact-info address, .page-id-41670 .inner-hero .hero-content .contact-info address, .page-id-41725 .inner-hero .hero-content .contact-info address, .page-id-41735 .inner-hero .hero-content .contact-info address, .page-id-41819 .inner-hero .hero-content .contact-info address, .page-id-41832 .inner-hero .hero-content .contact-info address {
	margin: 0;
}

.parent-pageid-39777 .inner-hero .hero-content .contact-info > *, .page-id-41670 .inner-hero .hero-content .contact-info > *, .page-id-41725 .inner-hero .hero-content .contact-info > *, .page-id-41735 .inner-hero .hero-content .contact-info > *, .page-id-41819 .inner-hero .hero-content .contact-info > *, .page-id-41832 .inner-hero .hero-content .contact-info > * {
	padding: .5em;
	border-left: 4px solid #0b2a4e;
	background-image: linear-gradient(to right, #fff 50%, hsla(0, 0%, 100%, 50%) 80%, transparent 90%);
}

.parent-pageid-39777 .inner-hero .hero-content .contact-info > *:not(:last-child), .page-id-41670 .inner-hero .hero-content .contact-info > *:not(:last-child), .page-id-41725 .inner-hero .hero-content .contact-info > *:not(:last-child), .page-id-41735 .inner-hero .hero-content .contact-info > *:not(:last-child), .page-id-41819 .inner-hero .hero-content .contact-info > *:not(:last-child), .page-id-41832 .inner-hero .hero-content .contact-info > *:not(:last-child) {
	margin-block-end: 1em;
}

.parent-pageid-39777 .block-services .row, .page-id-41670 .block-services .row, .page-id-41725 .block-services .row, .page-id-41735 .block-services .row, .page-id-41819 .block-services .row, .page-id-41832 .block-services .row {
	row-gap: 1.5rem;
	justify-content: center;
}

.parent-pageid-39777 .block-services .service, .page-id-41670 .block-services .service, .page-id-41725 .block-services .service, .page-id-41735 .block-services .service, .page-id-41819 .block-services .service, .page-id-41832 .block-services .service {
	background-color: #0b2a4e;
	box-shadow: 0 1px 0 hsla(0, 0%, 0%, 20%);
	text-align: center;
	padding: 1rem;
	border-radius: .5rem;
	margin-block-end: 1rem;
	height: 100%;
	margin: 0;
}

.parent-pageid-39777 .block-services .service .thumb, .page-id-41670 .block-services .service .thumb, .page-id-41725 .block-services .service .thumb, .page-id-41735 .block-services .service .thumb, .page-id-41819 .block-services .service .thumb, .page-id-41832 .block-services .service .thumb {
	text-align: center;
	margin-block-end: 1rem;
}

.parent-pageid-39777 .block-services .service .thumb svg, .page-id-41670 .block-services .service .thumb svg, .page-id-41725 .block-services .service .thumb svg, .page-id-41735 .block-services .service .thumb svg, .page-id-41819 .block-services .service .thumb svg, .page-id-41832 .block-services .service .thumb svg {
	max-width: 50px;
	height: 100%;
	fill: #fff;
}

.parent-pageid-39777 .block-services .service .thumb svg [fill], .page-id-41670 .block-services .service .thumb svg [fill], .page-id-41725 .block-services .service .thumb svg [fill], .page-id-41735 .block-services .service .thumb svg [fill], .page-id-41819 .block-services .service .thumb svg [fill], .page-id-41832 .block-services .service .thumb svg [fill] {
	fill: #fff;
}

.parent-pageid-39777 .block-services .service .title, .page-id-41670 .block-services .service .title, .page-id-41725 .block-services .service .title, .page-id-41735 .block-services .service .title, .page-id-41819 .block-services .service .title, .page-id-41832 .block-services .service .title {
	font-size: clamp(20px, 1.5vw + .5rem, 24px);
	color: #fff;
}

.parent-pageid-39777 .block-services .service .caption p, .page-id-41670 .block-services .service .caption p, .page-id-41725 .block-services .service .caption p, .page-id-41735 .block-services .service .caption p, .page-id-41819 .block-services .service .caption p, .page-id-41832 .block-services .service .caption p {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	text-wrap: pretty;
	color: hsl(0, 0%, 80%);
}

.parent-pageid-39777 .block-services .row + .note-content, .page-id-41670 .block-services .row + .note-content, .page-id-41725 .block-services .row + .note-content, .page-id-41735 .block-services .row + .note-content, .page-id-41819 .block-services .row + .note-content, .page-id-41832 .block-services .row + .note-content {
	margin-block-start: 2rem;
}

.parent-pageid-39777 .heading_section h2, .page-id-41670 .heading_section h2, .page-id-41725 .heading_section h2, .page-id-41735 .heading_section h2, .page-id-41819 .heading_section h2, .page-id-41832 .heading_section h2 {
	margin-bottom: 18px;
}

/*** UL list ****/
.page-id-41735 .new_list li {
	position: relative;
}

.page-id-41735 .new_list {
	list-style-type: none;
	padding-left: 21px;
}

.page-id-41735 .new_list li::before {
	position: absolute;
	content: "";
	background-color: #0b2a4e;
	border: 2px solid #fff;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	top: 5px;
	left: -23px;
}

/*** UL list end****/
.block-parallax.parallax-boxed .block-content {
	background-color: hsla(0, 0%, 100%, 80%);
	backdrop-filter: blur(1rem);
	border-radius: .5rem;
	padding: clamp(1rem, 1.5vw + .5rem, 1.5rem);
}

.List-root {
	margin: 0;
	padding: 0;
	list-style: none;
}

.List-root > * {
	padding: .25em 0 .25em .725em;
	border-left: 4px solid #0b2a4e;
}

.List-root > :not(:last-child) {
	margin-block-end: 1em;
}

._form {
	background-color: hsla(0, 0%, 100%, 10%);
	padding: 1.5rem;
	border-radius: .5rem;
}

._form button {
	background-color: #fff;
	color: #000;
}

._form button:hover {
	color: #fff !important;
}

._form button::after {
	background-color: #000;
}

.block-parallax .block-content > .row {
	row-gap: 1.5rem;
}

.block-parallax .block-content {
	overflow: hidden;
	padding: 0 !important;
}

.block-parallax .block-content > .row {
	margin: 0;
}

.block-parallax .block-content > .row > :first-child {
	background-color: #0b2a4e;
	padding: clamp(1rem, 1.5vw, 1.5rem);
}

.block-parallax .block-content > .row > :first-child h2 {
	color: #fff;
}

.block-parallax .block-content > .row > :first-child h2:before {
	background-color: #fff;
}

.block-parallax .block-inner {
	padding: clamp(1rem, 1.5vw, 1.5rem) .5rem;
}

/*--------------------------------------------------------------
 # Footer
--------------------------------------------------------------*/
.lines {
	position: absolute;
	inset: 0;
	max-width: 1520px;
	margin-inline: auto;
	z-index: 1;
}

.lines .line:nth-child(1) {
	margin-left: -19%;
}

.lines .line {
	position: absolute;
	width: 1px;
	height: 100%;
	top: 0;
	left: 50%;
	background: rgba(255, 255, 255, 26%);
	overflow: hidden;
}

.lines .line:nth-child(1)::after {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}

.lines .line::after {
	content: "";
	display: block;
	position: absolute;
	height: 15vh;
	width: 100%;
	top: -50%;
	left: 0;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
	-webkit-animation: run 7s 0s infinite;
	animation: run 7s 0s infinite;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: cubic-bezier(.4, .26, 0, .97);
	animation-timing-function: cubic-bezier(.4, .26, 0, .97);
}

.lines .line:nth-child(3)::after {
	-webkit-animation-delay: 2.5s;
	animation-delay: 2.5s;
}

section#footertop {
	position: relative;
}

.lines .line:nth-child(2) {
	left: 74%;
}

.lines .line:nth-child(3) {
	left: 72%;
}

.alter {
	color: #fff;
	text-align: center;
}

@keyframes run {
	0% {
		top: -50%;
	}
	
	100% {
		top: 110%;
	}
}

.footer-section {
	padding-top: 14px;
	position: relative;
	background-color: #001833;
	background-repeat: no-repeat;
	background-size: cover;
}

/* .footer-section:before {
    position: absolute;
    top: 0;
    content: "";
    background: rgb(0 0 0 / 81%);
    z-index: 1;
    width: 100%;
    height: 100%;
} */
.footer-section .container {
	position: relative;
	z-index: 1;
}

.footer-widget.w_100 ul li {
	display: inline-block;
	float: left;
	width: 100%;
	margin-bottom: 30px;
}

.footer-cta {
	border-bottom: 1px solid rgba(255, 255, 255, 26%);
}

.hours-text h3 {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	margin: 0;
}

.hours-text p {
	color: #fff;
	font-size: 16px;
}

.ft_icon {
	color: #001833;
	float: left;
	margin-top: 0px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0;
	height: fit-content;
}

.single-cta svg {
	width: 20px;
	height: 20px;
	padding: 15px;
}

.cta-text {
	padding-left: 15px;
	display: inline-block;
}

.cta-text a {
	color: #fff;
	transition: all .3s ease-in-out;
	font-weight: 600;
}

.cta-text a:hover {
	opacity: .6;
}

.cta-text h4 {
	color: #fff;
	font-size: 20px;
	margin-bottom: 2px;
	text-transform: capitalize;
	line-height: 1.3;
}

.footer-widget ul {
	height: 100%;
	margin-left: 0;
	padding-left: 0;
}

.footer-widget.m_view ul {
	height: 100%;
	padding-left: 0;
	display: flex;
	flex-wrap: wrap;
}

.footer-widget.m_view ul li {
	width: 50%;
}

.cta-text span {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	font-family: "Poppins", sans-serif;
}

.footer-content {
	position: relative;
	z-index: 2;
	margin: 15px 0;
}

.footer-content .row {
	position: relative;
	z-index: 2;
}

.footer-pattern img {
	position: absolute;
	top: 0;
	left: 0;
	height: 330px;
	background-size: cover;
	background-position: 100% 100%;
}

.footer-logo {
	margin-bottom: 30px;
}

.footer-logo img {
	max-width: 80px;
}

.footer-text p {
	margin-bottom: 25px;
	font-size: 16px;
	color: #fff;
	line-height: 28px;
}

.footer-social-icon span {
	color: #fff;
	display: block;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
}

.footer-social-icon a {
	font-size: 16px;
	margin-right: 15px;
	border: 1px solid #000;
	height: 40px;
	width: 40px;
	display: inline-block;
	color: #000;
}

.footer-social-icon a:hover {
	color: #fff;
	border: 1px solid #000;
	background-color: #000;
}

.footer-social-icon i {
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 38px;
	border-radius: 50%;
}

.footer-widget-heading h3 {
	color: #fff;
	font-size: 26px;
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 20px;
	text-transform: capitalize;
}

.map_bx {
	height: 280px;
}

.hours-text {
	margin-bottom: 30px;
}

.footer-widget-heading h3::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 50px;
	background: #fff;
}

.footer-widget ul li {
	display: block;
	float: left;
	width: 100%;
	margin-bottom: 25px;
}

.footer-widget ul li a:hover {
	color: #b1aeae;
}

.footer-widget ul li a {
	color: #fff;
	text-transform: capitalize;
	font-weight: 400;
	font-size: 16px;
}

.subscribe-form {
	position: relative;
	overflow: hidden;
}

.subscribe-form input {
	width: 100%;
	padding: 14px 64px 14px 14px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 28%);
	color: #fff;
}

.subscribe-form button {
	position: absolute;
	right: 0;
	background: #862a35;
	padding: 13px 20px;
	border: 1px solid #862a35;
	top: 0;
}

.subscribe-form button i {
	color: #fff;
	font-size: 22px;
	transform: rotate(-6deg);
}

.copyright-area {
	padding: 16px 0;
	border-top: 1px solid rgba(255, 255, 255, 26%);
	z-index: 1;
	position: relative;
}

.copyright-text p {
	margin: 0;
	font-size: 16px;
	color: #fff;
}

.copyright-text p a {
	color: #000;
}

.footer-menu li {
	display: inline-block;
	margin-left: 20px;
}

.footer-menu li:hover a {
	color: #000;
}

.footer-menu li a {
	font-size: 14px;
	color: #878787;
}

.single-cta {
	display: flex;
	margin-bottom: 28px;
}

@media (max-width: 991px) {
	.lines {
		display: none;
	}
	
	.single-cta {
		margin-bottom: 26px;
	}
}

@media (max-width: 480px) {
	.map-cta .col-wrapper {
		margin-bottom: 20px;
	}
}

._box {
	font-weight: 600;
	background-color: hsla(212, 75%, 17%, 10%);
	padding: .25em .5em;
	border-radius: .25em;
	display: inline-block;
	line-height: 1.25;
	font-size: 14px;
}

.Marquee-root {
	--_gap: 1.5rem;
	--_duration: 15s;
	--_state: running;
	overflow: hidden;
}

.Marquee-root:is(:hover,
    :focus-within) {
	--_state: paused;
}

.Marquee-root .Marquee-track {
	display: flex;
	gap: var(--_gap, 1rem);
}

.Marquee-root .Marquee-track > * {
	flex: 1 0 100%;
	text-align: center;
	white-space: nowrap;
	animation: var(--_duration) Marquee linear infinite;
	animation-play-state: var(--_state);
}

.Marquee-root .Marquee-track > * > * {
	padding: .5em 1em;
	display: block;
}

.Marquee-primary {
	background-color: var(--clr-primary);
	color: var(--clr-accent);
}

.Marquee-instructions a {
	color: inherit;
	font-size: clamp(1.25rem, 2vw + .5rem, 2rem);
	font-weight: 600;
}

@keyframes Marquee {
	to {
		transform: translateX(calc(-100% - 1.5rem));
	}
}

/* New page css */
.section-space {
	padding: 75px 0;
}

.section-3-cn h3 {
	color: #fff;
}

.section-3-cn li {
	color: #fff;
}

.section-4 .visa_main_non-slide {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-top: 35px;
}

.section-4 .visa_main_non-slide.grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

ul.list-style.flex-list {
	display: flex;
	flex-wrap: wrap;
	column-gap: 21px;
}

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

ul.list-style li {
	padding-left: 25px;
	margin-bottom: 12px;
	font-weight: 600;
	position: relative;
}

ul.list-style li:before {
	content: "";
	width: 14px;
	height: 14px;
	background: #0b2a4e;
	top: 7px;
	display: inline-block;
	position: absolute;
	left: 2px;
	border-radius: 100px;
	border: 2px solid #fff;
	outline: 2px solid #0b2a4e;
}

ul.list-style.list-white li::before {
	background: #fff;
	border-color: #000;
	outline-color: #fff;
}

.visa-practice-section-new p a:not(.white-btn) {
	color: #fff;
}

.col-text2 p a:not(.common-btn) {
	color: #0c2a4e;
	font-weight: 600;
}

.section-6 {
	background: #0b2a4e;
}

.section-6-cn p {
	color: #fff;
}

.section-1-image img {
	width: 100%;
}

.section-2-image img {
	width: 100%;
}

/* List */
.List-root {
	margin-block-end: 1rem;
	text-wrap-style: pretty;
}

.List-root.List-col-2 {
	columns: 2 280px;
}

.List-root.List-col-2 > * {
	break-inside: avoid;
}

.List-root > *:not(:last-child) {
	margin-block-end: .725em;
}

.List-root > * {
	--clr: #001833;
	padding: .35em .725em;
	border-left: .18em solid var(--clr);
}

.List-root > :nth-child(2n) {
	--clr: #c5ccd5;
}

.List-root > :nth-child(3n) {
	--clr: #000;
}

.List-root > :nth-child(4n) {
	--clr: #005ecb;
}

.List-root.List-light > * {
	--clr: #fff;
}

.Instructions {
	background-color: var(--clr-primary);
	padding: 1.5rem;
}

.Instructions a {
	color: var(--clr-accent);
	text-align: center;
	display: block;
	font-weight: 600;
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	text-wrap-style: balance;
}

.Block-root {
	padding-block: clamp(30px, 8vw, 60px) !important;
}

.Block-primary {
	background-color: var(--clr-primary);
	color: var(--clr-accent);
}

.Block-primary * {
	color: inherit;
}

.Block-root.BlockNote-root :where(.Note-wrapper,
    .Note-content) {
	max-width: 100ch;
	margin-inline: auto;
	text-align: center;
	text-wrap-style: pretty;
}

.Note-box {
	text-align: left;
	padding: clamp(1rem, 1.5vw + .35rem, 1.5rem);
	background-color: var(--clr-accent);
}

.Note-box .title > * {
	font-size: 1.5rem;
	font-weight: bold;
}

.Note-box:not(:last-child) {
	margin-block-end: 1.5rem;
}

/* Parallax */
.Block-root.BlockParallax-root {
	position: relative;
	isolation: isolate;
	clip-path: inset(0);
	overflow: hidden;
}

.Block-root.BlockParallax-root .Parallax-object > * {
	inset: 0;
	z-index: -2;
	width: 100%;
	height: calc(100vh + 50px);
	height: calc(100dvh + 50px);
	object-fit: cover;
	object-position: center;
}

.Block-root.BlockParallax-root:not(.Block-fluid) .Parallax-object > * {
	position: fixed;
}

/* Static */
.Block-root.Block-static .Block-object > * {
	border-radius: 1rem;
	width: 100%;
	object-fit: cover;
}

.Block-root.Block-root .Block-row ~ .Block-row {
	margin-block-start: 3rem;
}

.Block-object picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-id-43396 .nav-tabs a.nav-link.active, .page-id-43396 .nav-tabs a.nav-link {
	background-color: #0b2a4e;
	width: 279px;
	text-align: center;
	color: #fff;
	border-radius: 0;
}

.page-id-43396 .nav-tabs a.nav-link {
	background-color: rgba(0, 136, 204, 48%);
	border: none;
	font-size: 20px;
	font-weight: 600;
}

.page-id-43396 .nav-tabs {
	justify-content: center;
	border-bottom: none;
	margin-bottom: 22px;
}

.page-id-43396 .tab-content .tab-pane .row {
	justify-content: center;
}

@media (min-width: 992px) {
	/* Static */
	.Block-static.Block-static {
		--_gap: 5rem;
	}
	
	.Block-static.Block-static .Block-object > * {
		aspect-ratio: 1/.725;
		min-height: 100%;
	}
	
	.Block-static.Block-static .Block-row {
		margin: 0;
		column-gap: var(--_gap);
	}
	
	.Block-static.Block-static .Block-row > *:not(.Block-object) {
		align-self: center;
	}
	
	.Block-static.Block-static .Block-row > * {
		flex: 1;
		padding: 0;
	}
	
	/* Fluid */
	.Block-root.Block-fluid {
		--_gap: 5rem;
		position: relative;
		isolation: isolate;
	}
	
	.Block-root .Block-object {
		position: static;
	}
	
	.Block-root.Block-fluid .Block-row {
		gap: 1.5rem var(--_gap);
		margin: 0;
	}
	
	.Block-root.Block-fluid .Block-row > * {
		padding: 0;
		flex: 1;
	}
	
	.Block-root.Block-fluid:not(.BlockParallax-root) .Block-object > * {
		position: absolute;
		inset: 0;
		z-index: -2;
		width: 50%;
		height: 100%;
		object-fit: cover;
	}
	
	.Block-root.Block-fluid.Block-fluid-100 {
		min-height: 100vh;
		min-height: 100dvh;
		align-content: center;
	}
	
	.Block-root.Block-fluid.Block-fluid-100 .Block-object > * {
		width: 100%;
	}
	
	.Block-root.Block-fluid .Block-object:last-child > * {
		margin-left: auto;
	}
	
	/* Parallax */
	.Block-root.BlockParallax-root.Block-fluid .Block-object > * {
		width: 50%;
		position: fixed;
	}
}

@media (max-width: 991.98px) {
	.Block-row {
		row-gap: 1.5rem;
	}
	
	.Block-root.Block-fluid .Block-row > :not(.Block-object) {
		order: 2;
	}
	
	.Block-root.Block-fluid .Block-object:last-child {
		order: 1;
	}
	
	.Block-root.Block-fluid .Block-object > * {
		border-radius: 1rem;
		aspect-ratio: 16/10;
		width: 100%;
	}
}

p:empty {
	display: none;
}

.common-btn {
	cursor: pointer;
}

header#hdr .common-btn:not(:hover) span {
	color: #0b2a4e !important;
}

section.wild_files_about {
	padding: 120px 0;
}

.eild_about_image img {
	width: 100%;
}

.wild_about_text p {
	margin: 0;
}

.wild_about_text h2, .expect_text h2, .podcast_short_list_head h2 {
	margin: 0 0 20px 0;
	display: inline-block;
	border-bottom: 1px solid #0b2a4e;
	padding-bottom: 20px;
}

.wild_about_text {
	padding: 0 0 0 0px;
}

.expect_image img {
	width: 100%;
}

section.what_expect {
	padding: 120px 0;
	background-color: #fffcf5;
}

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

ul.expect_list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	row-gap: 10px;
}

ul.expect_list li {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	text-transform: capitalize;
	color: #000;
	padding: 10px 10px 10px 36px;
	position: relative;
}

ul.expect_list li::after {
	content: "";
	position: absolute;
	top: 17px;
	left: 9px;
	width: 16px;
	height: 16px;
	background-image: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2025/09/bullet-point-1.png");
	background-size: contain;
	background-position: center;
}

.subscribe_social {
	margin: 35px 0 0 0;
}

.subscribe_social h4 {
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 29px;
	text-transform: capitalize;
	color: #000;
	margin: 0 0 10px 0;
}

ul.subs_social {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

ul.subs_social li {
	padding: 12px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	border: 1px solid #000;
	border-radius: 10px;
}

ul.subs_social li img {
	width: 24px;
}

section.what_expect + section.testimonials-sec .testimonials-slider.slick-slider {
	background-color: #fff;
	padding: 41px 50px;
	border-radius: 25px;
}

section.what_expect + section.testimonials-sec .testimonials-box p, section.what_expect + section.testimonials-sec .testimonials-box span {
	color: #000;
	font-size: 17px;
	line-height: 30px;
}

section.testimonials-sec .testimonials-box span.client-nm {
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 25px;
	color: #fff;
}

section.gallerysp .podcast_short_list .video-gallery iframe {
	border: 0;
	padding: 16px;
	box-shadow: none;
	background-color: #fff;
	border-radius: 20px;
	margin: 0;
}

.podcast_short_list ul.nav {
	border: 0;
	display: inline-flex;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 100px;
	overflow: hidden;
	padding: 6px;
}

.podcast_short_list ul.nav a.nav-link {
	padding: 12px 24px;
	border: 0;
	font-style: normal;
	font-weight: 400;
	font-size: 21.7346px;
	line-height: 26px;
	text-align: center;
	color: #757575;
}

.podcast_short_list ul.nav a.nav-link.active {
	background-color: #0b2a4e;
	border-radius: 100px;
	color: #fff;
}

.podcast_nav {
	text-align: center;
}

ul.subs_social li a {
	color: #000;
}

.video_thumbnail img {
	width: 100%;
}

.video-gallery a {
	padding: 16px;
	display: block;
	background-color: #fff;
	border-radius: 20px;
}

.video_thumbnail {
	margin: 0 0 16px 0;
	border-radius: 10px;
	overflow: hidden;
}

.video_info_main h6 {
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	color: #000;
	font-family: "Open Sans", sans-serif;
	margin: 0 0 10px 0;
}

.video_info_main p {
	margin: 0;
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #1e1e1e;
}

section.youtube_video {
	padding: 100px 0;
}

section.youtube_video iframe {
	aspect-ratio: 10/6;
}

.podcast_short_list_head {
	text-align: center;
	margin: 0 0 20px 0;
}

.page-id-37699 .bimmgrt li {
	color: #000;
}

section.Education-section.block-space .education-block.education-image img {
	height: 100%;
	object-fit: cover;
}

.full_image img {
	width: 100%;
}

section.our-clientele {
	padding: 48px 0;
	background-color: #e4effb;
}

section.our-clientele .row {
	align-items: center;
}

section.our-clientele {
	padding: 48px 0;
	background-color: #e4effb;
}

section.our-clientele .row {
	align-items: center;
}

.memo-sec p a {
	word-wrap: break-word;
}

ul.dash_list {
	padding: 0;
	margin: 0;
	flex-direction: column;
	display: flex;
	row-gap: 20px;
	list-style: none;
}

ul.dash_list li {
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	color: #000;
	font-family: "Conv_AGaramondPro-Regular";
	padding: 10px;
	border-left: 3px solid #0b2a4e;
}

section.awards-public-office {
	background-color: #e4effb;
}

section.awards-section.awards-public-office .awards-column {
	grid-template-columns: 1fr 1fr;
}

section.awards-section.awards-public-office .awards-column .award-item {
	display: flex;
	align-items: center;
}

.image_amazon img {
	max-width: 221px;
}

.image_amazon {
	margin: 38px 0 0 0;
}

section.podcast-section.videos-section {
	background-color: #e4effb;
}

section.image_gallery {
	background-color: #e4effb;
}

section.image_gallery .image_provide {
	padding: 10px;
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
}

section.image_gallery .image_provide img {
	width: 100%;
	border-radius: 10px;
	aspect-ratio: 100/70;
	object-fit: cover;
}

section.image_gallery .row {
	row-gap: 25px;
}

section.gallerysp .row {
	row-gap: 25px;
}

.search-results .wildserv .wildservinner .wildimg {
	max-width: 270px !important;
}

.search-results .sectitle .col-lg-12 {
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-results .sectitle .col-lg-12 h2 {
	font-size: 36px;
	margin-bottom: 0;
}

.servcspage .nav-links .page-numbers {
	margin-left: 5px;
}

.prev.page-numbers svg {
	padding-top: 6px;
	height: 19px;
}

.next.page-numbers svg {
	padding-top: 6px;
	height: 19px;
}

.des-text ul li {
	font-weight: 600;
}

.des-text ul li a {
	color: #000;
	text-decoration: underline;
}

/* .more-list .sub-menu .sub-menu {
    position: relative;
    right: 0;
    border: none;
    margin: 0;
    padding: 0 0 0 24px;
    display: block;
    width: 100%;
    border-top: 1px solid rgba(0,0,0,.15);
    border-radius: 0;
}

.more-list > .sub-menu {
    right: 0;
    height: 300px;
    max-height: 300px;
    overflow: auto;
} */
header div#navbarNav ul li.jumbo_parent_menu:hover > .sub-menu {
	display: grid;
	grid-template-columns: calc(66.66% - 10px) 33.33%;
	width: calc(100% - 50px);
	right: 5px;
	left: initial;
}

header div#navbarNav ul li ul.sub-menu.jumbo_menu {
	width: 100%;
	right: initial;
	left: 0;
	grid-template-columns: 1fr 1fr;
	column-gap: 10px;
	background-color: #fff;
	padding: 0px 5px 10px 5px;
}

header div#navbarNav ul li ul.sub-menu.jumbo_menu li ul.sub-menu {
	position: relative;
	display: block;
	right: 0;
	border: 0;
	margin: 0;
	padding: 0 0 0 0px;
	background-color: transparent;
	width: 100%;
}

header div#navbarNav ul li ul.sub-menu.jumbo_menu > li > a {
	color: #0b2a4e;
	font-weight: 700;
	border-bottom: 2px solid;
	padding-left: 5px;
	font-size: 18px;
}

header nav.navbar.jumbo_menu_main div#navbarNav li.more-list.jumbo_parent_menu.jumbo_parent_menu_more ul.sub-menu.jumbo_menu li.menu-item a, header div#navbarNav ul li ul.sub-menu.jumbo_menu li ul.sub-menu li a {
	padding: 5px 0 5px 26px;
	position: relative;
	margin-bottom: 5px;
	font-size: 16px;
	font-weight: 500;
	border: none;
	white-space: normal;
}

header div#navbarNav ul li ul.sub-menu.jumbo_menu > li > a:hover {
	background-color: transparent;
}

header div#navbarNav ul li ul.sub-menu.jumbo_menu li ul.sub-menu li a::after, header nav.navbar.jumbo_menu_main div#navbarNav li.more-list.jumbo_parent_menu.jumbo_parent_menu_more ul.sub-menu.jumbo_menu li a::after {
	height: 8px;
	width: 8px;
	background-color: #0b2a4e;
	position: absolute;
	content: "";
	left: 8px;
	top: 16px;
	border-radius: 100px;
	outline: 2px solid #0b2a4e;
	outline-offset: 2px;
}

header div#navbarNav ul li ul.sub-menu.jumbo_menu li ul.sub-menu li a:hover::after {
	background-color: #fff;
	outline: 2px solid #fff;
}

header nav.navbar.jumbo_menu_main div#navbarNav li.more-list.jumbo_parent_menu {
	position: initial;
}

nav.navbar.jumbo_menu_main ul#menu-main-menu {
	position: initial;
}

nav.navbar.navbar-expand-lg.jumbo_menu_main {
	position: initial;
}

header div#navbarNav ul li ul.sub-menu.jumbo_menu li.menu-item.immigration_menu_drop ul.sub-menu {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 10px;
}

div#navbarNav ul#menu-main-menu > li.menu-item-has-children > a {
	padding-right: 20px;
	position: relative;
	background-image: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2026/03/down-arrow.png");
	background-size: 10px;
	background-repeat: no-repeat;
	background-position: calc(100% - 4px) center;
}

div#navbarNav ul#menu-main-menu > li.menu-item-has-children > a.nitro-lazy {
	background-image: none !important;
}

.banner_visa_main {
	padding: 0;
}

section.one_visa_banner {
	padding: 86px 0;
}

.banner_visa_main {
	padding: 50px 50px 50px 50px;
	background-image: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2026/03/visa-banner.jpg");
	background-size: cover;
	border-radius: 0px;
	position: relative;
	overflow: hidden;
}

.banner_visa_main.nitro-lazy {
	background-image: none !important;
}

.one_visa_text h1 {
	font-size: 36px;
	line-height: 42px;
	color: #fff;
	padding: 0 0 10px 0;
	border-bottom: 2px solid #fff;
}

.one_visa_text * {
	color: #fff;
}

ul.visa_list_ban {
	padding: 0;
	list-style: none;
	flex-direction: column;
	display: flex;
	row-gap: 20px;
}

ul.visa_list_ban li {
	flex-direction: column;
	display: flex;
}

ul.visa_list_ban li h5 img {
	width: 20px;
}

ul.visa_list_ban li h5 {
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 25px;
	text-transform: capitalize;
	color: #fff;
	font-family: "Open Sans", sans-serif;
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 0;
	padding-bottom: 6px;
	border-bottom: 2px solid #fff;
	margin-bottom: 6px;
}

ul.visa_list_ban li h5 span {
	display: inline-block;
	position: relative;
	top: -2px;
}

ul.visa_list_ban li p {
	margin: 0;
}

.one_visa_text {
	padding: 0 0 0 100px;
	border-left: 2px solid #fff;
	position: relative;
	z-index: 9;
}

.banner_visa_main .row {
	justify-content: flex-end;
}

.banner_visa_main .row {
	justify-content: flex-end;
}

.banner_visa_main::after {
	width: 70%;
	height: 100%;
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	background: #0b2a4e;
	background: linear-gradient(90deg, rgba(11, 42, 78, 0) 0%, rgba(11, 42, 78, 68%) 35.51%, #0b2a4e 86.9%);
}

section.market_leader {
	padding: 90px 0 120px;
	text-align: center;
	background-color: #fff;
}

.mar_lead_cols img {
	width: 100%;
	aspect-ratio: 320/268;
	border-radius: 15px;
	object-fit: cover;
}

.mar_lead_cols p {
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 25px;
	text-align: center;
	color: #000;
	margin: 10px 0 0 0;
}

.section_head_common h6 {
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 25px;
	text-align: center;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: #000;
	font-family: "Open Sans", sans-serif;
	padding: 10px 0;
	border-bottom: 1px solid #000;
	display: inline-block;
	margin: 0 0 20px 0;
}

.section_head_common h2 {
	font-style: normal;
	font-weight: 400;
	font-size: 45px;
	line-height: 45px;
	color: #000;
}

section.market_leader .section_head_common + p {
	max-width: 886px;
	margin: 30px auto 50px;
}

.understading_img img {
	width: 100%;
	border-radius: 25px;
}

section.understanfing {
	padding: 135px 0;
	background-image: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2026/03/yellow-noise-scaled.jpg");
}

section.understanfing.nitro-lazy {
	background-image: none !important;
}

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

.understnding_text p {
	margin: 0;
}

ul.understnd_list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 70%;
	gap: 20px 10px;
}

ul.understnd_list li {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 25px;
	color: #000;
}

ul.understnd_list li img {
	width: 30px;
}

a.common-btn.white-btn {
	background-color: #fff;
	color: #0b2a4e;
	border-color: #fff;
}

header nav.navbar.jumbo_menu_main div#navbarNav li.more-list.jumbo_parent_menu.jumbo_parent_menu_more ul.sub-menu.jumbo_menu {
	grid-template-columns: 1fr 1fr 1fr;
	padding: 10px 5px 10px 5px;
}

header nav.navbar.jumbo_menu_main div#navbarNav li.more-list.jumbo_parent_menu.jumbo_parent_menu_more ul.sub-menu.jumbo_menu li.menu-item {
	position: relative;
}

ul.eligible_list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 20px 20px;
}

ul.eligible_list li {
	padding: 10px 12px;
	text-align: center;
	border: 1px solid #fff;
	border-radius: 8px;
}

section.understanfing.eligibility_sec {
	background-image: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2026/03/visa-2-1-scaled.jpg");
	background-size: cover;
}

section.understanfing.eligibility_sec.nitro-lazy {
	background-image: none !important;
}

section.understanfing.eligibility_sec * {
	color: #fff;
	border-color: #fff;
}

section.understanfing.eligibility_sec a.common-btn.white-btn {
	color: #0b2a4e;
}

.visa_slide_in {
	padding: 30px;
	gap: 10px;
	background: linear-gradient(180deg, #0b2a4e 0%, #031a35 100%);
	border-radius: 15px;
	height: 100%;
	display: flex !important;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	transition: all ease .5s;
}

.visa_slide_in:hover {
	background: linear-gradient(180deg, #f6f2ea 0%, #d0c8ba 100%);
}

.visa_slide_in h4 {
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 30px;
	color: #fff;
	padding: 10px 0;
	border-bottom: 1px solid #fff;
}

.visa_slide_in p {
	color: #fff;
	margin: 0 0 10px 0;
}

.visa_slide_in a {
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 25px;
	text-align: justify;
	text-transform: capitalize;
	color: #f6f2ea;
	display: inline-block;
	padding: 0 0 10px 0;
	border-bottom: 1px solid #fff;
}

.visa_main_slide .slick-list {
	overflow: visible;
}

section.why_01_visa {
	padding: 100px 0;
}

section.why_01_visa .visa_main_slide {
	margin: 40px 0 40px 0;
}

section.why_01_visa .section_head_common p {
	margin: 20px auto 0;
	max-width: 660px;
}

.visa_main_slide .slick-list div.slick-slide > div {
	height: 100%;
}

section.why_01_visa .visa_main_slide .slick-track {
	display: flex;
}

.visa_main_slide .slick-list div.slick-slide {
	padding: 0 10px;
	height: inherit;
	opacity: .5;
	transition: all ease .5s;
}

.visa_main_slide .slick-list div.slick-slide.slick-active {
	opacity: 1;
}

.visa_slide_in:hover * {
	color: #000;
	border-color: #000;
}

section.how_apply {
	padding: 75px 0;
}

body.page-id-44928 .how_apply_main .row > div:nth-child(7) {
	border-right: 0;
}

.blue_sec .section_head_common *, .blue_sec * {
	color: #fff;
	border-color: #fff;
}

.blue_sec {
	background-image: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2026/03/blue-noise-1-scaled.jpg");
	background-size: cover;
}

.blue_sec.nitro-lazy {
	background-image: none !important;
}

section.how_apply .row {
	justify-content: center;
	row-gap: 0;
}

.how_apply_main .row {
	margin: 0;
	border-top: 0px solid #dcdcdc;
	border-left: 0px solid #dcdcdc;
}

.how_apply_main .row > div {
	border-right: 1px solid rgba(255, 255, 255, .1);
	border-bottom: 1px solid rgba(255, 255, 255, .14);
	padding: 30px 20px;
	min-height: 220px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: all .3s ease;
}

.how_apply_main .row > div:nth-child(4), .how_apply_main .row > div:nth-child(8), .how_apply_main .row > div:nth-child(12) {
	border-right: 0;
}

.how_apply_main .row > div:nth-child(9), .how_apply_main .row > div:nth-child(10), .how_apply_main .row > div:nth-child(11), .how_apply_main .row > div:nth-child(12) {
	border-bottom: 0;
}

.how_apply_main h4 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #fff;
}

.how_apply_main p {
	margin: 0;
	line-height: 1.7;
	color: #fff;
}

/* Mobile */
@media (max-width:767px) {
	.how_apply_main .row {
		border-left: none;
		border-top: none;
	}
	
	.how_apply_main .row > div {
		margin-bottom: -1px;
		min-height: auto;
		border-right: 0;
	}
	
	.how_apply_main .row > div:nth-child(9), .how_apply_main .row > div:nth-child(10), .how_apply_main .row > div:nth-child(11), .how_apply_main .row > div:nth-child(12) {
		border-bottom: 1px solid rgba(255, 255, 255, .14);
	}
}

.how_apply_main {
	margin: 74px 0 0 0;
}

.apply_box {
	text-align: center;
	padding: 10px 10px;
	transition: all .3s ease-in-out;
	display: flex;
	flex-direction: column;
	height: 100%;
	align-items: center;
	justify-content: center;
}

.apply_box:hover {
	background-color: #fff;
	outline: 2px solid #fff;
	outline-offset: 10px;
}

.apply_box:hover h4, .apply_box:hover p {
	color: #000;
}

.how_apply_main a + p {
	display: none !important;
}

.apply_box h4 {
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 30px;
	text-align: center;
	color: #fff;
}

.apply_box p {
	margin: 0;
}

section.visa_duration {
	padding: 100px 0;
	text-align: center;
}

section.visa_duration p {
	max-width: 660px;
	margin: 40px auto 0;
}

a.white-blue-btn {
	background-color: #fff;
	color: #0b2a4e;
}

section.pricing-detail {
	padding: 100px 0;
	background-image: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2026/03/yellow-noise-scaled.jpg");
}

section.pricing-detail.nitro-lazy {
	background-image: none !important;
}

section.pricing-detail .detail_prise {
	max-width: 886px;
	margin: 0 auto;
	text-align: center;
	background: #fff;
	box-shadow: 0px 14px 14px rgba(0, 0, 0, .1);
	border-radius: 25px;
	padding: 30px 20px;
}

section.pricing-detail.image_with_prising .detail_prise {
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
	background: #fff;
	box-shadow: 0px 14px 14px rgba(0, 0, 0, .1);
	border-radius: 25px;
	padding: 30px 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.blue-bg {
	background-image: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2026/03/blue-noise-2-scaled.jpg") !important;
	background-size: cover;
}

.blue-bg.nitro-lazy {
	background-image: none !important;
}

.blue-bg .section_head_common *, .blue-bg * {
	color: #fff;
	border-color: #fff;
}

.white-noise-bg {
	background-image: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2026/03/Rectangle-15-1.jpg");
	background-size: cover;
}

.white-noise-bg.nitro-lazy {
	background-image: none !important;
}

.choose_lawyer .understnding_text {
	row-gap: 0;
}

.choose_lawyer ul.visa_list_ban {
	margin: 30px 0;
}

.choose_lawyer ul.visa_list_ban li h5 {
	color: #000;
	border-color: #000;
}

.choose_lawyer ul.visa_list_ban li img {
	filter: invert(1);
}

section.choose_lawyer h4 {
	font-size: 24px;
	margin: 20px 0 0 0;
}

section.testimonial_sec {
	padding: 100px 0;
}

.reviewer_box {
	padding: 30px;
	background-color: #f6f2ea;
	text-align: center;
	flex-direction: column;
	display: flex;
	row-gap: 20px;
	height: 100%;
	justify-content: space-between;
	border-radius: 15px;
}

.reviewer_box h5 {
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 25px;
	text-align: center;
	color: #000;
	margin: 0;
}

.testi_review_head p {
	margin: 0;
}

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

.reviewer_box img {
	max-width: 156px;
}

.testiomonial_body {
	margin: 40px 0 40px 0;
}

section.frequently_ques {
	padding: 100px 0;
}

.accordion_faq {
	max-width: 1114px;
	margin: 43px auto 0;
}

.accordion_faq div#accordion {
	flex-direction: column;
	display: flex;
	row-gap: 16px;
}

.accordion_faq div#accordion div.card-header {
	padding: 20px 30px;
	background-color: #fff;
}

.accordion_faq div#accordion .card {
	border: none;
	border-radius: 8px;
	overflow: hidden;
}

.accordion_faq div#accordion div.card-header.collapsed {
	background-color: #001833;
	border: none;
}

.accordion_faq div#accordion div.card-header button {
	width: 100%;
	text-align: left;
	padding: 0;
	border: none;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 25px;
	text-transform: capitalize;
	color: #fff;
	font-family: "Open Sans", sans-serif;
	text-decoration: none;
	display: block;
	color: #0b2a4e;
}

.accordion_faq div#accordion div.card-header.collapsed button {
	color: #fff;
}

.accordion_faq div#accordion .card .card-body p {
	color: #000;
}

.accordion_faq div#accordion .card .card-body {
	padding: 0px 30px;
}

.accordion_faq div#accordion .card .card-body .card_body_in {
	padding: 20px 0 20px 0;
	border-top: 2px solid #0b2a6b;
}

header nav.navbar.jumbo_menu_main div#navbarNav li.more-list.jumbo_parent_menu.jumbo_parent_menu_more ul.sub-menu.jumbo_menu.more_jumbo_menu {
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

header nav.navbar.jumbo_menu_main div#navbarNav li.more-list.jumbo_parent_menu.jumbo_parent_menu_more ul.sub-menu.jumbo_menu li.menu-item.sub-parent-menu > a {
	color: #0b2a4e;
	font-weight: 700;
	border-bottom: 2px solid;
	padding-left: 5px;
	font-size: 18px;
}

header nav.navbar.jumbo_menu_main div#navbarNav li.more-list.jumbo_parent_menu.jumbo_parent_menu_more ul.sub-menu.jumbo_menu li.menu-item.sub-parent-menu > a::after {
	display: none;
}

header nav.navbar.jumbo_menu_main div#navbarNav li.more-list.jumbo_parent_menu.jumbo_parent_menu_more ul.sub-menu.jumbo_menu.more_jumbo_menu > li:last-child > a::after {
	display: none;
}

header nav.navbar.jumbo_menu_main div#navbarNav li.more-list.jumbo_parent_menu.jumbo_parent_menu_more ul.sub-menu.jumbo_menu.more_jumbo_menu > li:last-child > a {
	pointer-events: none;
}

header div#navbarNav ul li ul.sub-menu.jumbo_menu li ul.sub-menu li a:hover::after {
	outline: 2px solid #fff !important;
	background-color: #fff !important;
}

.hightlight_text {
	text-align: center;
	text-transform: capitalize;
	margin: 30px 0 30px 0;
}

.hightlight_text h3 {
	font-weight: 600;
	color: #0b2a4e;
	border-bottom: 3px solid #0b2a4e;
	display: inline-block;
	padding: 8px 18px;
	font-size: 2rem;
}

.understading_img h4 {
	text-align: center;
	margin: 16px 0 0 0;
}

.understading_img a {
	color: #000;
}

.understading_img {
	text-align: center;
}

section.one_visa_banner .hightlight_text {
	flex-direction: column;
	display: flex;
	align-items: center;
	row-gap: 10px;
}

.banner_visa_main ul.visa_list_ban li a {
	background-color: #fff;
	color: #0b2a4e;
	font-size: 15px;
	display: inline-block;
	padding: 8px 28px;
	text-transform: capitalize;
	line-height: 1.1;
	position: relative;
	z-index: 1;
	overflow: hidden;
	font-weight: 600;
	border: 2px solid #fff;
	border-radius: 3px;
	text-decoration: none;
	margin: 10px 0 0 0;
}

section.how_apply.tile_from .look_back_box {
	text-align: center;
	background-color: #0b2a4e;
	color: #fff;
	height: 100%;
	padding: 20px 15px;
	border-radius: 20px;
}

section.podcast_in h2 {
	color: #fff;
}

.tl-header {
	background: linear-gradient(135deg, #1a3a5c 0%, #0b1120 60%);
	text-align: center;
	padding: 3rem 1rem 2rem;
	position: relative;
	overflow: hidden;
}

.tl-header::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(62, 207, 207, .12), transparent);
	pointer-events: none;
}

.tl-header .icon-hourglass {
	font-size: 1.6rem;
	color: #3ecfcf;
	vertical-align: middle;
	margin: 0 .4rem;
}

.tl-header h1 {
	font-size: clamp(2.4rem, 7vw, 4rem);
	font-weight: 900;
	letter-spacing: .22em;
	color: #fff;
	text-transform: uppercase;
	line-height: 1;
}

.tl-header .subtitle {
	margin-top: .55rem;
	font-size: .85rem;
	letter-spacing: .12em;
	color: #7a9bb5;
	text-transform: uppercase;
}

/* ── WRAPPER ── */
.tl-wrapper {
	max-width: 860px;
	margin: 0 auto;
	padding: 3rem 1rem 4rem;
	position: relative;
}

/* ── VERTICAL LINE ── */
.tl-line {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, transparent, #0b2a4e 8%, #0b2a4e 92%, transparent);
	z-index: 0;
}

/* ── ROW ── */
.tl-row {
	display: flex;
	/* align-items: center; */
	position: relative;
	margin-bottom: 3rem;
	z-index: 1;
}

/* left side */
.tl-left {
	flex: 1;
	padding-right: 2.8rem;
	text-align: right;
}

/* right side */
.tl-right {
	flex: 1;
	padding-left: 2.8rem;
	text-align: left;
}

/* empty half */
.tl-empty {
	flex: 1;
}

/* ── DOT ── */
.tl-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #0b2a4e;
	box-shadow: 0 0 0 4px #fff, 0 0 12px #0b2a4e;
	flex-shrink: 0;
	z-index: 2;
	margin-top: 20px;
}

/* ── CARD ── */
.tl-card {
	background: #0b2a4e;
	border: 1px solid rgba(62, 207, 207, .12);
	border-radius: 12px;
	padding: 1.1rem 1.3rem;
	position: relative;
	transition: transform .25s ease, box-shadow .25s ease;
}

.tl-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 32px rgba(62, 207, 207, .13);
}

/* arrow on right card (pointing left toward line) */

/* .tl-right .tl-card::before {
      content: '';
      position: absolute;
      left: -9px; top: 50%; transform: translateY(-50%);
      border: 9px solid transparent;
      border-right-color: #111c30;
    } */

/* ── ICON BADGE ── */
.tl-icon {
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
	font-size: 1.3rem;
	overflow: hidden;
}

/* brand colors */
.icon-linkedin {
	background: #0077b5;
}

.icon-facebook {
	background: #1877f2;
}

.icon-youtube {
	background: #f00;
}

.icon-twitter {
	background: #1da1f2;
}

.icon-tumblr {
	background: #35465c;
}

.icon-instagram {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.icon-pinterest {
	background: #e60023;
}

/* ── YEAR ── */
.tl-year {
	font-size: 1.8rem;
	font-weight: 900;
	line-height: 1;
	margin-bottom: .25rem;
	display: inline-block;
	border-bottom: 2px solid #fff;
	padding-bottom: 3px;
}

/* left rows: year in red */
.tl-year {
	color: #fff;
}

/* right rows: year in teal */
.tl-year {
	color: #fff;
}

.tl-name {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: .3rem;
}

.tl-desc {
	font-size: 1.05rem;
	color: #fff;
	line-height: 1.55;
	margin: 10px 0 20px 0;
}

.tl-icon img {
	width: 210px;
	aspect-ratio: 210/210;
	object-fit: cover;
	object-position: top;
}

.timeline_main_about {
	background-color: #fff;
	box-shadow: 0px 14px 14px rgba(0, 0, 0, .1);
	border-radius: 25px;
	padding: 30px 40px;
}

.steven_group_img img {
	aspect-ratio: 275/206;
	object-fit: cover;
	object-position: top;
}

.tl-row_main .tl-row:nth-child(even) .tl-empty {
	text-align: right;
}

.student_ban_img img {
	width: 100%;
}

.cardozo_in {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.cardozo_img img {
	width: 90px;
}

.cardozo_content {
	width: calc(100% - 90px);
	padding: 0 0 0 20px;
	flex-direction: column;
	display: flex;
	row-gap: 10px;
}

.cardozo_content p {
	margin: 0;
}

.cardozo_content h4 {
	margin: 0;
}

.student_text_ban h1 {
	font-size: 60px;
	border-bottom: 1px solid #0b2a4e;
	margin: 0;
}

.student_text_ban {
	flex-wrap: wrap;
	flex-direction: column;
	display: flex;
	row-gap: 30px;
	align-items: flex-start;
}

.student_text_ban p {
	margin: 0;
}

section.student_page_ban {
	padding: 100px 0;
	background-color: #f6f2ea;
}

section.professor_michael {
	padding-bottom: 100px;
}

section.professor_michael .section_head {
	padding: 50px 0;
	text-align: center;
	flex-direction: column;
	display: flex;
	row-gap: 20px;
	align-items: center;
	justify-content: center;
}

section.professor_michael .section_head h5 {
	font-weight: 400;
	font-size: 18px;
	line-height: 25px;
	text-align: center;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: #0b2a4e;
	display: inline-block;
	margin: 0;
	padding: 0 0 10px 0;
	border-bottom: 1px solid #0b2a4e;
}

section.professor_michael .section_head h2 {
	font-size: 36px;
	line-height: normal;
	margin: 0;
}

.classes_list_parent {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	row-gap: 60px;
	position: relative;
}

.class_card {
	text-align: center;
	padding: 10px;
	border-right: 1px solid #0b2a4e;
	position: relative;
	flex-direction: column;
	display: flex;
	justify-content: space-between;
	row-gap: 15px;
	align-items: center;
}

.classes_list_parent .class_card:nth-child(4n) {
	border-color: transparent;
}

.classes_list_parent .class_card::after {
	content: "";
	position: absolute;
	left: 1px;
	bottom: -30px;
	width: 100%;
	height: 1px;
	background-color: #0b2a4e;
}

.classes_list_parent .class_card:nth-last-child(-n+4)::after {
	display: none;
}

.class_card_head h5 {
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 30px;
	color: #0b2a4e;
	font-family: "Open Sans", sans-serif;
	display: inline-block;
	margin: 0;
	padding: 0 10px;
	background-color: #cee0f5;
	border-radius: 100px;
}

.class_card_head {
	flex-direction: column;
	display: flex;
	align-items: center;
	row-gap: 10px;
}

.class_card_head h3 {
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 30px;
	text-align: center;
	color: #000;
}

.class_card_foot a img {
	width: 24px;
}

.class_card_foot a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding-left: 20px;
	padding-right: 20px;
}

.class_card_foot {
	display: flex;
	justify-content: center;
	gap: 5px;
	flex-wrap: wrap;
}

.class_card_foot a:hover img {
	filter: brightness(0) saturate(100%) invert(13%) sepia(31%) saturate(2849%) hue-rotate(186deg) brightness(96%) contrast(96%);
}

section.student_page_ban .row {
	row-gap: 30px;
}

.text_highli {
	margin: 30px 0 0 0;
}

.text_highli p {
	font-weight: 700;
	margin: 0 auto;
	max-width: 767px;
}

.text_highli p a {
	color: #0b2a4e;
	text-decoration: underline;
}

.section-design-block {
	padding: 60px 0px;
	background: #f0f0f0;
	text-align: center;
	background-image: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2026/03/yellow-noise-scaled.jpg");
}

.section-design-block.nitro-lazy {
	background-image: none !important;
}

.new-section-title h1, .new-section-title h2 {
	font-size: 45px;
	line-height: 45px;
	font-weight: 500;
	margin-bottom: 5px;
	text-transform: capitalize;
}

.section-design-block .col-text-block p {
	margin-bottom: 0px;
	width: 100%;
	max-width: 900px;
	margin-inline: auto;
}

.section-slick {
	padding: 15px;
	position: relative;
	background: #0b2a4e;
}

/* .section-slick a::before {
    background-color: #ffffff4a;
    position: absolute;
    content: '';
    width: 1px;
    left: 15%;
    height: calc(100% - 11%);
    top: 3px;
} */
.section-slick a {
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	gap: 30px;
	color: #fff;
	font-weight: 600;
	text-transform: capitalize;
	font-size: 20px;
}

.section-slick a img {
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(21deg) brightness(104%) contrast(103%);
	width: 100%;
	max-width: 40px;
}

.visa-practice-section-new {
	background-color: #f5f1e8;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.visa-image-column {
	height: 100%;
	object-fit: cover;
}

.visa-image-column {
	position: absolute;
	width: 100%;
	max-width: 50%;
	right: 0;
	top: 0;
	height: 100%;
}

.visa-practice-section-new .visa-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 100px;
	width: 100%;
	max-width: 608px;
	margin-left: auto;
}

.visa-image-column img {
	width: 100%;
	object-fit: cover;
	max-width: 100%;
	height: 100%;
}

.section-block-space {
	padding: 75px 0px;
}

.visa-practice-section-new p {
	margin-bottom: 15px;
	color: #fff;
}

.visa-practice-section-new hr {
	border-top: 1px solid rgba(255, 255, 255, .48);
}

.new-section-title-root b {
	margin-bottom: 15px;
	padding-bottom: 15px;
	display: block;
	border-bottom: 1px solid rgba(255, 255, 255, .48);
	color: #fff;
	font-weight: 700;
	text-transform: capitalize;
}

.visa-practice-section-new .container {
	position: relative;
	z-index: 1;
}

.visa-practice-section-new::after {
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	background: #0b2a4e;
	background: linear-gradient(90deg, rgba(11, 42, 78, 0%) 0%, rgba(11, 42, 78, 73%) 35.51%, #0b2a4e 86.9%);
}

.visa-content-column {
	padding: 0 0 0 45px;
	border-left: 2px solid rgba(255, 255, 255, .48);
	position: relative;
	z-index: 9;
}

.visa-advice-section .visa-advice-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	position: relative;
	align-items: center;
}

/* .visa-advice-section .visa-advice-row::before {
    height: calc(100% - 13%);
    width: 1px;
    background-color: #00000047;
    position: absolute;
    content: '';
    left: 50%;
} */
.visa-advice-image-column img {
	width: 100%;
	object-fit: cover;
	max-width: 100%;
}

.visa-advice-image-column {
	padding: 10px;
	border: 1px solid #eee;
	box-shadow: rgba(0, 0, 0, .15) 1.95px 1.95px 2.6px;
	background: #fff;
}

.visa-advice-section {
	background-image: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2026/03/yellow-noise-scaled.jpg");
}

.visa-advice-section.nitro-lazy {
	background-image: none !important;
}

.center-title-block {
	background: #0b2a4e;
	padding: 12px 0px;
	text-align: center;
}

.visa-advice-section {
	background-color: #f0f0f0;
}

.center-title-block .new-section-title-root h2 {
	color: #fff;
	margin-bottom: 0px;
	font-size: 36px;
	font-weight: 500;
}

.Consular-Tip {
	background-image: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2026/03/yellow-noise-scaled.jpg");
}

.Consular-Tip.nitro-lazy {
	background-image: none !important;
}

.main-section-grid-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.section-head-block p {
	text-align: center;
	width: 100%;
	max-width: 950px;
	margin-inline: auto;
	margin-bottom: 35px;
	border-bottom: 1px solid rgba(0, 0, 0, .14);
	padding-bottom: 35px;
}

.main-section-grid-block .card-grid {
	max-width: 886px;
	margin: 0 auto;
	text-align: center;
	background: #fff;
	box-shadow: 0px 14px 14px rgba(0, 0, 0, .1);
	border-radius: 25px;
	padding: 30px 20px;
}

.main-section-grid-block .card-grid p {
	margin-bottom: 0px;
}

.main-section-grid-block .card-grid h3 {
	color: #001833;
	font-weight: 500;
}

.ds160-info-section {
	background: #0b2a4e;
}

.ds160-info-image-column img {
	width: 100%;
	padding: 10px;
	border: 1px solid #eee;
	box-shadow: rgba(0, 0, 0, .15) 1.95px 1.95px 2.6px;
	background: #fff;
	height: 100%;
	object-fit: cover;
}

.ds160-info-image-column {
	height: 100%;
	object-fit: cover;
}

.ds160-info-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 55px;
}

.ds160-info-section hr {
	border-top: 1px solid rgba(255, 255, 255, .26);
}

.ds160-info-section p {
	color: #fff;
}

.new-bg-section {
	padding: 75px 0px;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 550px;
	display: flex;
	position: relative;
	align-items: center;
}

.new-bg-section .container {
	position: relative;
	z-index: 1;
}

.text-block-section p {
	color: #000;
}

.text-block-section {
	box-shadow: unset;
	margin: 0px auto;
	background: #fff;
	box-sizing: unset;
	border-radius: 0px;
	color: #000;
	padding: 25px;
	width: 100%;
	max-width: 560px;
	margin-left: unset;
	text-align: left;
	outline: 5px solid rgba(11, 42, 78, .55);
}

.cads-section-new .section-head {
	text-align: center;
	width: 100%;
	max-width: 1072px;
	margin-inline: auto;
	margin-bottom: 45px;
}

.cads-section-new ul.List-root-block {
	display: flex;
	list-style: none;
	padding: 0px;
	margin: 0px;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.List-root-block li {
	padding: 20px;
	background: linear-gradient(180deg, #0b2a4e 0%, #031a35 100%);
	border-radius: 15px;
	display: flex !important;
	flex-direction: column;
	align-items: flex-start;
	gap: 11px;
	transition: all ease .5s;
	width: 23.3333333%;
	height: 203px;
	color: #fff;
	font-size: 16px;
	line-height: 28px;
}

.support-funds-grid {
	position: relative;
	margin-top: 0px;
	transition: all .3s;
	background-color: #fff;
	width: 100%;
	max-width: 915px;
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1fr;
	text-align: left;
	gap: 114px;
	align-items: center;
	border-radius: 0px;
	box-shadow: 2px 2px 2px #ccc;
	padding: 20px;
	border-top: 2px solid #041c38 !important;
	border: 1px solid #eee;
}

.support-funds-grid .left-image {
	position: relative;
	padding: 10px;
	background: #fff;
	display: flex;
	align-items: end;
	justify-content: center;
	width: 100%;
	border-radius: 20px;
}

.support-funds-grid .left-image img {
	display: block;
	width: 200px;
	animation: upDown 3s ease-in-out infinite;
}

.support-funds-grid .right-text p {
	margin: 0px;
	text-transform: capitalize;
	font-weight: 500;
	background: transparent;
	color: #000;
	margin-bottom: 15px;
	width: fit-content;
	margin-top: 12px;
	text-align: center;
}

.support-funds .section_head h2 {
	color: #000;
	line-height: 1.5;
}

/* .main-section-grid-block .card-grid:first-child {
    grid-column: 1/5;
} */
.doc-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .14);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: bold;
	flex-shrink: 0;
}

.cads-section-new {}

.support-funds {
	background-image: url("https://cdn-dphal.nitrocdn.com/ukQhmKzfeNWyTOnwFKmYyArXSkpcplCB/assets/images/optimized/rev-aa3f9e8/www.wildeslaw.com/wp-content/uploads/2026/03/yellow-noise-scaled.jpg");
}

.support-funds.nitro-lazy {
	background-image: none !important;
}

.bg-blue {
	background: #0b2a4e;
}

.bg-blue p {
	color: #fff;
	max-width: 100%;
	margin: 0 auto;
	text-align: left;
	padding: 0px;
	border-radius: 0px;
	margin-bottom: 20px;
	background: transparent;
	box-shadow: unset;
	border-bottom: 1px solid rgba(255, 255, 255, .19);
	padding-bottom: 15px;
}

.bg-blue p:last-child {
	padding-bottom: 0px;
	border: 0px;
}

.section-head {
	text-align: center;
	margin-bottom: 45px;
}

.compliance-wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin-top: 10px;
}

.compliance-item {
	min-height: 170px;
	padding: 26px 24px;
	background: rgba(255, 255, 255, .9);
	border: 1px solid #e2e8ef;
	border-radius: 10px;
	box-shadow: 0 8px 22px rgba(8, 34, 74, .08);
	display: flex;
	overflow: hidden;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	text-align: center;
	position: relative;
	transition: .8s;
	z-index: 11;
}

.compliance-item:hover p {
	color: #fff;
}

.compliance-item:hover::after {
	transform: translateY(0%);
}

.compliance-item::after {
	height: 100%;
	width: 100%;
	background-color: #0b2a4e;
	position: absolute;
	content: "";
	z-index: -1;
	transition: .7s;
	transform: translateY(99%);
}

.compliance-item p {
	margin: 0;
	font-size: 17px;
	font-weight: 600;
	color: #061b3d;
}

.compliance-icon {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: #e8f1fa;
	color: #08224a;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: Arial, sans-serif;
	font-size: 34px;
	line-height: 1;
}

.compliance-icon img {
	width: 100%;
	max-width: 50px;
	filter: brightness(0) saturate(100%) invert(17%) sepia(7%) saturate(5429%) hue-rotate(174deg) brightness(91%) contrast(104%);
}

.compliance-item:nth-child(8) .compliance-icon img {
	max-width: 41px;
}

.compliance-item:nth-child(5) .compliance-icon img {
	max-width: 53px;
}

.compliance-item:nth-child(6) .compliance-icon img {
	max-width: 44px;
}

.compliance-item:nth-child(4) .compliance-icon img {
	max-width: 46px;
}

.new-section-title-root h2 {
	font-size: 36px;
	margin-bottom: 10px;
}

.visa-practice-section-new .new-section-title-root h2 {
	color: #fff;
}

.bg-blue2 p {
	color: #000;
	text-align: center;
}

.col-text2 {
	width: 100%;
	max-width: 1035px;
	margin-inline: auto;
}

.Compliance-new-section2 {
	background: #fff;
	background-image: unset !important;
}

.Compliance-new-section2 .compliance-wrapper {
	grid-template-columns: 1fr 1fr 1fr;
}

.Compliance-new-section2 .compliance-item p {
	font-size: 16px;
}

.Compliance-new-section2 .section-head {
	max-width: 867px;
	margin-inline: auto;
}

.Compliance-new-section2 .compliance-wrapper {
	margin-block: 35px;
}

.section-footer p {
	width: 100%;
	max-width: 1111px;
	margin-inline: auto;
	text-align: center;
}

.support-funds-grid .right-text p a {
	color: #001833;
	padding: 0px 4px;
	font-weight: 600;
}

.visa-advice-section .visa-advice-row p a:not(.common-btn) {
	color: #001833;
	padding: 0px 4px;
	font-weight: 600;
}

@media (max-width: 991.98px) {
	.section-design-block {
		padding: 35px 0px;
	}
	
	.new-section-title h1 {
		font-size: 30px;
	}
	
	.section-slick a {
		gap: 18px;
		font-size: 17px;
		flex-direction: column;
		text-align: center;
	}
	
	.section-slick a::before {
		display: none;
	}
	
	.visa-practice-section-new::after {
		background: #f2f2f2;
	}
	
	.new-section-title-root b {
		font-weight: 700;
	}
	
	.visa-content-column {
		padding: 0px;
		border-left: 0px;
	}
	
	.new-section-title-root b {
		border-bottom: 1px solid rgba(0, 0, 0, .48);
	}
	
	.visa-practice-section-new p {
		color: #000;
	}
	
	.section-block-space {
		padding: 35px 0px;
	}
	
	.new-section-title-root b {
		color: #000;
	}
	
	.visa-advice-section .visa-advice-row {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.center-title-block .new-section-title-root h2 {
		font-size: 30px;
	}
	
	.main-section-grid-block {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	
	.main-section-grid-block .card-grid {
		padding: 20px;
	}
	
	.ds160-info-row {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.new-bg-section {
		padding: 35px 0px;
		min-height: auto;
	}
	
	.text-block-section {
		width: auto;
		max-width: auto;
	}
	
	.List-root-block li {
		width: 100%;
		height: auto;
	}
	
	.compliance-wrapper {
		grid-template-columns: 1fr;
		margin-top: 0px;
	}
	
	.visa-practice-section-new .new-section-title-root h2 {
		color: #000;
	}
	
	.new-section-title-root h2 {
		font-size: 28px;
		margin-bottom: 10px;
		line-height: normal;
	}
	
	.visa-practice-section-new hr {
		border-top: 1px solid rgba(0, 0, 0, .48);
	}
	
	.Compliance-new-section2 .compliance-wrapper {
		grid-template-columns: 1fr;
	}
	
	.visa-advice-image-column img {
		height: auto !important;
	}
	
	.visa-practice-section-new {
		background: #fff !important;
		border-bottom: 5px solid #0b2a4e !important;
	}
	
	.page-id-37706 .visa-practice-section-new::after {
		background: #fff !important;
	}
	
	.page-id-37689 .visa-practice-section-new::after {
		background: #fff !important;
	}
	
	.page-id-37691 .visa-practice-section-new::after {
		background: #fff !important;
	}
}

@media only screen and (min-width: 992px) {
	.tl-row_main .tl-row:nth-child(odd) .tl-dot {
		position: relative;
		left: -22px;
	}
	
	.tl-row_main .tl-row:nth-child(even) .tl-dot {
		position: relative;
		right: -22px;
	}
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(22px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.tl-row {
	animation: fadeUp .5s ease both;
}

.tl-row:nth-child(1) {
	animation-delay: .05s;
}

.tl-row:nth-child(2) {
	animation-delay: .15s;
}

.tl-row:nth-child(3) {
	animation-delay: .25s;
}

.tl-row:nth-child(4) {
	animation-delay: .35s;
}

.tl-row:nth-child(5) {
	animation-delay: .45s;
}

.tl-row:nth-child(6) {
	animation-delay: .55s;
}

.tl-row:nth-child(7) {
	animation-delay: .65s;
}

@media only screen and (max-width: 1199px) {
	ul.subs_social li {
		padding: 10px 16px;
	}
	
	.student_text_ban h1 {
		font-size: 46px;
	}
	
	.cardozo_in {
		align-items: flex-start;
	}
	
	.classes_list_parent {
		grid-template-columns: 1fr 1fr 1fr;
	}
	
	.classes_list_parent .class_card:nth-child(4n) {
		border-color: #0b2a4e;
	}
	
	.classes_list_parent .class_card:nth-child(3n) {
		border-color: transparent;
	}
	
	.classes_list_parent .class_card:nth-last-child(-n+4)::after {
		display: block;
	}
	
	.classes_list_parent .class_card:nth-last-child(-n+3)::after {
		display: none;
	}
}

@media only screen and (max-width: 991.5px) {
	.expect_text {
		margin: 30px 0 0 0;
	}
	
	.full_image {
		max-width: 450px;
		margin: 0 auto 30px;
	}
	
	.tl-line {
		left: 20px;
	}
	
	.tl-row {
		flex-direction: column;
		align-items: flex-start;
		padding-left: 44px;
		margin-bottom: 2rem;
	}
	
	.tl-dot {
		position: absolute;
		left: -3px;
		top: 18px;
	}
	
	.tl-left, .tl-right, .tl-empty {
		flex: none;
		width: 100%;
		padding: 0;
		text-align: left;
	}
	
	.tl-left .tl-card::after, .tl-right .tl-card::before {
		display: none;
	}
	
	.tl-row_main .tl-row:nth-child(odd) {
		flex-direction: column-reverse;
	}
	
	.tl-row_main .tl-row img {
		width: 80px;
	}
	
	.tl-row_main .tl-row:nth-child(even) .tl-empty {
		text-align: left;
	}
	
	.class_card_foot a img {
		width: 16px;
	}
	
	.class_card_foot a {
		gap: 8px;
		padding-left: 10px;
		padding-right: 10px;
		font-size: 14px;
	}
	
	.class_card_head h3 {
		font-size: 18px;
		line-height: 26px;
	}
	
	.student_text_ban h1 {
		font-size: 36px;
	}
}

@media (max-width: 767px) {
	.page-id-43396 .tab-content .tab-pane .video-gallery iframe {
		height: 200px;
	}
	
	section.wild_files_about, section.what_expect {
		padding: 50px 0;
	}
	
	section.youtube_video {
		padding: 50px 0;
	}
	
	.podcast_short_list ul.nav a.nav-link {
		font-size: 18px;
		line-height: 26px;
	}
	
	section.awards-section.awards-public-office .awards-column {
		grid-template-columns: 1fr;
	}
	
	.classes_list_parent {
		grid-template-columns: 1fr 1fr;
	}
	
	.classes_list_parent .class_card:nth-child(3n) {
		border-color: #0b2a4e;
	}
	
	.classes_list_parent .class_card:nth-child(2n) {
		border-color: transparent;
	}
	
	.classes_list_parent .class_card:nth-last-child(-n+3)::after {
		display: block;
	}
	
	.classes_list_parent .class_card:nth-last-child(-n+2)::after {
		display: none;
	}
}

@media only screen and (max-width: 575px) {
	.full-width.contact_us.loct address.address {
		min-height: auto;
	}
	
	.partsect .row {
		row-gap: 0;
	}
	
	.heading_section h2:before {
		top: 0;
	}
	
	ul.understnd_list {
		width: 100%;
		grid-template-columns: 1fr;
	}
	
	ul.bimmgrt li, li {
		font-size: 14px;
	}
	
	.classes_list_parent {
		grid-template-columns: 1fr;
	}
	
	.classes_list_parent .class_card:nth-child(2n) {
		border-color: #0b2a4e;
	}
	
	.classes_list_parent .class_card:nth-child(1n) {
		border-color: transparent;
	}
	
	.classes_list_parent .class_card:nth-last-child(-n+2)::after {
		display: block;
	}
	
	.classes_list_parent .class_card:nth-last-child(-n+1)::after {
		display: none;
	}
	
	.student_text_ban h1 {
		font-size: 30px;
		padding-bottom: 10px;
		text-align: center;
	}
	
	section.student_page_ban {
		padding: 50px 0;
		background-color: #f6f2ea;
	}
	
	section.professor_michael {
		padding-bottom: 50px;
	}
	
	.cardozo_img img {
		width: 60px;
	}
	
	.cardozo_content {
		width: calc(100% - 60px);
		padding: 0 0 0 10px;
	}
	
	.cardozo_in {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		row-gap: 10px;
	}
	
	section.professor_michael .section_head {
		padding: 40px 0 30px;
	}
	
	section.professor_michael .section_head h2 {
		font-size: 28px;
	}
}

.page-id-37679 .visa-practice-section-new::after {
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	background: #0b2a4e;
	background: linear-gradient(90deg, rgba(11, 42, 78, 0%) 0%, rgba(11, 42, 78, 0%) 35.51%, rgba(11, 42, 78, 0) 86.9%);
	display: none;
}

.page-id-37689 .visa-practice-section-new::after {
	background: #0b2a4e;
	background: linear-gradient(90deg, rgba(11, 42, 78, 0%) 0%, rgba(11, 42, 78, 11%) 35.51%, #0b2a4e 86.9%);
}

.page-id-37691 .visa-practice-section-new::after {
	background: #0b2a4e;
	background: linear-gradient(90deg, rgba(11, 42, 78, 0%) 0%, rgba(11, 42, 78, 49%) 35.51%, #0b2a4e 86.9%);
}

.page-id-37706 .visa-practice-section-new::after {
	background: #0b2a4e;
	background: linear-gradient(90deg, rgba(11, 42, 78, 0%) 0%, rgba(11, 42, 78, 47%) 35.51%, #0b2a4e 86.9%);
}

.detail_prise br {
	display: none;
}

.detail_prise p {
	margin-bottom: 15px;
}

@media only screen and (max-width: 991px) {
	.page-id-37675 .banner_visa_main {
		background: #f5f5f5 !important;
		padding: 45px 0px;
	}
	
	.page-id-37675 .one_visa_text {
		padding: 0px;
		border-left: 0px solid #fff;
	}
	
	.page-id-37675 .banner_visa_main::after {
		display: none;
	}
	
	.page-id-37675 .one_visa_banner .col-md-6 {
		width: 100%;
		max-width: 100%;
		flex: 100%;
	}
	
	.page-id-37675 .one_visa_text h1 {
		color: #000;
		padding: 0 0 10px 0;
		border-bottom: 1px solid #000;
	}
	
	.page-id-37675 .one_visa_text * {
		color: #000;
	}
	
	.page-id-37675 .one_visa_text a.common-btn.white-btn {
		background-color: #0b2a4e;
		color: #fff;
		border-color: #fff;
	}
	
	.page-id-37675 .banner_visa_main::after {
		display: none;
	}
	
	.page-id-37675 .pricing-detail {
		padding: 45px 0px;
	}
	
	.page-id-37675 .pricing-detail.image_with_prising .detail_prise {
		padding: 25px;
		margin-bottom: 25px;
	}
	
	.page-id-37675 .how_apply {
		padding: 45px 0;
	}
	
	.page-id-37675 .how_apply .row {
		row-gap: 25px;
	}
	
	.topbar .container {
		padding-right: 10px;
		padding-left: 10px;
	}
}

@media (max-width: 991px) {
	section.understanfing, section.why_01_visa, section.how_apply, section.testimonial_sec, section.frequently_ques {
		padding: 35px 0;
	}
	
	.section_head_common h2 {
		font-size: 34px;
		line-height: normal;
	}
	
	section.pricing-detail.image_with_prising .detail_prise {
		max-width: 100%;
		border-radius: 5px;
		padding: 15px;
	}
	
	.accordion_faq div#accordion div.card-header {
		padding: 15px;
	}
	
	.page-id-37675 .how_apply .row {
		row-gap: 0;
	}
	
	.how_apply_main h4 {
		font-size: 24px;
	}
	
	.reviewer_box {
		margin-bottom: 15px;
		height: auto;
	}
	
	.accordion_faq div#accordion div.card-header.collapsed button {
		white-space: normal;
	}
	
	.List-root-block li br {
		display: none;
	}
	
	.understnding_text {
		margin-bottom: 25px;
	}
	
	section.how_apply .row {
		row-gap: 0;
	}
	
	.how_apply_main {
		margin: 15px 0 0 0;
	}
}

@media (max-width: 1024px) {
	.new-bg-section {
		background-attachment: inherit;
	}
}

@media (max-width: 992px) {
	.visa-practice-section-new p a {
		color: #0b2a4e;
		font-weight: 600;
	}
	
	.visa-practice-section-new .visa-row {
		width: 100%;
	}
	
	.section-1 .title-area {
		padding-top: 25px;
	}
	
	.section-2 .education-block {
		padding-top: 25px;
	}
	
	.section-4 .visa_main_non-slide {
		grid-template-columns: repeat(1, 1fr);
	}
	
	section.new-bg-section h3, section.section-6 h3, section.section-2 h3 {
		font-size: 18px;
		font-weight: 600;
	}
}

/* ---------- Advice split ---------- */
.advice-section {
	background: var(--cream);
}

.advice-section .advice-copy {
	padding-left: 22px;
	border-left: 4px solid var(--navy);
}

.advice-section .advice-copy h2 {
	font-size: 32px;
	margin-bottom: 18px;
}

.advice-media {
	position: relative;
	padding: 12px;
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: 0 10px 28px rgba(11, 42, 78, .1);
}

.advice-media::before {
	content: "";
	position: absolute;
	top: -10px;
	left: -10px;
	width: 70px;
	height: 70px;
	border-top: 4px solid var(--navy);
	border-left: 4px solid var(--navy);
	z-index: 1;
}

.advice-section .advice-img {
	width: 100%;
	height: 100%;
	min-height: 340px;
	object-fit: cover;
}

/* ---------- Who can apply checklist ---------- */
.apply-section {
	background: #072342;
}

.apply-section .apply-head h2 {
	color: #fff !important;
	font-size: 34px;
	font-weight: 500;
	margin-bottom: 12px;
}

.apply-section .apply-intro {
	color: rgba(255, 255, 255, .85);
	max-width: 720px;
	margin: 0 auto 36px;
}

.check-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.check-grid li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px 18px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .18);
	color: var(--white);
	font-size: 15px;
	line-height: 1.45;
	transition: background .3s ease, transform .3s ease;
}

.check-grid li:hover {
	background: rgba(255, 255, 255, .14);
	transform: translateY(-2px);
}

.check-icon {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--white);
	color: #072342;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.apply-note {
	margin-top: 28px;
	text-align: center;
	color: rgba(255, 255, 255, .9);
}

/* ---------- Benefits / tip cards ---------- */
.tips-section {
	background: #f5f1e8;
}

.tips-section .section-heading {
	margin-bottom: 40px;
}

.tips-section .section-heading h2 {
	font-size: 32px;
}

.tip-card {
	background: var(--white);
	border: 1px solid rgba(11, 42, 78, .12);
	border-top: 4px solid #072342;
	padding: 28px 24px 26px;
	height: 100%;
	position: relative;
	transition: box-shadow .3s ease, transform .3s ease;
}

.tip-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 28px rgba(11, 42, 78, .12);
}

.tip-num {
	display: block;
	font-size: 28px;
	font-weight: 700;
	color: #072342;
	line-height: 1;
	margin-bottom: 12px;
}

.tip-card h3 {
	color: #072342;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 12px;
}

.tip-card p {
	margin-bottom: 0;
}

.tips-section .row {
	row-gap: 30px;
}

/* ---------- Process (navy split) ---------- */
.process-section {
	background: linear-gradient(160deg, #0b2a4e 0%, #031a35 100%);
	color: var(--white);
}

.process-section h2 {
	color: var(--white) !important;
	margin-bottom: 14px;
}

.process-section .process-lead {
	color: rgba(255, 255, 255, .9);
	margin-bottom: 28px;
}

.tips-section .new-section-title {
	margin-bottom: 30px;
}

.process-media {
	height: 100%;
	padding: 10px;
	background: var(--white);
	border: 1px solid rgba(255, 255, 255, .25);
}

.process-img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
}

.process-steps {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.process-steps li {
	display: flex;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.process-steps li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.step-count {
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--white);
	color: #082444;
	font-weight: 700;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.process-section .step-title {
	font-weight: 700;
	margin-bottom: 4px;
	color: var(--white);
}

.process-steps p {
	color: rgba(255, 255, 255, .92);
	margin-bottom: 0;
}

.process-steps .step-title + p {
	margin-top: 0;
}

/* ---------- Our Lawyers bg ---------- */
.lawyers-section {
	position: relative;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 75px 0;
	min-height: 480px;
	display: flex;
	align-items: center;
}

.lawyers-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(11, 42, 78, .55);
}

.lawyers-section .container {
	position: relative;
	z-index: 1;
}

.lawyers-box {
	background: var(--white);
	padding: 28px 26px;
	max-width: 560px;
	outline: 5px solid rgba(11, 42, 78, .35);
	border-left: 5px solid #072342;
}

.lawyers-box h2 {
	margin-bottom: 14px;
}

.lawyers-box p:last-child {
	margin-bottom: 0;
}

/* ---------- Why choose / compliance ---------- */
.why-section {
	background: #f5f1e8;
}

.why-section .why-intro {
	text-align: center;
	max-width: 860px;
	margin: 0 auto 36px;
}

.why-section .why-intro h2 {
	margin-bottom: 12px;
}

.why-card {
	padding: 26px 24px;
	background: var(--white);
	border: 1px solid rgba(4, 28, 56, .16);
	box-shadow: 0 8px 22px rgba(8, 34, 74, .08);
	text-align: center;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: .7s;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 260px;
	margin-bottom: 30px;
}

.why-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: #041b37;
	z-index: -1;
	transform: translateY(100%);
	transition: .7s;
}

.why-card:hover::after {
	transform: translateY(0);
}

.why-card:hover p, .why-card:hover strong {
	color: var(--white);
}

.why-icon {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: #f5f1e8;
	display: flex;
	align-items: center;
	justify-content: center;
}

.why-icon img {
	width: 50px;
	height: auto;
	filter: brightness(0) saturate(100%) invert(17%) sepia(7%) saturate(5429%) hue-rotate(174deg) brightness(91%) contrast(104%);
}

.why-card p {
	margin: 0;
	font-size: 16px;
	color: #000;
	transition: color .4s;
}

.why-card strong {
	color: #072342;
	transition: color .4s;
}

/* ---------- FAQ (Bootstrap 4 accordion) ---------- */
.faq-section {
	background: var(--cream);
}

.faq-section .section-heading {
	margin-bottom: 10px;
}

.faq-section .faq-label {
	color: #072342;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.faq-section .section-heading h2 {
	font-size: 32px;
}

.accordion_faq {
	max-width: 1114px;
	margin: 28px auto 0;
}

.accordion_faq .accordion {
	display: flex;
	flex-direction: column;
	row-gap: 16px;
}

.accordion_faq .card {
	border: none;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	margin-bottom: 0;
}

.accordion_faq .card-header {
	padding: 20px 30px;
	background-color: #041c38;
	border: none;
	margin-bottom: 0;
	cursor: pointer;
}

.accordion_faq .card-header.collapsed {
	background-color: #041c38;
}

.accordion_faq .card-header h5 {
	margin: 0;
}

.accordion_faq .card-header .btn-link {
	width: 100%;
	text-align: left;
	padding: 0;
	border: none;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 25px;
	text-transform: capitalize;
	color: #fff;
	font-family: "Open Sans", sans-serif;
	text-decoration: none;
	display: block;
	white-space: normal;
	box-shadow: none;
}

.accordion_faq .card-header .btn-link:hover {
	text-decoration: none;
	box-shadow: none;
}

.accordion_faq .card-header.collapsed .btn-link {
	color: #fff;
}

.accordion_faq .card-header.collapsed .btn-link:hover, .accordion_faq .card-header.collapsed .btn-link:focus {
	color: #fff;
}

.accordion_faq .card-body {
	padding: 0 30px 20px;
	background: #f0f2f3;
}

.accordion_faq .card_body_in {
	padding: 20px 0 0;
}

.accordion_faq .card_body_in p {
	color: #000;
	margin-bottom: 0;
}

/* ---------- Closing support ---------- */
.support-section {
	background: #f5f1e8;
}

.support-panel {
	background: #fff;
	border: 1px solid rgba(11, 42, 78, .12);
	border-top: 4px solid #031b36;
	padding: 32px 28px;
	height: 100%;
}

.support-panel h2 {
	font-size: 26px;
	margin-bottom: 14px;
	line-height: 1.2;
}

.support-panel-navy {
	background: #031b36;
	border-color: #031b36;
}

.support-panel-navy h2, .support-panel-navy p, .support-panel-navy p a {
	color: #fff;
}

.bottom-btn {
	margin-top: 30px;
}

.page-id-37681 .how_apply_main .row > div:nth-child(4) {
	border-right: 1px solid rgba(255, 255, 255, .1);
}

.page-id-37681 .how_apply_main .row > div:nth-child(3), .page-id-37681 .how_apply_main .row > div:nth-child(6) {
	border-right: 0px;
}

.page-id-45724 .how_apply_main .row > div:nth-child(4) {
	border-right: 1px solid rgba(255, 255, 255, .1);
}

.page-id-45724 .how_apply_main .row > div:nth-child(3), .page-id-45724 .how_apply_main .row > div:nth-child(6) {
	border-right: 0px;
}

.page-id-45682 .how_apply_main .row > div:nth-child(4) {
	border-right: 1px solid rgba(255, 255, 255, .1);
}

.page-id-45682 .how_apply_main .row > div:nth-child(3), .page-id-45682 .how_apply_main .row > div:nth-child(6) {
	border-right: 0px;
}

.page-id-45724 .tip-card {
	height: auto;
	margin-bottom: 25px;
}

.page-id-45724 .tip-num {
	font-size: 18px;
	font-family: "Conv_AGaramondPro-Regular";
}

.page-id-45724 .tip-card h3 {
	font-size: 28px;
}

.page-id-45724 .tips-section {
	background: #f5f1e8;
	overflow: visible;
}

.sticky-image-bx img {
	width: 100%;
	padding: 10px;
	border: 1px solid #eee;
	box-shadow: rgba(0, 0, 0, .15) 1.95px 1.95px 2.6px;
	background: #fff;
	height: 100%;
	object-fit: cover;
}

.sticky-image-bx {
	position: sticky;
	top: 50px;
}

.section-1 {
	overflow: visible;
}
