:root {
    --inter-font: "Inter", sans-serif;
    --dm-serif-font: "DM Serif Display", serif;
    /* 
    font-family: var(--inter-font); 
    font-family: var(--dm-serif-font); 
    */
}
/*==================== Header CSS ====================*/
header.main-header {
    z-index: 999;
    top: 0;
    width: 100%;
    padding: 0;
	position:fixed;
}
header.small-header{
    background: #fff;
}
.top-logo img {
    display: block;
    width: 80%;
}
.main-menu {
    display: inline-block;
    text-align: center;
    width: 100%;
}
.small-header {
    box-shadow: 0 0 10px rgba(0,0,0,0.50);
}

.ph-number {
    display: block;
    text-align: right;
    margin-left: 15px;
}
.ph-number a {
    font-size: 22px;
    font-weight: 700;
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #2E92E7;
}
.ph-number span {
    font-weight: 600;
    color: #062F54;
    line-height: normal;
    font-size: 0;
}

.header-contact {
    background: #062F54;
    display: flex;
    padding: 10px 15px;
    margin-left: 25px;
	align-items: center;
}
.header-contact a{
    color: #ffffff;
    font-weight: 600;
}
.header-contact .contact-btn{
	display: inline-flex;
    align-items: center;
}
.header-contact .contact-btn .icon{
	margin-right: 10px;
    padding: 5px;
	height: 35px;
	width: 35px;
	background: #fff;
	border-radius: 50%;
}
.header-contact .contact-btn svg, .header-contact .contact-btn img {
    width: 22px;
    height: 22px;    
	fill:#a91b2a !important;
}
.header-contact .contact-btn svg path{
	fill:#a91b2a !important;
}


ul.sociallinks {
    display: inline-flex;
    align-items: center;
}
ul.sociallinks li.yt a svg {
    height: 30px;
    width: 24px;
}
ul.sociallinks li {
    display: block;
    line-height: normal;
}
ul.sociallinks li a {
    padding: 10px 7px;
	display: block;
    line-height: normal;
	opacity:1;
}
ul.sociallinks li a svg, ul.sociallinks li a img{
	width:18px;
	height:18px;
	fill:#fff;
}
.footer-social-link ul.sociallinks li:nth-child(2) svg {
    stroke: #fff;
}
ul.sociallinks li a:hover{
	opacity:1;
}
.menu-right-side{
        display: inline-flex;
    align-items: center;
    justify-content: end;
}
/*==================== Header CSS END ====================*/

/*========= Nav Multiple CSS =========*/
.wrap-header {
    display: inline-flex;
    align-items: center;
    -ms-flex-pack: center!important;
    justify-content: space-between !important;
    width: 100%;
}
.menu-top {
    position: relative;
}
ul.menu-top li {
    display: inline-block;
    margin: 0;
    color: #000;
    position: relative;
    padding: 10px 10px;
    height: 100%;
    line-height: normal;
}
ul.menu-top > li.menu-item-has-children {
	padding-right: 26px;
}
ul.menu-top li:last-child{
	padding-right:0;
}
ul.menu-top li:first-child{
	padding-left:0;
}
ul.menu-top li ul {
	display: none;
}
.menu-top li a {
    color: #212121;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    text-decoration: none;
    height: 100%;
    font-weight: 400;
    text-transform: capitalize;
    font-family: "Raleway", sans-serif;
}
.menu-top li a:hover{
	transition: .3s ease-in-out all;
	color: #062f54;
}
/*.menu-top li a:hover::before{
	position: absolute;
    content: "";
    background: #a91b2a;
    left: 0;
    right: 0;
    bottom: -15px;
    height: 2px;
}*/
.menu-top li a:hover::before, .menu-header>ul>li.current_page_item > a::before, .menu-header>ul>li.current_page_ancestor > a::before {
    width:100%;
}
.menu-header>ul>li.current_page_item > a, .menu-header>ul>li.current_page_ancestor > a{
	color: #062F54;
    font-weight: 700;
}
/*.menu-header>ul>li.current_page_item > a::before, .menu-header>ul>li.current_page_ancestor > a::before {
    position: absolute;
    content: "";
    background: #a91b2a;
    left: 0;
    right: 0;
    bottom: -15px;
    height: 2px;
}
.menu-header>ul>li.current_page_item > a::after, .menu-header>ul>li.current_page_ancestor > a::after, .menu-top li a:hover::after {
    position: absolute;
    content: "";
    background: #a91b2a;
    left: 50%;
    right: 0;
    bottom: -20px;
    height: 7px;
    width: 7px;
    transform: rotate(45deg) translateX(-50%);
}*/
#mainNav>li.menu-item-has-children::before {
    content: "";
    right: 13px;
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    transform: rotate(45deg) translateY(-50%);
    -webkit-transform: rotate(45deg) translateY(-50%);
    -moz-transform: rotate(45deg) translateY(-50%);
    -o-transform: rotate(45deg) translateY(-50%);
    -ms-transform: rotate(45deg) translateY(-50%);
    border-right: 2px solid #2E92E7;
    border-bottom: 2px solid #2E92E7;
    transform-origin: 8px 0px;
}
.small-header .menu-top::before {
    display:none;
}
.sub-menu li.menu-item-has-children {
	position: relative;
}
.menu-top li > .sub-menu > li.menu-item-has-children:after {
    content: "";
    right: 8px;
    position: absolute;
    top: 50%;
    width: 9px;
    height: 9px;
    transform: rotate(-45deg) translateY(-50%);
    -webkit-transform: rotate(-45deg) translateY(-50%);
    -moz-transform: rotate(-45deg) translateY(-50%);
    -o-transform: rotate(-45deg) translateY(-50%);
    -ms-transform: rotate(-45deg) translateY(-50%);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform-origin: 0 2px;
}
ul.menu-top li:hover > ul {
    display: block;
    position: absolute;
    top: 100%;
}
ul.menu-top li:hover li {
	float: none;
}
.sub-menu li ul.sub-menu {
	position:absolute; 
	background-color:#2E92E7;
	z-index:99;
	top:0!important;
	left:100%;
}
.menu-top li ul li {
	border-top: 0;
	display: block;
	margin: 0;
}
/*ul.menu-top li .sub-menu li ul.sub-menu li > a {
    background-color: #2E92E7;
}*/
ul.menu-top li .sub-menu li ul.sub-menu li > a:hover, ul.menu-top li .sub-menu li ul.sub-menu li.current-menu-item > a{
    background: #062f54;
}
ul.menu-top li:hover li a:hover, .menu-top ul.sub-menu li.current_page_item a {
    background: #062f54;
}
ul.menu-top ul ul {
	left: 100%;
}
.sub-menu {
    background-color: #2E92E7;
    min-width: 230px;
    text-align: left;
}
ul.menu-top li .sub-menu li {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
ul.menu-top li .sub-menu li:last-child{
	border-bottom:none;
}
ul.menu-top li .sub-menu li a {
    font-size: 14px;
    padding: 12px 10px;
    text-transform: capitalize;
    line-height: normal;
    margin: 0;
    color: #fff;
    border: none;
    display: block;
    font-weight: 600;
}
ul.menu-top li .sub-menu li a:hover{
	border: none;
}
ul.menu-top li .sub-menu li a:hover::before, ul.menu-top li .sub-menu li a:hover::after {
    display: none;
}
.menu-top .sub-menu li.current_page_item a {
    background-color: #062f54;
    color: #fff;
}
.menu-top .sub-menu > li.current_page_item ul li a:hover, .menu-top .sub-menu > .current_page_ancestor > a {
    background-color: #062f54;
    color: #fff;
}
/*========= Nav Multiple CSS END =========*/

/*========= Header Search CSS END =========*/
.search-icon {
    cursor: pointer;
    transition: all ease-in-out .45s;
    margin-left: 40px;
    width: 22px;
    height: 22px;
    line-height: 22px;
}
.search-icon svg, .search-icon img {
    width: 24px;
    height: 24px;
    fill: #062F54;
}
.search-icon svg path{
	/*fill: #062F54;*/
	  fill: #ffffff;
}
.header-search-box {
    position: fixed;
    background-color: #fff;
    width: 100%;
    transition: all 0.5s ease 0s;
    opacity: 0;
    height: 0;
    top: 0;
    right: 0;
}
.header-search-box.open-search {
	opacity: 1; 
	height: 140px;
	z-index: 999999;
}
.header-search-box span.closebtn {
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: 20px;
    width: 35px;
    height: 35px;
}
.header-search-box span.closebtn::before, .header-search-box span.closebtn::after {
    position: absolute;
    content: "";
    height: 30px;
    width: 2px;
    background-color: #000;
}
.header-search-box span.closebtn::before {
	transform: rotate(45deg);
}
.header-search-box span.closebtn::after {
	transform: rotate(-45deg);
}
.header-search-box span.closebtn:hover::before, .header-search-box span.closebtn:hover::after{
	background-color: #a91b2a;
}

.header-search-box .search-input-wrap .searchform {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 70%;
    margin: 0 auto;
    width: 100%;
}
.header-search-box input.search {
	height: 55px;
	color: #000;
	padding: 8px 58px 8px 15px;
}
.header-search-box input.search:focus ~ .msg-side-form{
	display:none;
}
#site-searchs {
    top: 0;
    position: absolute;
    right: 0px;
    width: auto;
    height: 55px;
    border: none;
    padding: 13px 20px;
    line-height: 38px;
	cursor: pointer;
	background: none;
}
#site-searchs svg, #site-searchs img{
    width: 20px;
    height: 20px;
}
#site-searchs svg, #site-searchs svg path{
	fill:#1E191A;
}
/*========= Header Search CSS END =========*/

/*==================== Home Page CSS ====================*/
.banner-home {
    height: 100vh;
    /*height: -webkit-calc(100vh - 90px);
    height: -moz-calc(100vh - 90px);*/
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #000;
}
.banner-home:before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    /*background-image: url('../img/banner-overlay.svg');*/
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.4);
}
/*.logged-in .banner-home {
	margin-top:58px;
}*/
.banner-home .container {
    position: relative;
}
.banner-layout{
	z-index: 11;
    position: relative;
}
.banner-layout .inner-content{
    padding-bottom: 225px;
}
.banner-home .banner-title {
    font-size: 60px;
    color: #fff;
    font-weight: 700;
    line-height: 80px;
    text-transform: capitalize;
    text-shadow: 0 0 10px #000;
}
.banner-home .banner-title span{
	color: #062F54;
}
.banner-home .banner-des {
    color: #fff;
    text-shadow: 0 0 10px #000;
    line-height: 30px;
}
.banner-home .banner-des p{
    font-family: 'gilroy-light';
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}
.banner-home .btn{
     background: #fff;
     border: 2px solid #fff;
     color: #062F54;
}
.banner-home .btn:hover{
     background: #062F54;
     border: 2px solid #062F54;
     color: #fff;
}
.banner-social-link{
    position: absolute;
    right: 0;
    transform: rotate(90deg);
    top: 40%;
    width: 45px;
}
.banner-social-link ul.sociallinks{
    gap: 25px;
}
.banner-social-link ul.sociallinks li a{
    transform: rotate(-90deg);
}
.banner-form-section{
    margin-top: -175px;
    background: #FFFFFF1F;
    z-index: 111;
    position: relative;
    padding: 10px 0px;
    backdrop-filter: blur(12px);
}
.banner-form-wrap form input, .banner-form-wrap form textarea{
    height: 50px;
    padding-left: 0px;
    border-bottom: 1px solid #ffffff80;
    color: #FFFFFF;
    overflow: hidden;
    opacity: 100%;
}
.banner-form-wrap form input:focus{
    border-bottom: 1px solid #fff;
    opacity: 100%;
}
.banner-form-wrap form textarea:focus{
    border-bottom: 1px solid #fff;
     opacity: 100%;
}
.banner-form-wrap form input::placeholder{
    color: #c1c1c1;
     opacity: 100%;
}
.banner-form-wrap form textarea::placeholder{
   color: #c1c1c1;
    opacity: 100%;
}
.banner-form-wrap form input:focus::placeholder{
    color: #fff;
     opacity: 100%;
}
.banner-form-wrap form textarea:focus::placeholder{
   color: #fff;
    opacity: 100%;
}
.banner-form-wrap form .wpcf7-form-control-wrap{
    margin-bottom: 20px;
}
.banner-form-wrap form .submit-btn input[type=submit]:hover{
    background: #fff;
    color: #062F54;
    border: 2px solid #fff;
}
.banner-home::after {
    content: "";
    width: 1366px;
    height: calc(50% + 0px);
    border-left: 2px solid #fff;
    left: 20px;
    position: absolute;
    bottom: 0;
    margin: auto;
    right: 0px;
    z-index: 993;
    background: transparent;
    pointer-events: none;
}
.border-line-wrap::before {
    content: "";
    width: 1366px;
    height:100%;
    border-left: 2px solid #062F54;
    left: 20px;
    position: absolute;
    top: 0;
    z-index: -1;
    margin: auto;
    right: 0px;
}
.border-line-wrap {
    position: relative;
}
.small-container {
    max-width: 1200px !important;
}
.cases-section .consultation-btn-wrap {
   /*padding-left: 83px;*/
    position: relative;
	text-align: center;
}
.cases-section .consultation-btn-wrap:before {
   /* content: "";
    background-image: url(/wp-content/uploads/2024/05/arrow.png);
    width: 40px;
    height: 40px;
    position: absolute;
    left: -20px;
    background-size: 40px;
    background-repeat: no-repeat;
    top: 50%;
    transform: translateY(-50%);
    background-position: center;*/
}
.about-content-wrap p{
    color: #737373;
}
.about-image-wrap .play_btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 120px;
    width: 120px;
}
.about-image-wrap .play_btn img, .about-image-wrap .play_btn svg{
     height: 120px;
    width: 120px;
    transition: 0.3s;
}
.about-image-wrap:hover .play_btn img, .about-image-wrap:hover .play_btn svg{
    transform: scale(1.2);
} 
.image-title-wrap{
    position: absolute;
    left: 20px;
    bottom: 20px;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    font-family: 'gilroy-bold';
}
.image-title-wrap span{
    display: block;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}
.cases-section{
   /* background-repeat: no-repeat;
    background-position: left;
   background-size: 50% 90%;
    background-size: 50%;
*/
    position: relative;
}
.heading-section p{
    color: #062F54;
}
.sub-heading{
    color: #062F54;
    font-size: 20px;
     font-family: 'gilroy-medium';
    margin: 0;
    font-weight: 500;
}
.laws-types-wrap{
    background-color: #d3d3d3ed;
    text-align: center;
    padding: 25px 15px;
    margin-bottom: 20px;
    height: calc(100% - 20px);
	position: relative;
}

.laws-types-wrap .overlaylink {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}
.laws-types-wrap img, .laws-types-wrap svg{
    height: 75px;
    width: 75px;
    margin-bottom: 10px;
}
.laws_title{
    font-weight: 600;
    font-size: 22px;
    padding-top: 10px;
    border-top: 2px solid #2E92E7;
    color: #062F54;
}
.laws-types-wrap p{
    color: #062F54;
}
.laws-btn-wrap{
    float: right;
    margin-top: 20px;
}
.building-image-wrap{
    position: absolute;
    height: 100%;
    width: 97%;
    top: 0;
    left: 0;
    z-index: -11;
}
.building-image-wrap img{
    height: 82%;
    object-fit: cover;
    object-position: center;
    width: 54%;
}
.home-testimonials-sec{
    padding: 80px 0px 190px 0px;
}
.quotes-icon img, .quotes-icon svg{
    height: 25px;
    width: 25px;
}
.testimonials-content {
    color: #fff;
}
.home-testimonials-sec ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    bottom: -40px;
}
.home-testimonials-sec ul.slick-dots li button {
    font-size: 0px;
    width: 12px;
    height: 12px;
    box-shadow: none;
    border-radius: 50%;
    line-height: 100%;
    border: none;
    margin: 0 5px;
    border: 1px solid #fff;
}
.home-testimonials-sec ul.slick-dots li.slick-active button, .home-testimonials-sec ul.slick-dots li button:hover {
    background: #fff;
}

.home-testimonials-sec .slick-dots li button:before {
    font-size: 0px;
}
.testimonial-title-wrap{
    display: flex;
    justify-content: space-between;
        align-items: center;
}
.home-testimonials-sec .title{
    color: #fff;
    font-family: var(--dm-serif-font); 
    font-size: 22px;
}
/* the slides */
.home-testimonials-sec .slick-slide {
  margin: 0 27px;
}
.testimonial-btn-wrap{
    display: flex;
    align-items: center;
    gap: 20px;
        margin-top: 50px;
}

/* the parent */
.home-testimonials-sec .slick-list {
  margin: 0 -27px;
}
.home-testimonials-sec .star-wrap{
text-align: right;
color: #fff;
}
.home-testimonials-sec .star-wrap a{
    color: #fff;
    font-weight: 700;
}
.testimonial-slider button.slick-next:before {
    content: '⟶';
    position: absolute;
    top: 0;
    right: -15px;
    height: 18px;
    width: 0px;
    font-size: 32px;
}
.testimonial-slider button.slick-prev:before {
    content: '⟵';
    position: absolute;
    top: 0;
    left: -25px;
    height: 18px;
    width: 0px;
    font-size: 32px;
}
.google-rating{
    display: flex;
    align-items: center;
}
.google-rating svg.google-icon, .google-rating img.google-icon{
    height: 30px;
    width: 30px;
    margin-right: 12px;
}
.call-section{
    margin-top: -120px;
}
.call-details-wrapper{
    background: #2E92E7;
    padding: 40px;
}
.call-details-wrapper .heading{
    font-size: 40px;
    margin-bottom: 0px;
}
.call-details-wrapper p{
    color: #fff;
}
.call-details-wrapper a{
    display: inline-flex;
    gap: 5px;
}
.call-details-wrapper a svg path{
    fill: #062F54;
    transition: 0.5s;
}
.call-details-wrapper a:hover svg path{
    fill: #fff;
}
.team-member .img-box{
    background-color: #2e92e726;
    padding: 15px 15px 0px 15px;
    transition: 0.5s;
}
.team-member:hover .img-box{
    background-color: #062F54;
}
.team-member .img-box img.team-featured-img{
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position:bottom center;
}
.team-member .second-wrap{
    bottom: -45px;
}
.team-member:hover .second-wrap{
    bottom: -0px;
    opacity: 1;
}

/* the slides */
.team-slider .slick-slide {
      margin: 0px 12px 40px 0px;
}
.team-slider .slick-current + .slick-slide + .slick-slide + .slick-slide{
    opacity: 0;
}
.team-slider .slick-slide:last-child{
    display: none;
}
.detail-box{
    text-align: center;
    padding: 15px 0;
    background: #fff;
}
.detail-box p{
    margin-bottom: 0;
}
.team-member:hover .detail-box{
	opacity:0;
}
.team-title{
    font-size: 24px;
    font-weight: 400;
    font-family: 'gilroy-bold';
    color: #062F54;
}
.detail-box a{
    opacity: 0;
    position: relative;
    bottom: -10px;
    transition: 0.3s;
    font-weight: 700;
    color: #062F54;
}
.team-member{
    box-shadow: 0px 0px 5px 0px #0000001A;
}
.team-member:hover .detail-box a{
    opacity: 1;
    bottom: 0;
}
.team-section ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    bottom: -55px;
}
.team-section  ul.slick-dots li button {
    font-size: 0px;
    width: 12px;
    height: 12px;
    box-shadow: none;
    border-radius: 50%;
    line-height: 100%;
    border: none;
    margin: 0 5px;
    border: 1px solid #062F54;
}
.team-section  ul.slick-dots li.slick-active button, .team-section  ul.slick-dots li button:hover {
    background: #062F54;
}

.home-testimonials-sec .slick-dots li button:before {
    font-size: 0px;
}
.logo-item{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}
.logo-item img{
    transition: 0.5s;
}

.award-logo-silder .logo-item img {
    max-height: 100px;
    width: auto;
}

.logo-item img:hover{
    transform: scale(1.1);
}
.book-section-wrapper{
    position: relative;
}
.book-section-wrapper:before{
    content:'';
    position: absolute;
    height: 100%;
    width: 49%;
    background-color: #062F54;
    top: 0;
    left: 0;
}
.book-image-wrap{
    margin-left: -60px;
}
.book-image-wrap img{
    max-width: 90%;
    display: block;
}
.book-image-wrap a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 25px auto 0;
    gap: 10px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 22px;
	padding-right: 100px;
}
.book-image-wrap a svg.download, .book-image-wrap a img.download{
    height: 30px;
    width: 30px;
    margin-top: 5px;
}

.home-blog-sec {
    position: relative;
}
.home-blog-sec .inner-item .post-item {
	box-shadow:0px 20px 25px rgba(0,0,0,0);
}
.home-blog-sec .inner-item .post-item{
    padding: 15px 15px;
}
.home-blog-sec .post-image img.no-feature, .home-blog-sec .post-image img.featured-img {
    height: 210px;
}
.home-blog-sec .inner-item:hover .post-image img.no-feature, .home-blog-sec .inner-item:hover .post-image img.featured-img{
	/* transform:scale(1.2) rotate(-5deg) */
}
.home-blog-sec .post-meta span.time {
    font-size: 15px;
    color: #b3b3b3;
    padding: 14px 15px 0;
    display: block;
}
.home-blog-sec .blog-heading {
    font-size: 22px;
    line-height: 30px;
    color: #062F54;
    font-family: 'gilroy-bold';
    font-weight: 400;
    webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}
.home-blog-sec .blog-description{
    font-size: 14px;
    line-height: 28px;
    color: #062F54;
    webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}
.home-blog-sec .post-item a{
    position: relative;
    transition: .3s;
    font-weight: 700;
    color: #062f54;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}
.home-blog-sec .inner-item:hover{
	-webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
        background-color: #062F54;
}
.home-blog-sec .inner-item:hover .blog-heading{
    color: #fff;
}
.home-blog-sec .inner-item:hover .blog-description{
    color: #fff;
}
.home-blog-sec .inner-item:hover .post-item a{
    color: #fff;
}

.home-blog-sec .inner-item {
    height: 100%;
    position: relative;
/*    padding-bottom: 70px;*/
		-webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
/*    box-shadow: 0px 3.2px 48.05px 0px #0000001A;*/
    box-shadow: 0px 0px 5px 0px #0000001A;
    min-height:392px;
}
.blog-slider-wrap .slick-list{
	padding-left:3px;
}
.blog-slider-wrap .slick-slide {
    margin: 0 10px 25px 0;
}

.blog-slider-wrap .slick-current + .slick-slide + .slick-slide {
   margin-right:0px;
}
.blog-slider-wrap .slick-current + .slick-slide + .slick-slide + .slick-slide{
    opacity: 0;
}
.home-blog-sec ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    bottom: -40px;
}
.home-blog-sec  ul.slick-dots li button {
    font-size: 0px;
    width: 12px;
    height: 12px;
    box-shadow: none;
    border-radius: 50%;
    line-height: 100%;
    border: none;
    margin: 0 5px;
    border: 1px solid #062F54;
}
.home-blog-sec  ul.slick-dots li.slick-active button, .home-blog-sec  ul.slick-dots li button:hover {
    background: #062F54;
}

.home-testimonials-sec .slick-dots li button:before {
    font-size: 0px;
}
.inner-form-margin{
    margin-top: 75px;
}
.form-section{
    position: relative;
}
.form-section:before{
    content: '';
    position: absolute;
    background-image: url('/wp-content/uploads/2024/05/hand.webp');
    width: 50%;
    right: 0;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: 100%;
    z-index: -1;
}
.footer-form-wrap{
    width: 85%;
    background: #E7E7E7A8;
    padding: 70px 60px;
    backdrop-filter: blur(12px);
    margin-left: -35px;
}
.footer-form-wrap .heading{
    font-size: 34px;
    text-align: center;
}
.footer-form-wrap form input[type="submit"]{
    font-weight: 600;
}
.form-content-wrap{
    padding-right: 30px;
}
.form-content-wrap .heading{
    color: #455C79;
    font-size: 42px;
}
.footer-form-wrap form input:focus{
    border-bottom: 1px solid #062F54;
}
.footer-form-wrap form textarea:focus{
    border-bottom: 1px solid #062F54;
}
.footer-form-wrap form input:focus::placeholder{
    color: #062F54;
}
.footer-form-wrap form textarea:focus::placeholder{
   color: #062F54;
}
.f-logo{
    padding-bottom: 25px;
}
.email-wrap label.error{
    opacity: 0;
}
.email-wrap .wpcf7-not-valid-tip{
    display: block !important;
}

/*==================== Home Page CSS END ====================*/
/*==================== Inner Page CSS ====================*/
.breadcrumb{
    margin: 0;
    padding: 6px 0;
    background: #dddddd63;
}
.about-team-box{
    position: relative;
    margin-bottom: 45px;
}
.about-team-box .about-team-image{
    background-color: #2e92e726;
    padding: 15px 15px 0px 15px;
    transition: 0.5s;
}
/*.about-team-box:hover .about-team-image{
    background-color: #062F54;
}*/
.about-team-box .about-team-image img.team_featured-img{
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position:bottom center;
}
.about-team-box .about-team-image img.no-feature{
    height: 300px;
    background-size: 70%;
    background-repeat: no-repeat;
    background-position:center;
}
.team-member-detail{
    text-align: center;
    padding: 15px 0;
    background: #fff;
}
.team-member-detail p{
    margin-bottom: 0;
}
.team-member-name{
    font-size: 24px;
    font-weight: 400;
    font-family: 'gilroy-bold';
    color: #062F54;
	line-height:30px;
}
.team-member-detail a{
    position: relative;
    transition: 0.3s;
    font-weight: 700;
    color: #062F54;
}
.team-member-detail{
     box-shadow: 0px 1px 3px 0px #0000001A;
}
.about-team-section .heading-section{
        margin-bottom: 55px;
    }
.about-team-section .heading-section .sub-heading{
    font-family: Gilroy-Medium;
}
.about-video-section {
    background: #f4f9fe;
}
    .about-video-part {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
}
.second-wrap{
    position: absolute;
    bottom: -15px;
    transition: 0.3s;
    opacity: 0;
    z-index: 111;
    width: 100%;
}
.about-team-box:hover .first-wrap{
    opacity: 0;
}
.first-wrap{
    opacity: 1;
}
.about-team-box:hover .second-wrap{
    bottom: 0;
    opacity: 1;
}
.member-designation{
    color: #2E92E7;
    font-size: 14px;
}
.team-member-detail a:hover{
    color: #2E92E7;
}
/*======Practice area page========*/
.practices-type-details{
    max-width: 70%;
    float: right;
    background: #E7E7E7A8;
    padding: 50px;
    margin-right: -125px;
    z-index: 11;
    position: relative;
    backdrop-filter: blur(4px);
}
.reverse-row-wrap .col-lg-5{
    padding-left: 0px;
    padding-right: 0px;
}
.simple-row-wrap .col-lg-5{
    padding-right: 0px;
    padding-right: 0px;
}
.reverse-row-wrap .col-lg-7 .practices-type-details{
    float: left;
    margin-left: -125px;
}
.practice-title{
    color: #062f54;
    font-size: 35px;
    font-weight: 400;
    line-height: 1.3;
    font-family: 'gilroy-bold';
    padding: 10px 0px 0px;
}
.practices-type-details img, .practices-type-details svg{
        height: 57px;
    width: 58px;
}
.practices-type-details p{
    color: #062F54;
}
a.button{
    position: relative;
    transition: .3s;
    font-weight: 700;
    color: #062f54;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}
a.button:hover{
    color: #2E92E7;
}
/*==================== Area we served Page CSS ====================*/
.area-we-serve-section .heading-section{
    margin-bottom: 45px;
}
.area-we-serve-section .heading-section .sub_heading{
    line-height: 20px;
    margin: 0;
    font-weight: 400;
    font-family: 'gilroy-medium';
    font-size: 20px;
}
.location-wrapper{
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    gap: 40px 15px;
    flex-wrap: wrap;
	margin-bottom:50px;
}
.location-wrapper .location-wrap-details{
    width: calc(100% / 5.3);
    transition: 0.5s;
}
.location-details-wrap{
    text-align: center;
    background: #E7E7E7A8;
    width: 93%;
    margin: -30px auto 0;
    z-index: 1;
    position: relative;
    padding: 10px;
        backdrop-filter: blur(4px);
        transition: 0.5s;
}
.location-wrap-details:hover .location-details-wrap{
    background: #062F54;
}
.location-wrap-details img.location-img{
    width: 253px;
    height: 233px;
    object-fit: cover;
    object-position: center;
}
.location-title{
    font-size: 22px;
    font-weight: 400;
    line-height: 1.1;
    font-family: 'gilroy-bold';
    color: #062F54;
    transition: 0.5s;
}
.location-wrap-details:hover .location-details-wrap .location-title{
    color:#fff;
}
.location-wrap-details:hover .location-details-wrap a{
    color: #fff;
}
.location-wrap-details:hover .location-details-wrap a svg path{
    fill:#fff;
}
.arrow-btn{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    font-weight: 300;
    color: #062F54;
    transition: 0.3s;
}
.arrow-btn:hover{
    font-weight: 400;
}
.arrow-btn .arrow svg{
 transition: 0.3s;
}
.location-details-wrap .arrow-btn{
    justify-content: center;
}
.right-arrow{
    height: 17px;
    width: 25px;
}
.blog-list-inner .arrow-btn{
    font-weight: 700;
}
.podcast-category-flex{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.podcast-tabs{
    padding: 5px 40px;
    border: 1px solid #062F54;
    color: #062F54;
    font-weight: 600;
    font-size: 22px;
    cursor: pointer;
}
.podcast-tabs.active {
    background: #062f54;
    color: #fff;
}
.podcast-title-wrap{
    color: #062f54;
    font-size: 20px;
    font-weight: 600;
    line-height: 36px;
}
.podcast-details{
/*    padding: 20px 0px;*/
    padding: 20px 0px 20px 65px;
    border-top: 1px solid #000;
    position: relative;
}
/*.tab-pane-wrapper .row:first-child .podcast-details{
    border-top: 2px solid #000;
}*/
.podcast-column .row:last-child  .podcast-details{
    border-bottom: 1px solid #000;
}
.texonomy-wrap{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    margin-top: 10px;
}
.podcast-time-wrap{
    display: flex;
    align-items: center;
    gap: 10px;
}
.podcast-category-wrap a{
/*    padding: 10px 30px;*/
    background: #062F54;
    border-radius: 11px;
    color: #ffff;
    font-size: 16px;
    width: 113px;
    height: 26px;
    line-height: 26px;
    display: block;
    text-align: center;
}
.podcast-time-wrap p{
    color: #062F54;
    font-size: 16px;
    font-weight: 300;
}
.episode-wrap{
        position: absolute;
    left: 0;
    top: 40%;
}
.episode-title{
     color: #062F54;
    font-size: 22px;
    font-weight: 600;
}
.podcast-category-flex{
    margin-top: 45px;
}
.tab-pane-cover{
    margin-top: 45px;
}
.audio-play-btn{
    position: absolute;
    right: 15px;
    top: 28%;
}
.audio-play-btn img, .audio-play-btn svg{
    transition: 0.3s;
}
.audio-play-btn img:hover, .audio-play-btn svg:hover{
    transform: scale(1.1);
}
.podcast-img-wrap{
    height: 100%;
    border: 15px solid #062f54;
}
.podcast-img-wrap img{
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: center;
}
.video-list{
    height: 450px;
    width: 100%;
    border: 15px solid #062F54;
    margin-top: 45px;
    position: relative;
}
.video-list.full-width-video-list{
    height: 520px;
}
.video-list img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.video-title{
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #062F54;
    padding: 7px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    height: 50px;
    line-height: 50px;
}
.play_icon_wrap{
    position: absolute;
     top: 50%;
    left: 50%;
    transform: translate(-50px, -50px);
    width: 50px;
    height: auto;
    right: initial;
}
.full-width-video-list .play_icon_wrap{
    top: 50%;
    left: 50%;
    transform: translate(-50px, -50px);
    width: 50px;
    height: auto;
    right: initial;
}
.video-list:hover .play_icon_wrap svg.play_icon{
    transform: scale(1.2);
}
.play_icon_wrap svg.play_icon{
    transition: 0.3s;
    height: 80px;
    width: 80px;
}
.play_icon_wrap img.play_icon{
    transition: 0.3s;
    height: 80px;
    width: 80px;
}
.pagination .nav-links a.next:after{
    content: '';
    position: absolute;
    background-image: url('../img/round-right-arrow.svg');
    height: 35px;
    width: 35px;
    background-size: 33px;
    background-repeat: no-repeat;
    right: -10px;
}
.pagination .nav-links a.prev:after{
    content: '';
    position: absolute;
    background-image: url('../img/round-left-arrow.svg');
    height: 35px;
    width: 35px;
    background-size: 33px;
    background-repeat: no-repeat;
    left: -10px;
    z-index: 111;
    opacity: 0.5;
}
.pagination .nav-links a.prev:hover:after{
    opacity: 1;
}
/*===========end video resources css ==============*/
.contact-page-form{
    background: #E7E7E7A8;
    margin-top: -520px;
    z-index: 11;
    position: relative;
    backdrop-filter: blur(4px);
    padding: 70px 60px;
}
.contact-page-form input, .contact-page-form textarea{
    border-bottom: 1px solid #737373;
    color: #000;
}
.contact-page-form .wpcf7-radio{
    display: grid;
}
.contact-page-form .wpcf7-radio input[type="radio"]{
        width: auto;
        appearance: none;
        height: 15px;
        width: 15px;
        border: 1px solid #062F54;
        border-radius: 50%;
        padding: 0;
        
}
.contact-page-form .wpcf7-radio input[type="radio"]:focus{
    background: #062F54;
}
.contact-page-form .wpcf7-radio input[type="radio"]:checked {
    background: #062F54;
}

.contact-page-form input::-webkit-input-placeholder {
      color: #737373;
}
.contact-page-form textarea::-webkit-input-placeholder {
      color: #737373;
}
.contact-page-form .wpcf7-radio .wpcf7-list-item{
        display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}
.contact-page-form .wpcf7-radio span.wpcf7-list-item-label{
    display: block !important;
    opacity: 1 !important;
    color: #737373;
    font-family: "Nunito", sans-serif;
}
.case_btn label{
    font-family: "Nunito", sans-serif;
    color: #737373;
    font-size: 20px;
    font-weight: 700;
}
.contact-page-form h3.heading{
    font-size: 42px;
    text-align: center;

}
.contact-page-form input:focus{
      border-bottom:1px solid #062F54;
}
.contact-page-form input:focus::-webkit-input-placeholder {
      color: #062F54;
}
.contact-page-form textarea:focus::-webkit-input-placeholder {
      color: #062F54;
}
.contact-page-form textarea:focus{
    border-bottom:1px solid #062F54;
}
.location-contant-wrap{
    position: relative;
        height: 100%;
}
.location-contant-wrap:before{
    content: '';
    position: absolute;
    top:0;
    background-image: url('../img/map.svg');
    height: 225px;
    width: 180px;
    background-size: contain;
    background-repeat: no-repeat;
    left: -55px;
    z-index: -1;
}
.iframe-wrap{
    position: absolute;
    width: 100%;
    bottom: 0;
    height: calc(100% - 215px);
}
.location-title-wrap{
    padding-left: 25px;
    padding-top: 25px;
}
.location-title-wrap p{
    margin: 0;
    color: #062F54;
}
.location-title-wrap a{
    font-size: 18px;
    font-weight: 700;
    color: #062F54;
    text-decoration: underline;
}
.review-item{
    background: #ffff;
    box-shadow: 0px 4px 40px 0px #0000001A;
    padding: 25px;
}
.card-columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
}
.card-columns .card {
    display: inline-block;
    width: 100%;
    margin-top: 25px;
    border: none;
}
.card-columns .card.hid-items{
    display: none;
}
.card-columns .card.active{
    display: inline-block;
}
.testmonial-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.testi-title{
    font-weight: 600;
    font-size: 22px;
    color: #062F54;
}
.review-item p{
    color: #062F54;
}
.client-name{
    font-family: "DM Serif Display", serif;
    font-size: 22px;
    color: #062F54;
}
.book-form-wrapper{
    background: #2E92E714;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 25px 45px;
    margin-left: 50px;
}
.book-form-wrapper p{
    color: #062F54;
}
.book-form-wrapper input, .book-form-wrapper textarea{
    border-color: #062F54;
}
.book-form-wrapper input::-webkit-input-placeholder {
      color: #062F54;
}
.book-form-wrapper textarea::-webkit-input-placeholder {
      color: #062F54;
}
.quiz-math label{
    width: 100%;
}
.book-form-wrapper .wpcf7-quiz-label{
    color: #062F54;
    padding-left: 15px;
}
.community-title {
    color: #062f54;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    font-family: 'gilroy-bold';
    padding-bottom: 17px;
    position: relative;
    margin-bottom: 15px;
}
.community-title:before {
    content: '';
    position: absolute;
    height: 4px;
    width: 70%;
    background: #062F54;
    bottom: 0;
}
.community-image-wrap{
    height: 100%;
}
.community-image-wrap img{
    /*object-fit: cover;*/
	object-fit: contain;
    height: 100%;
    object-position: top;
}
.community-type-details p{
    color:#062F54;
    font-size: 16px;
    line-height: 32px;
}
.simple-community-wrap .community-type-details{
    padding-left: 40px;
}
.reverse-community-wrap .community-type-details{
    padding-right: 40px;
}
.community-wrapper .row:first-child{
    margin-top: 45px;
}
.community-wrapper .row{
    margin-top: 55px;
}
.thankyou-wrap{
    padding: 25px 30px;
    background: #062f54;
    border-radius: 10px;
}
.thankyou-wrap p{
    color: #fff;
}
.thankyou-wrap a{
    color: #fff;
    text-decoration: underline;
}
.content-error form{
    padding: 50px;
    background: #2E92E714;
    border-radius: 10px;
}
.education-wrapper{
    background: #FBFBFB;
    padding: 90px 55px;
}
.additional_info{
    padding-top: 40px;
    color: #062f54;
}
.additional_info:first-child{
    padding-top: 0px;
}
.additional_info .title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}
.additional_info .title-wrap{
    color: #062f54;
    font-size: 35px;
    font-weight: 400;
    line-height: 1.3;
    font-family: 'gilroy-bold';
}
.additional_info ul{
    list-style: disc;
    padding-left: 35px;
    padding-top: 10px;
}
.additional_info p{
    margin: 0;
    color: #062f54;
    font-size: 18px;
    margin-top: 15px;
    font-weight: 700;
}
.content_box ul{
    list-style: disc;
    padding-left: 30px;
}
.content_box ul li{
    color: #737373;
}
.content_box ul li a{
    text-decoration: underline;
}
.content_box a{
    text-decoration: underline;
    color: #737373;
    font-weight: 300;
}
.services_information{
        background: #ffff;
    box-shadow: 0px 4px 40px 0px #0000001A;
    padding: 64px 59px;
}
.services-title-wrap{
      color: #062f54;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    font-family: 'gilroy-bold';
    margin-bottom: 15px;
}
.search-results .blog-list-inner:hover a.btn{
    background: #1a88eb;
}
.search-results .blog-list-inner a.btn:hover{
    background: none;
    border:2px solid #fff;
    color:#fff;
}
.featured_post{
    border:5px solid transparent;
    transition: 0.5s;
    margin-bottom: 35px;
    height: calc(100% - 35px);
    box-shadow: 0px 1px 15px 0px #0000001A;
}
.featured_post:hover{
   box-shadow: 0px 4px 40px 0px #0000001A;
}
.featured_post img{
    height: 300px;
    width: 100%;
    object-fit: cover;
}
.featured_post .arrow svg, .featured_post .arrow img {
    width: 30px;
    height: 15px;
    object-fit: contain;
}
.featured_post_details{
    padding: 15px 15px;
}
.featured_post_title{
    font-weight: 600;
    font-size: 22px;
    color: #062f54;
}

/*==================== Inner Page CSS END ====================*/

/*==================== Footer CSS ====================*/
.map-sec{
    overflow: hidden;
}
.map-sec iframe{
	height:550px;
}
.map-sec .contactinfo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
   /* z-index: 9;
    top: 0;
    right: 7vw;
    max-width: 440px;
    width: 100%;
    overflow-y: scroll;
    min-height: 550px;
    height: 100%;*/
}
.nap-block {
    display: block;
    margin-top: 20px;
	position:relative;
}
.nap-block:first-child{
	margin-top:0;
}
.nap-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
}
.nap-icon svg, .nap-icon img{
	width: 30px;
    height: 30px;
	fill:#fff;
}
.direction-link {
    color: #fff;
    display: inline-block;
    text-transform: capitalize;
    font-size: 18px;
    line-height: normal;
    margin-top: 15px;
    color: #062f54;
    font-weight: 700;
    text-decoration: underline;
    transition: 0.3s;
}
.direction-link:hover, .nap-block .nap-text:hover{
	text-decoration: none;
}

.map-iframe-list .map-block {
    display: none;
}
.map-iframe-list .map-block iframe, .map-iframe-list .map-block.active {
    display: block;
}
.contactinfo .nap-address-wrap {
    padding: 20px 30px;
    text-align: center;
    border: 1px solid #062F54;
    color:  #737373;
    width: calc(100% / 3);
    position: relative;
}
.nap-address-wrap.active {
    background: #062f54;
}
.nap-address-wrap:after{
    content: '';
    position: absolute;
    top:0;
    background-image: url('../img/location-pin.svg');
    height: 100%;
    width: 140px;
    background-size: contain;
    background-repeat: no-repeat;
    left: 0px;
    z-index: -1;
}
.nap-address-wrap:before{
    content: '';
    position: absolute;
    height: 30px;
    width: 40px;
    background: #062f54;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    transition: 0.3;
    opacity: 0;
}
.nap-address-wrap:hover:before{
    content: '';
    position: absolute;
    height: 30px;
    width: 40px;
    background: #062f54;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -25px;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    opacity: 1;
}
.nap-address-wrap.active:before{
    bottom: -25px;
    opacity: 1;
}
.nap-address-wrap.active .nap-block .h4, .nap-address-wrap.active .nap-block .nap-address, .nap-address-wrap.active a.direction-link, .nap-address-wrap.active .nap-block .nap-text {
    color: #fff;
}

#footer {
    padding: 50px 0 0;
    color: #8b8b8b;
    background: #062F54;
}
.f-des-block p{
    color: #fff;
    font-weight: 300;
    line-height: 30px;
}
.f-des-block p a{
    color: #fff;
    text-decoration: underline;
    font-weight: 300;
}
.footer-heading {
    color: #000b05;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}
.footer-nav{
    float: right;
}
.footer-nav ul li{
	margin-bottom:5px;
	display:block;
}
.footer-nav ul li:last-child{
	margin-bottom:0px;
}
.footer-nav ul li a {
    color: #fff;
    line-height: 30px;
    display: block;
    font-family: "Raleway", sans-serif;
    font-weight: 300;
}
.footer-nav ul li a:hover, .footer-nav ul li.current-menu-item a{
	color: #fff;
}
.footer-nav ul li.current-menu-item a{
    font-weight: 700;
}
.footer-social-wrap{
    text-align: center;
    margin-top: 15px;
}
.footer-btn{
    background: #fff;
    color: #062F54;
    padding: 10px 15px;
    align-items: center;
    font-weight: 600;
}
.footer-call-wrap{
    text-align: center;
    margin-top: 20px;
}
.footer-call-wrap p{
    margin: 0;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 5px;
}
.footer-call-wrap a{
    display: inline-flex;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    gap: 5px;
}
.footer-call-wrap a svg path{
    fill:#fff;
}
.footer-social-link{
    padding-top: 42px;
}
.footer-social-link p{
    margin: 0;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    font-family: 'gilroy-medium';
    letter-spacing: 2px;
    line-height: 21px;
}
.footer-social-link ul.sociallinks{
    gap: 20px;
}
.footer-logo .f-logo a img {
    width: 70%;
    margin: auto;
    display: flex;
}
.copyright {
    margin-top: 50px;
    background: #2E92E7;
    color: #fff;
    padding: 10px 0;
}
.copyright a{
	color: #fff;
	margin-left:5px;
}
.copyright a:hover, .page-id-3 .copyright a.privacy, .page-id-653 .copyright a.disclaimer{
	color: rgba(255,255,255,0.6);
}
#menu-location-we-serve a {
    pointer-events: none;
}
/*==================== Footer CSS END ====================*/


/*==================== Blog List Page CSS ====================*/
.blog-list .postlist .blog-list-inner{
    /*padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);*/
    box-shadow: 0px 4px 70px 0px #0000001A;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    transition: 0.3s;
    position: relative;
    padding-bottom: 35px;

}

.blog-list .post-image img.no-feature, .blog-list .post-image img.featured-img {
    height: 254px;
}
/*.blog-list .postlist:last-child .blog-list-inner{
	margin-bottom:0;
}*/
.post-image {
	overflow:hidden;
}
.post-image img.featured-img {
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 30%;
    height: 450px;
	-webkit-transition: all ease-in-out .8s;
    -moz-transition: all ease-in-out .8s;
    -o-transition: all ease-in-out .8s;
    transition: all ease-in-out .8s;
}
.post-image img.no-feature{
	display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 180px;
    background-position: center;
	background-color:#f1f1f1;
    height: 450px;
	-webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}
.blog-list-inner .post-content{
    padding: 20px 25px;
}
.blog-list-inner:hover .post-image img.featured-img{
    transform: scale(1.1);
}
.blog-list .blog-title {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 5px;
	display: block;
    transition: 0.3s;
}
.blog-list .content {
    line-height: 32px;
    font-size: 16px;
}
.blog-list-inner:hover{
    background: #062F54;
}
.blog-list-inner:hover .blog-title, .blog-list-inner:hover .post-content p{
    color: #fff;
}
.blog-list-inner:hover .post-content {
    color: #fff;
}
.blog-list .postlist .blog-list-inner a.arrow-btn{
    position: absolute;
    bottom: 20px;
}
.blog-list-inner:hover a.arrow-btn{
    color: #fff;

}
.blog-list-inner:hover a.arrow-btn .arrow svg path{
    fill: #fff;
}
.load-btn-wrap{
    margin: 40px auto 0px;
    display: table;
}
.next-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}
.next-btn a{
    font-weight: 700;
}
.next-btn a:hover{
    font-weight: 700;
}
/*.left-arrow{
    opacity: 0.5;
}
.left-arrow:hover{
    opacity: 1;
}*/
.left-arrow .arrow svg{
    transform: rotate(-180deg);
}
.left-arrow .arrow svg path{
    fill: #062F54;
}
a.disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.6;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #CFCFCF;
}
a.disabled svg {
    transform: rotate(-180deg);
}
a.disabled svg path{
    fill:#CFCFCF;
}
.hid-items{
        display: none;
}
.active{
        display: block;
}
/*==================== Blog List Page CSS END ====================*/

/*==================== Blog Details Page CSS ====================*/
.postlist-single{padding-bottom: 25px;border-bottom: 1px solid #062F54;}
.postlist-single h1 {font-size: 38px;}
.postlist-single h2 {font-size: 34px;}
.postlist-single h3 {font-size: 30px;}
.postlist-single h4 {font-size: 26px;}
.postlist-single h5 {font-size: 22px;}
.postlist-single h6 {font-size: 18px;}
.postlist-single iframe, .mainpage iframe {height: 420px;}

.postlist-single .addtoany_content {
    margin: 15px auto 0;
    display: inline-flex;
    align-items: center;
    width: 100%;
}
.postlist-single .addtoany_header {
    margin: 0 10px 0 0px;
    font-size: 17px;
    color: #B0B0B0;
    font-weight: 500;
}
.postlist-single .addtoany_list a, .postlist-single .widget .addtoany_list a {
    border: 1px solid #E2E2E2;
    margin-right: 8px;
}
.postlist-single .addtoany_list a:not(.addtoany_special_service)>span {
    height: 26px;
    line-height: 26px;
    width: 26px;
    background: none !important;
    position: relative;
    top: 3px;
}
.postlist-single .site .a2a_kit.addtoany_list a:focus, .postlist-single  .addtoany_list a:hover, .postlist-single .widget .addtoany_list a:hover{
	border: 1px solid #a91b2a;
}
.gradient-bg{
	position:relative
}
.gradient-bg::before {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(196, 196, 196, 0) 0%, rgba(196, 196, 196, 0.08) 100%);
    bottom: 0;
    left: 0;
    right: 0;
    height: 450px;
}
.help-sec.space-pd.gradient-bg::before{
    height: 100%;
}
/*==================== Blog Details Page CSS END ====================*/

/*==================== About Page CSS ====================*/

/*==================== About Page CSS END ====================*/

/*==================== Practice Areas Page CSS ====================*/

/*==================== Practice Areas Page CSS END ====================*/

/*==================== News Listing Page CSS ====================*/

/*==================== News Listing Page CSS END ====================*/


/*==================== Video Page CSS ====================*/

/*==================== Testimonials Page CSS END ====================*/

/*==================== Static Page CSS ====================*/
.mainpage h1 {font-size: 40px;}
.mainpage h2 {font-size: 35px;padding-top: 15px;}
.mainpage h3 {font-size: 32px;padding-top: 15px;}
.mainpage h4 {font-size: 30px;padding-top: 15px;}
.mainpage h5 {font-size: 26px;padding-top: 15px;}
.mainpage h6 {font-size: 20px;padding-top: 15px;}
blockquote {
    background: #f1f1f1;
    padding: 20px 20px;
    border-left: 8px solid #062F54;
    font-style: italic;
}
.mainpage ul, .postlist-single ul, .ul_list wl{
	margin-bottom:25px;
    padding-left: 30px;
    list-style: disc;
}
.mainpage ul li ul, .postlist-single ul li ul, .linked-list ul li ul{
	margin-bottom:8px;
	margin-top:8px;
    list-style: disc;
}
.mainpage ul li, .postlist-single ul li, .linked-list ul li, .ul_list ul li  {
    position: relative;
    margin-bottom: 8px;
    color: #737373;
}
/*.mainpage ul li::before, .postlist-single ul li::before, .linked-list ul li::before {
    position: absolute;
    content: "";
    background-image: url(../img/list-arrow.png);
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-position: center;
}*/
.mainpage ul li a, .postlist-single ul li a, .postlist-single a, .postlist-single ol li a, .mainpage a{
	    color: #000;
    /*font-weight: 300;*/
    text-decoration: underline;
}
.mainpage ul li a:hover, .postlist-single ul li a:hover, .postlist-single a:hover, .postlist-single ol li a:hover, .mainpage a:hover{
    text-decoration: none;
}
.mainpage ol, .postlist-single ol {
    list-style-type: none;
    counter-reset: ordered;
    margin: 0 0 20px;
    padding: 0;
}
.mainpage ol li, .postlist-single ol li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
}
.mainpage ol li:last-child, .postlist-single ol li:last-child{
	margin-bottom:0;
}
.mainpage ol li::before, .postlist-single ol li::before {
    content: counter(ordered);
    counter-increment: ordered;
    position: absolute;
    left: 0;
    top: 0;
}
/*==================== Static Page CSS END ====================*/

/*==================== Team Listing Page CSS ====================*/

/*==================== Team Listing Page CSS END ====================*/

/*==================== Team Details Page CSS ====================*/

/*==================== Team Details Page CSS END ====================*/

/*==================== Free eBook Page CSS ====================*/

/*==================== Careers Page CSS END ====================*/

/*================ IE CSS =================*/
@media all and (-ms-high-contrast:none){
.menu-top::before{
	bottom:12px;
}
.search-icon{
	margin-top:-13px;
}
.team-listing .img-box .hover-box p{
	background:none;
	color:#fff;
}
}
/*================ IE CSS END =================*/




.award-logo-silder .slick-arrow svg, 
.award-logo-silder .slick-arrow img {
    width: 30px;
    height: 30px;
    fill: #062f54;
} 

.award-logo-silder .slick-arrow svg * {
    fill: #062f54;
}
.award-logo-silder .slick-prev {
    transform: rotate(180deg);
}


header.main-header {
    background: #062f54;
}

header.main-header .menu-top li a {
    color: #ffffff;
}

header.main-header .menu-header>ul>li.current_page_item>a, 
header.main-header .menu-header>ul>li.current_page_ancestor>a {
    color: #ffffff;
}

.top-logo span {
    color: #c2c2c2;
    text-align: center;
    display: block;
    font-size: 14px;
    line-height: 1;
    margin-top: 5px;
}
.f-logo span {
    display: block;
    text-align: center;
    color: #c2c2c2;
    font-size: 20px;
}
.f-logo a{
	display: inline-block;
}



.job-info-box {
    padding: 30px 50px;
    border: 1px solid #e3e3e3;
    box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
    margin-bottom: 30px;
    overflow: hidden;
}
.job-info-box .btn {
    padding: 20px 30px;
    font-size: 15px;
    min-width: 160px;
}
.job-title {
    color: #092d4a;
    font-size: 2rem;
    margin-bottom: 20px;
}
.job-info-box .btn:not(.btn-outline) {
    /*border: 1px solid #cb0001;*/
    margin-left: 15px;
    text-indent: 0;
}
.job-info-box .btn.btn-outline {
    background-color: transparent;
    color: #092d4a;
    border: 1px solid #092d4a;
    text-indent: 0;
}
.more-job-info-title {
    color: #092d4a;
    font-size: 24px;
}
.job-post-content ul li {
    position: relative;
    padding-left: 25px;
    margin: 15px 0;
    line-height: 1.25;
}
.filtering span,
.nav-tabs li a {
    padding: 9px 29px;
    cursor: pointer;
}
.job-post-content ul li:before {
    content: "";
    width: 10px;
    height: 10px;
    margin-left: -25px;
    border-radius: 50%;
    top: 0.275rem;
    background-color: #cb0001;
    position: absolute;
}
.more-about-job-end-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.job-apply-modal .modal-dialog {
    max-width: 850px;
}
.job-apply-modal .modal-content {
    border-radius: 0;
    border: 4px solid #d2d2d2;
    background: #fff;
}
.job-apply-modal .modal-body {
    padding: 3rem 4.5rem;
}
.job-apply-modal .h3 {
    color: #092d4a;
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}
.job-apply-modal .wpcf7-not-valid-tip {
    position: absolute;
    bottom: 0;
    font-size: 11px;
    right: 0;
}
.job-apply-modal div.wpcf7-response-output {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    right: 0;
}
.more-about-job.active-opened-job {
    opacity: 1;
    height: auto;
    max-height: 100%;
}
.club-job-button,
.key-skill {
    max-height: 100%;
}
.job-apply-modal.modal {
    z-index: 9999999999;
}
.job-apply-modal .wpcf7-form-control-wrap {
    float: none;
    display: block;
}
.modal-open {
    overflow: hidden;
}
.job-apply-modal::-webkit-input-placeholder {
    opacity: 1 !important;
    color: #000 !important;
}
.job-apply-modal::-moz-placeholder {
    opacity: 1 !important;
    color: #000 !important;
}
.job-apply-modal:-ms-input-placeholder {
    opacity: 1 !important;
    color: #000 !important;
}
#responsive-menu-search-box input.responsive-menu-search-box {
    border-radius: 0 !important;
    padding: 10px !important;
    font-size: 17px;
}
.job-apply-modal:-moz-placeholder {
    opacity: 1 !important;
    color: #000 !important;
}
.job-apply-modal .wpcf7 .btn-wrap input.wpcf7-form-control {
    text-indent: 0;
}
.page-template-careers .testimonial-item {
    min-height: 180px;
    height: auto;
}
.page-template-careers .page-banner-wrap:before {
    background: rgba(0, 0, 0, 0.2);
}
@media (max-width: 1199px) {
    .job-info-box .btn {
        padding: 12px 8px;
        font-size: 14px;
        min-width: 150px;
    }
    .job-info-box {
        padding: 25px 29px;
    }
}




/*area-served*/
.location-title{
 font-size: 17px !important;
}
.location-details-wrap .arrow-btn{
	display: none;
}
.location-details-wrap{
	width: 100%;
	margin-top: 0px;
}


.location-wrap-details img.placeholder-loc {
    object-fit: contain;
	background: #a6a6a6;
	    padding: 25px;
}


.location-wrap-list-item {
    width: 100%;
}

.location-wrap-list-item ul {
    padding-left: 15px;
    list-style: disc;
}

.location-wrap-list-item li {
    margin-bottom: 15px;
}


.location-wrap-list-item li a:hover {
    color: #2e92e7;
}


.location-wrap-details {
    position: relative;
}

.location-wrap-details a.overlay-btn {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
	z-index: 2;
}
/*video-banner*/
.banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}
.banner-video {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
}
.banner-home {
     overflow: hidden;
}
.banner-home:before{
	z-index: 9;
}
@media(min-width: 991px){
	.banner-layout .inner-content{
		padding-bottom: 0px;
	}
	.banner-home .container{
		margin-top: -50px;
	}
}
.banner-form-section.mobile-banner-form-section {
    margin-top: -15px;
    padding: 40px 0;
    background: #000;
}

.hello-bar {
    position: relative;
    top: 0;
    width: 100%;
    background-color: #fff;
    padding: 12px 0px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: top 0.3s ease;
    text-align: center;
}
 .hello-bar a:hover {
    color: #062f54;
    background: #fff;
}
.hello-bar a {
    background: #062f54;
    padding: 6px 20px;
    color: #fff;
    border: 1px solid #062f54;
    transition: 0.3s 
ease-in-out;
}
    .hello-bar p{
        color: #062f54;
        font-weight: 500;
    }
.hello-bar.hidden {
    display: block;
}

header {
    position: relative;
    transition: top 0.3s ease;
}

#container-wrap {
    transition: margin-top 0.3s ease;
}
    @media(max-width:767px){
        .hello-bar p{
            font-size: 10px;
            line-height: 15px;
            font-weight: 300;
        }
        .hello-bar a{
            padding: 3px 20px;
        }
    .award-logo-silder .slick-arrow svg, .award-logo-silder .slick-arrow img {
        width: 20px;
        height: 20px;
    }
    }
	
	
	
 

.influence-block {
    margin-top: 40px;
}

.influence-block a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.influence-block a img {
    max-width: 200px;
	margin-right: 40px;
}


.podcast-sec-inner {
    background: #d6d6d6;
    padding: 40px 0;
}

.podcast-sec-inner .heading {
    border-bottom: 2px solid #2E92E7;
    padding-bottom: 10px;
}
.podcast-sec-inner .heading-section {
    padding: 0 20px;
}



.podcast-sec-inner {
    background: #d6d6d6;
    padding: 40px 0;
}

.podcast-sec-inner .heading {
    border-bottom: 2px solid #2E92E7;
    padding-bottom: 10px;
}
.podcast-sec-inner .heading-section {
    padding: 0 20px;
}
.page-template-customizable-ppc-template .cppc-banner:before {
    background: linear-gradient(2deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    content: "";
    height: 100%;
    z-index: 1;
}
.blog-page .h3 {
    white-space: normal;
    word-break: break-word;
}
.copyright-text a {
    text-decoration: underline;
}
.blog-category-filter #blog-category-dropdown {
      -webkit-appearance: none !important;
    -moz-appearance: auto !important;
    appearance: none !important;
    background: url(/wp-content/uploads/2025/09/down-arrow.png) no-repeat center right 15px;
    background-size: 15px;
}