/* Common CSS Start */
:root {
    --bs-darkgrey: #293a4c;
    --bs-black: #0d0d0d;
    --bs-darkblack: #000000;
    --bs-white: #fff;
    --bs-grey: rgba(240, 239, 239, 1);
    --bs-lightgrey: #F6FBFB;
    --font-regular: 'naru_sansregular';
    --font-medium: 'naru_sansmedium';
    --font-bold: 'naru_sanssemi_bold';

    /*  
    color: var(--bs-black); 
    color: var(--bs-white);
    color: var(--bs-grey);
    color: var(--bs-green); 
    color: var(--bs-orange);
    color: var(--bs-lightgrey); 
    color: var(--bs-darkgrey); 
    font-family: var(--font-regular);
    font-family: var(--font-medium);
    font-family: var(--font-bold);
    */
}

* {
    padding:0;
    margin:0;
    box-sizing:border-box;
}
html {
    scroll-behavior: smooth;
}
body, html{
    height: 100%;
}
body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    letter-spacing: 0px;
    color: var(--bs-black);
    font-weight: 400;
    font-family: var(--font-regular);
    font-size: 16px;
    line-height: 30px;
    padding-top: 90px;
}

.wow {
    overflow: hidden;
}

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

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

.zoomInEffect {
    animation: zoomIn 1s ease-out forwards;
}
img {
    max-width: 100%;
    height: auto;
}
.nav-link:focus, .nav-link:hover {
    color: var(--bs-darkgrey);
}
.hide{
    display: none;
}
.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}
:focus{
    outline: 0;
    outline: none;
}

a {
    color: #0d6efd;
    font-weight: 400;
    text-decoration: none;
}

a:hover {
    color: var(--bs-darkgrey);
}
p {
    margin-bottom: 15px;
}
p:last-child{
    margin-bottom: 0
}
a:focus {
    color: #000000;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
}
a, .btn, input, select, textarea, button, img{
    outline: 0 !important;
    box-shadow: none;
}
a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
    color: var(--bs-darkgrey);
}
select{
    color: rgba(0,0,0,0);
    text-shadow: 0 0 0 #000;
}
a img{
    outline: 0;
}
input[type=checkbox], input[type=radio] {
    vertical-align: middle;
}
.fullwidth {
    position: relative;
    width: 100%;
    z-index: 1;
}
.bgcover{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.logged-in header#header {
    top: 28px;
}
/* body.logged-in {
    padding-top: 112px;
} */
body.nav-open-menu{
    overflow: hidden;
}
/* btn sec */
.page-button {
    margin-top: 45px;
}
.btn {
    color: var(--bs-white);
    outline: 0 !important;
    box-shadow: none !important;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    min-width: 180px;
    font-weight: 400;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    white-space: normal;
    letter-spacing: .3px;
    border: 2px solid transparent;
    z-index: 1;
    background-color: var(--bs-darkgrey);
    line-height: 26px;
    text-transform: uppercase;
    text-align: center;
    font-size: 16px;
    transition: .5s;
    padding: 18px 30px;
    border-radius: 50px;
}
.btn svg, .btn img {
    width: 22px;
    height: 17px;
    vertical-align: middle;
    position: relative;
    top: -2px;
    margin-left: 6px;
}
.btn:hover svg path {
    fill: var(--bs-darkgrey);
    stroke: var(--bs-darkgrey);
}
.btn:hover {
    color: var(--bs-darkgrey);
    background-color: rgba(240, 239, 239, 1);
    border-color: var(--bs-darkgrey);
}
.btn.focus svg path, .btn:focus svg path {
    fill: var(--bs-white);
    stroke: var(--bs-white);
}
.btn.focus, .btn:focus {
    color: var(--bs-white);
    background: var(--bs-darkgrey);
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: var(--bs-white);
    background: var(--bs-darkgrey);
}
input, select, textarea{
    outline: 0;
    -webkit-border-radius: 0;
    box-shadow: none;
}

[type=submit]{
    cursor: pointer;
}

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

p:empty {
    display: none;
}

h1, h2, h3, h4, h5, h6 {
    position: relative;
    color: var(--bs-black);
    font-family: var(--font-medium);
}
h1 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 15px;
}
h2 {
    margin-bottom: 15px;
    font-size: 42px;
    line-height: 52px;
}
h3 {
    font-size: 38px;
    line-height: 48px;
    margin-bottom: 15px;
}
h4 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 15px;
}
h5 {
    font-size: 27px;
    line-height: 38px;
    margin-bottom: 15px;
}
h6 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 15px;
}

.linklist ol, .linklist ul {
    margin-bottom: 15px;
    line-height: 28px;
    padding-left: 15px;
}

.linklist ul li ul, .blog-box .blog-content ol li ol, .blog-box .blog-content ul li ul {
    margin-top: 10px;
    position: relative;
}
.linklist ol li, .linklist ul li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
    display: inline-block;
    vertical-align: top;
    padding-right: 0;
    width: 100%;
}
.linklist ul li:after {
    position: absolute;
    left: 0;
    top: 12px;
    content: "";
    width: 5px;
    height: 5px;
    background: #13192D;
    border-radius: 100%;
}
.linklist ol {
    padding-left: 30px;
}
.linklist ol li {
    padding-left: 0px;
    display: list-item;
}
.section-pd {
    padding: 70px 0;
}
.section-pt {
    padding-top: 70px;
}
.section-pb {
    padding-bottom: 70px;
}
.row.box-items {
    --bs-gutter-x: 3.5rem;
}
.title, .heading {
    margin-bottom: 10px;
    position: relative;
    display: block;
    color: var(--bs-black);
    text-transform: none;
    font-size: 45px;
    line-height: 55px;
    font-family: var(--font-medium);
    font-weight: normal;
}
.title span, .heading span {
    color: var(--bs-darkgrey);
}
.small-heading {
    color: var(--bs-darkgrey);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 20px;
}
.medium-heading {
    margin-bottom: 15px;
    position: relative;
    display: block;
    color: var(--bs-black);
    text-transform: none;
    font-size: 35px;
    line-height: 45px;
    font-family: var(--font-medium);
    font-weight: 400;
}
.white-color-sec p a, .white-color-sec .heading, .white-color-sec p, .white-color-sec .title,
.white-color-sec ul li, .white-color-sec h2, .white-color-sec h3, .white-color-sec h4, .white-color-sec h5, .white-color-sec h6 {
    color: var(--bs-white);
}
.white-color-sec .btn {
    color: var(--bs-darkgrey);
    background: var(--bs-white);
}
.white-color-sec .btn:hover {
    background: var(--bs-white);
    color: var(--bs-darkgrey);
}

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

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

div#html5-close img {
    display: none;
}
.searchform .close-btn {
    right: 5px;
    top: 10px;
}

.searchform .close-btn:before, .searchform .close-btn:after {
    left: 0;
    right: 0;
    top: 11px;
}
/* Common CSS END */

/* Menu CSS Start */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.menu-top li {
    display: inline-block;
    color: #fff;
    position: relative;
    margin-left: 15px;
}
ul.menu-top li:first-child{
    margin-left: 0px;
}
ul.menu-top > li.menu-item-has-children {
    margin-right: 15px;
}
ul.menu-top>li#menu-item-250 > ul.sub-menu {
    right: 0;
}
.menu-top li a br, .menu-top li .sub-menu li a br{
    display: none;
}

.menu-top li a {
    padding: 35px 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
    color: var(--bs-black);
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
}
.nav-menu .menu-top>li>a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--bs-darkgrey);
    transition: all .3s ease-in-out;
    margin: auto;
    opacity: 1;
}
.nav-menu .menu-top>li>a:hover:before {
    width: 100%;
}
.nav-menu .menu-top>li.current-menu-ancestor a:before, .nav-menu .menu-top>li.current-menu-item>a:before {
    width: 100%;
}
.menu-top li a:hover, .menu-top li a:focus {
    color: var(--bs-darkgrey);
}
.nav-menu .menu-top>li.current-menu-item>a, .nav-menu .menu-top>li.current-menu-ancestor>a {
    color: var(--bs-darkgrey);
    font-weight: 600;
}
.nav-menu>.menu-top>li.menu-item-has-children:after {
    content: "";
    position: absolute;
    top: 0;
    margin: auto;
    bottom: 0;
    right: -15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 5px 0;
    border-color: #fff transparent transparent;
    display: flex;
    align-items: center;
}

ul.menu-top li ul.sub-menu li.menu-item-has-children:after{
    display: none;
}
/* dropdown start here */
ul.menu-top li:hover>ul {
    display: block;
}

ul.menu-top li:hover li {
    float: none;
}
ul.menu-top li:hover li a:hover {
    background: var(--bs-darkgrey);
    color: #fff;
}
.menu-top .sub-menu > li {
    border-bottom: none;
}
.menu-top .sub-menu > li:last-child {
    border-bottom: none;
}
.menu-top .sub-menu li.current_page_item a {
    background-color: var(--bs-darkgrey);
    color: #fff;
}
.menu-top .sub-menu > li:nth-child(1) {
    border-top: 5px solid #AABED4;
}
.menu-top .sub-menu > li.current_page_item ul li a {
    background-color: rgba(0, 0, 0, 0.95);
    color: #fff;
    font-weight: 400;
}

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

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

/* Displays second level dropdowns to the right of the first level dropdown */
ul.menu-top ul ul {
    left: 100%;
    top: 0;
    position: absolute;
}
ul.menu-top li .sub-menu li {
    padding: 0;
    display: block;
    width: 100%;
    border-bottom: 1px solid #f3f3f3;
}
.nav-menu-inner {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
}
.menu-top {
    position: relative;
    transition: all ease-in-out .2s;
    text-align: right;
    /* width: 100%; */
    justify-content: space-between;
    display: flex;
}
.menu-top li:first-child {
    padding-left: 0;
}
.menu-top li:last-child {
    margin-right: 0;
    padding-right: 0px;
}
ul.menu-top li#menu-item-25 {
    display: none;
}
.sub-menu {
    background-color: var(--bs-white);
    min-width: 215px;
    text-align: left;
}
ul.menu-top li .sub-menu li a {
    font-size: 14px;
    padding: 5px 10px;
    line-height: 18px;
    margin: 0;
    color: #000000;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    text-transform: capitalize;
    line-height: 24px;
}
ul.menu-top li .sub-menu li:last-child a {
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}
.menu-top .sub-menu li.current_page_item a:before, .menu-top .sub-menu li a:hover:before {
    background: #fff;
}
ul.menu-top li .sub-menu li a:hover {
    color: var(--bs-white);
    background: var(--bs-darkgrey);
}

.menu-header ul.sub-menu li.menu-item-has-children>a:after {
    -ms-transform: rotate(227deg);
    -webkit-transform: rotate(227deg);
    -moz-transform: rotate(227deg);
    -o-transform: rotate(227deg);
    transform: rotate(227deg);
    right: 13px;
    top: 0;
    bottom: 0;
    content: "";
    border-left: 2px solid #293a4c;
    border-bottom: 2px solid #293a4c;
    display: inline-block;
    width: 8px;
    height: 8px;
    position: absolute;
    margin: auto;
}
ul.menu-top li .sub-menu li.menu-item-has-children > a:hover {
    background-color: var(--bs-darkgrey);
    color: #fff;
}
.menu-header ul.sub-menu li.current-menu-ancestor>a:after {
    border-color: #fff;
}
.menu-header ul.sub-menu li.current-menu-item>a:after, .menu-header ul.sub-menu li.menu-item-has-children>a:hover:after {
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.menu-header > ul > li > ul {
    transform: translateY(1.250em);
    transition: all linear 0.1s;
    top: 100%;
    position: absolute;
    list-style: none;
    z-index: 1;
    margin: 0;
    padding: 0;
    transition: all linear 0.1s;
    margin-top: 0px;
}
header#header.small-header .menu-header > ul > li > ul {
    box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.258);
    transition: all linear 0.1s;
}
.menu-header .sub-menu {
    visibility: hidden;
}
.menu-header ul li:hover>ul {
    opacity: 1;
    transform: translateY(0);
    display: block;
    visibility: visible;
    z-index: 1;
}
.menu-top li.menu-item-has-children:after {
    content: "";
    position: absolute;
    top: 2px;
    margin: auto;
    right: -15px;
    background-size: 10px;
    background-repeat: no-repeat;
    background-image: url(../img/down-arrow.svg);
    background-position: center;
    height: 10px;
    width: 10px;
    bottom: 1px;
}

.menu-top > li.current-menu-item:after, .nav-menu .menu-top>li.current-menu-ancestor:after {
    background-image: url(../img/down-arrow-active.svg);
}
.menu-header ul li#menu-item-146765:hover>ul {
    max-height: 500px;
    overflow-y: scroll;
}
/* Menu CSS END */
/* block css default */
.wp-block-group, .wp-block-columns {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
    margin-bottom: 35px;
    padding-left: 12px;
    padding-right: 12px;
}
.wp-block-group ul, .wp-block-columns ul {
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 15px;
}
/* block css default */
/* Header Search */
.search-box-outer {
    width: 57%;
    margin-left: auto;
}
.search-icon{
    cursor: pointer;
    transition: all ease-in-out 0.45s;
    background-size: 18px;
    background-repeat: no-repeat;
    background-image: url(../img/search-white.png);
    background-position: 0px 0px;
    width: 19px;
    height: 19px;
    top: 5px;
    position: relative;
}
.close-search{
    cursor: pointer;
}
.search-bar {
    padding: 1px 0 10px 15px;
    margin-left: 0;
    color: #000;
    position: relative;
    width: auto;
    display: inline-block;
    margin-top: 0px;
}
.search-bar:before {
    content: "";
    background-color: #fff;
    position: absolute;
    height: 1.15em;
    left: 0;
    width: 1.5px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}
.search-bar-box {
    background-color: rgba(53, 163, 175, 0);
    position: relative;
    right: 0px;
    height: 3rem;
    border: 1px solid rgba(53, 163, 175, 0);
    border-bottom-color: #e9e9e9;
    z-index: 2;
    opacity: 1;
    width: calc(100% - 0em);
}
.mobile-search-bar {
    margin-left: 0px;
    cursor: pointer;
    position: relative;
    padding-left: 11px;
    margin-right: 15px;
    top: 0;
    height: 19px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 2px solid #000;
    line-height: normal;
}
.mobile-search-bar .white-search-icon {
    display: block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/search.svg);
    background-position: center;
    cursor: pointer;
    transition: 0.5s;
}
.mobile-search-bar .white-search-icon:hover {
    background-image: url(../img/search-grey.svg);
    transition: 0.5s;
}
header#header.small-header .search-bar-box {
    top: 0;
}
#SiteSearchs img {
    width: 1.5em;
}
.browser-ie .search-bar-box,
.browser-unknown .search-bar-box,
.browser-ie .search-bar-box.active-bar,
.browser-unknown .search-bar-box.active-bar
{
    -webkit-transition:  all ease-in-out 0s;
    -moz-transition:  all ease-in-out 0s;
    -o-transition:  all ease-in-out 0s;
    transition: all ease-in-out 0s;
}

.search-icon-form button.btn {
    background-color: var(--bs-darkgrey);
    padding: 20px;
    margin-top: 0;
}

.search-icon-form button.btn:hover {
    background-color: #fff;
    color: var(--bs-darkgrey);
    border: 1px solid #fff;
}

.search-icon-form button.btn:focus{
    background-color: var(--bs-darkgrey);
    color: #fff;
    border: 1px solid var(--bs-darkgrey);
}

.search-wrapper {
    flex-direction: column;
    text-align: center;
}

.search-wrapper .title {
    color: var(--bs-darkgrey);
    margin-bottom: 50px;
}

.search-input-box .form-control {
    color: #76777a;
}

.search-form-outer{
    width: 100%
}

.search-icon-form {
    padding: 8px 15px;
    margin-left: 0;
    margin-right: 0;
    padding-right: 0;
}

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

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

.search-input-box{
    width: 100%
}

.search-input-box input{
    border: none;
    padding-left: 0;
    padding-right: 0;
    color: #fff;
}

.search-input-box input:focus{
    outline: none!important;
    box-shadow: none!important
}

#m-SiteSearchs-form .search-input-box ::-webkit-input-placeholder {
    color: #ffffff;
    opacity: 1;
}

#m-SiteSearchs-form .search-input-box ::-moz-placeholder {
    color: #ffffff;
    opacity: 1;
}

#m-SiteSearchs-form .search-input-box :-ms-input-placeholder {
    color: #ffffff;
    opacity: 1;
}

#m-SiteSearchs-form .search-input-box :-moz-placeholder {
    color: #ffffff;
    opacity: 1;
}

#search-icon-bar .fa-search {
    color: #fff;
    font-size: 0;
}

.top-search-wrap {
    display: inline-block;
}

.search-input-box .form-control {
    padding: 0;
    height: 2.5rem;
    background-color: transparent;
    color: #000000;
}

.search-icon-form .fa-search {
    color: #fff;
    font-size: 0;
}
/* Header Search End */
/* Header CSS Start */
.menu-wrap, .mobile-header-sec{
    display: none;
}
.logo-wrapper {
    height: auto;
    position: relative;
    width: auto;
    top: 0;
    max-width: 100%;
}
.logo-wrapper a {
    display: flex;
    align-items: center;
    max-width: calc(100% - 15px);
}
.logo-wrapper a img {
    width: auto;
    transition: 1s;
    object-fit: contain;
}
.menu-top li a, header#header.small-header .header-contact-info a {
    transition: 1s;
}
header#header.small-header .logo-wrapper a img {
    max-width: 100%;
}
/* header#header.small-header .menu-top > li > a {
    padding: 32px 0;
} */
.top-search-bar {
    text-align: right;
    position: relative;
    width: 45px;
}
.nav-menu-wrapper {
    width: 100%;
    position: relative;
    margin-bottom: 0;
    transition: all ease-in-out .2s;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 15px;
}
.menu-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}
header#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
    padding: 0;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.18);
    background: var(--bs-white);
}
header#header.small-header {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.18);
    background: var(--bs-white);
}
.header-top .container-fluid {
    padding: 0;
    padding-left: 30px;
    padding-right: 30px;
}
.header-top .header-left-logo {
    display: flex;
    align-items: center;
    padding-bottom: 0px;
}
.header-aside-col {
    align-items: center;
    display: flex;
}
.header-top {
    padding: 0;
    width: 100%;
    position: relative;
}
.right-top-wrap {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
}
.header-contact-info {
    min-width: 192px;
    margin-left: 15px;
}

.header-contact-info a {
    color: var(--bs-white);
    background-color: var(--bs-darkgrey);
    font-family: var(--font-medium);
    padding: 15px;
    display: inline-block;
    border-radius: 30px;
    background-image: url(../img/phone.svg);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: 16px 14px;
    padding-left: 40px;
    border: 2px solid transparent;
    line-height: normal;
    transition: .5s;
}
.header-contact-info a:hover {
    color: var(--bs-darkgrey);
    background-color: var(--bs-white);
    background-image: url(../img/phone-grey.svg);
    border-color: var(--bs-darkgrey);
    transition: 0.5s;
}
.nav-menu-inner ul > li .sub-menu *{
    transition: none;
}

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

/** Mobile Search Bar ***/
.mobile-search-bar-box .search-input-box{
    width: 100%;
    position: relative;
}

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

.close-btn:hover {
    opacity: 1;
    cursor: pointer;
    background-color: #46658e;
}
.close-btn:before, .close-btn:after {
    position: absolute;
    left: 0;
    content: ' ';
    height: 26px;
    width: 2px;
    background-color: #fff;
    right: 0;
    margin: auto;
}

.close-btn:hover:before, .close-btn:hover:after {
    opacity: 1;
    background-color: #ffffff;
}
.close-btn:before {
    transform: rotate(45deg);
}
.close-btn:after {
    transform: rotate(-45deg);
}
.modal-dialog-scrollable .modal-content {
    overflow: inherit;
}
.mobile-search-bar-box{
    display: none
}
.mobile-search-bar-box {
    position: fixed;
    top: 0;
    width: 100%;
    height: 142px;
    z-index: 10000;
    background-color: var(--bs-darkgrey);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: all ease-in-out 0.5s;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.42);
    opacity: 0;
}
.mobile-search-active .mobile-search-bar-box {
    transform: translate(0);
    z-index: 999999;
    opacity: 1;
}
.mobile-search-bar-box form{
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
.mobile-search-bar-box .search-input-box input {
    font-size: 16px;
    border-bottom: 1px solid #ffffff;
    color: #fff;
    height: 46px;
    padding-left: 0px;
    padding-right: 50px;
}
.mobile-search-bar-box .search-icon-form img{
    width: 28px;
    max-width: 54px;
}
.search-icon-form button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    background-size: 22px;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    width: 22px;
    height: 22px;
    top: 0px;
    position: relative;
    background-image: url(../img/search-icon-white.svg);
    opacity: 0.7;
}

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

.search-input-box .form-control:focus {
    border-bottom: 1px solid #ffffff;
    color: #fff;
}

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

.req-error {
    position: absolute;
    font-size: 11px;
    bottom: 1px;
    display: none;
    color: #fff;
    font-weight: normal;
    right: 50px;
    background-color: #b30000;
    padding: 1px 5px;
    border-radius: 4px 4px 0px 0px;
    line-height: normal;
    text-transform: capitalize;
}
.mobile-search-bar img {
    cursor: pointer;
    top: -3px;
    position: relative;
}

.m-close-search .bar {
    background: #FFF;
    border-radius: 0;
    display: block;
    height: 1px;
    width: 45px;
    display: none;
}
.m-close-search .bar:nth-of-type(2) {
    width: 25px;
    margin-bottom: 9px;
    margin-top: 9px;
}
.mobile-search-bar-box .search-icon-form {
    padding: 0;
    margin-left: 15px;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    position: absolute;
    right: 0px;
    bottom: 3px;
    width: 40px;
}
.mobile-search-bar-box [type='submit'], .mobile-search-bar-box [type='submit']:focus{
    background-color: transparent
}

.nav-menu-inner .nav-menu {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    position: relative;
}
header#header.small-header .nav-menu-inner .nav-menu {
    top: 0;
}
/* Mobile Search Bar */
/* Header CSS End */

/* owl css for nav */
.owl-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    height: 65px;
    right: 0;
    margin: auto;
    z-index: 1;
    width: 100%;
    bottom: 0;
    margin-top: 40px;
}

.owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    display: inline-block;
    vertical-align: middle;
    height: 55px;
    width: 55px;
    background-repeat: no-repeat;
    background-size: 24px;
    position: relative;
    z-index: 1;
    opacity: 1;
    border: 1px solid #364d8a;
    padding-bottom: 6px !important;
    line-height: 30px;
    color: var(--bs-darkgrey);
    background-color: rgba(240, 239, 239, 1);
    border-color: var(--bs-darkgrey);
    font-size: 0;
    min-width: 88px;
    padding: 16px 30px;
    border-radius: 55px;
    padding-left: 20px;
    background-image: url(../img/right-arrow-blue.svg);
}

.owl-carousel .owl-nav .owl-prev {
    left: -10px;
    background-position: center;
    transform: rotate(180deg);
}
.owl-carousel .owl-nav .owl-next {
    right: -10px;
    background-position: center;
}
.owl-carousel .owl-nav .owl-next:hover:after, .owl-carousel .owl-nav .owl-prev:hover:after {
    opacity: 0.2;
}
.owl-carousel .owl-nav .owl-next:hover, .owl-carousel .owl-nav .owl-prev:hover {
    opacity: 1;
    background-image: url(../img/right-arrow-white.svg);
    background-color: #293a4c;
    border-color: #293a4c;
}
/* end owl css */

/* owl dots */
.owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 65px;
}
.owl-dots .owl-dot span {
    display: block;
    background: #D9D9D9;
    width: 15px;
    height: 15px;
    border-radius: 100%;
}
.owl-dots .owl-dot {
    margin: 0 5px;
    cursor: pointer;
}
.owl-dots .owl-dot.active span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-darkgrey);
}
/* owl dots end */


/* Contact Form CSS Start */
.wpcf7 form.spam .wpcf7-response-output {
    margin-left: auto !important;
    margin-right: auto !important;
}
.wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed;
    background: #293a4c;
    color: #ffffff;
}
.wpcf7 .wpcf7-form-control-wrap.quiz-math, .wpcf7 .wpcf7-form-control-wrap.quiz-math label {
    width: 100%;
    margin: 0;
}
.wpcf7 .wpcf7-spinner {
    position: absolute;
    right: -30px;
    top: 0;
    bottom: 0;
    margin: auto;
}
div.wpcf7 .wpcf7-form .form-control, .common-form-style .form-group .form-control, select {
    padding: 3px;
    font-size: 16px;
    text-transform: none;
    color: #000;
    height: 54px;
    font-weight: 400;
    padding-left: 0;
    border-radius: 0;
    background: #fff;
    border: none;
    border-bottom: 1px solid #b7b7b7;
}
select{
    width: 100%;
}
div.wpcf7 .wpcf7-form .form-control:focus {
    border-bottom-color: #8D8D8D;
}
div.wpcf7 .wpcf7-form textarea.form-control, .common-form-style .form-group textarea.form-control {
    height: 120px;
}
div.wpcf7 .wpcf7-form textarea.form-control {
    padding-top: 10px;
}
.form-group {
    margin-bottom: 20px;
}
.wpcf7 .wpcf7-response-output {
    font-size: 12px;
    line-height: 1.3;
    position: absolute;
    left: 0;
    bottom: -40px;
    right: 0;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    border: none !important;
    margin: 0 !important;
    background: #b31517;
    max-width: 389px;
}
.form-control, .form-control:focus {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    box-shadow: none;
    padding: .4rem 0rem;
    font-size: 0.9rem;
}
.wpcf7-form-control-wrap {
    display: inline-flex;
    width: 100%;
}
.wpcf7 .wpcf7-not-valid-tip {
    color: #fff;
    font-weight: normal;
    display: block;
    position: absolute;
    bottom: 1px;
    right: 0;
    font-size: 10px;
    background-color: #b30000;
    padding: 6px;
    border-radius: 4px 4px 0px 0px;
    line-height: 6px;
    text-transform: capitalize;
}
.form-banner-404 .wpcf7 .wpcf7-not-valid-tip{
    padding: 2px 5px;
}
.wpcf7 {
    position: relative;
}
.wpcf7 .form-acceptance-col .wpcf7-list-item-label {
    font-size: 16px;
    line-height: 24px;
}
.wpcf7 .btn-wrap {
    position: relative;
    padding: 0;
    display: inline-block;
    width: auto;
    margin-top: 35px;
    margin-right: 0;
    margin-left: 0;
}
.wpcf7 .btn-wrap:after {
    content: '';
    bottom: 0;
    right: 38px;
    height: 15px;
    width: 25px;
    position: absolute;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/right-arrow-white.svg);
    background-position: center;
    margin: auto;
    top: -3px;
    pointer-events: none;
}
.wpcf7 .btn-wrap .btn {
    width: 100%;
    text-align: center;
    text-indent: -28px;
}
.btn-wrap .wpcf7-submit {
    display: inline-block;
    position: relative;
    width: 100%;
    z-index: 1;
}

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

div.wpcf7 .ajax-loader {
    position: absolute;
    left: 0;
    right: 0px;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 1;
    z-index: 1;
    display: block;
}
div.wpcf7 form.submitting .btn-wrap input, .sidebar div.wpcf7 form.submitting .btn-wrap input {
    color: #ffffff;
    background-color: var(--bs-darkgrey);
    border: 2px solid var(--bs-darkgrey);
    text-decoration: none;
}
div.wpcf7 form.submitting .btn-wrap {
    border: none;
    color: #000;
    background: none;
    border-color: #000;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    max-width: 224px;
    visibility: hidden;
    display: none !important;
}

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

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

[type=submit], [type=submit]:focus {
    cursor: pointer;
    box-shadow: none;
}
/* placeholder */
.wpcf7 ::-webkit-input-placeholder {
    color: rgba(13, 13, 13, 1);
}
.wpcf7 select {
    color: rgba(13, 13, 13, 1); /* Default text color */
}
.wpcf7 ::-moz-placeholder {
    color: rgba(13, 13, 13, 1);
}

.wpcf7 :-ms-input-placeholder {
    color: rgba(13, 13, 13, 1);
}

.wpcf7 :-moz-placeholder {
    color: rgba(13, 13, 13, 1);
}
.wpcf7 .wpcf7-not-valid-tip, .wpcf7 label.error {
    color: #fff;
    font-weight: 400;
    position: absolute;
    bottom: -14px;
    right: 0px;
    font-size: 10px;
    background-color: #b30000;
    padding: 4px;
    border-radius: 0px;
    line-height: 6px;
    text-transform: capitalize;
    margin: 0;
}
.wpcf7 .wpcf7-not-valid-tip {
    font-size: 0px;
    display: none;
}
.wpcf7 .quiz-math .wpcf7-not-valid-tip {
    font-size: 10px;
    display: inline-block;
}
.contact-form-sidebar .wpcf7-select{
    color: white;
    border: 1px solid white;
}
select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
    text-transform: capitalize;
}
.wpcf7 .wpcf7-checkbox .wpcf7-list-item {
    display: inline-block;
    margin: 0;
    margin-right: 20px;
    vertical-align: middle;
}
.wpcf7 .wpcf7-list-item label {
    display: flex;
    align-items: center;
}
.wpcf7 .wpcf7-list-item label input[type="checkbox"] {
    margin-right: 10px;
}
.wpcf7 .wpcf7-list-item label .wpcf7-list-item-label {
    display: inline-block !important;
    opacity: 1 !important;
    transition: none !important;
}
.form-acceptance-col .wpcf7-list-item label {
    line-height: 1.625rem;
    font-size: 16px;
    color: #000;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
}
.wpcf7 .wpcf7-acceptance .wpcf7-list-item-label {
    display: inline-block !important;
    transition: none;
    line-height: 26px;
}

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

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

.form-acceptance-col .wpcf7-list-item {
    margin-left: 0;
}
/* Contact Form CSS END */
/* Home banner css */
.home-banner {
    height: calc(100% + 0px);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
    background-color: #fff;
    padding-top: 0;
    padding-bottom: 0;
}
.home-banner .container {
    z-index: 1;
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
    top: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 140px;
}
.home-banner-right-image {
    position: absolute;
    bottom: 0;
    right: 40px;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    width: 41%;
}
.home-banner video {
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
.home-banner .row {
    max-width: 1000px;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column
}
.home-banner .banner-content {
    width: 100%;
    position: relative;
    margin-bottom: 15px;
}
.home-banner .banner-title {
    position: relative;
    margin: 0;
    margin-bottom: 10px;
    margin-top: 10px;
    color: var(--bs-white);
    font-size: 60px;
    line-height: 70px;
    font-family: var(--font-medium);
}
.home-banner .banner-content {
    width: 100%;
    position: relative;
    margin-bottom: 45px;
    max-width: 555px;
}

.home-banner .banner-content p {
    margin-bottom: 8px;
    color: var(--bs-white);
    font-size: 20px;
    line-height: 30px;
}
.home-banner img.home-banner-bg {
    position: absolute;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-position: top center;
}
.banner-wrap {
    max-width: 645px;
    position: relative;
    display: flex;
    justify-content: center;
    color: #1f3b71;
    top: -55px;
}
.banner-wrap .banner-small-title {
    font-size: 35px;
    font-weight: 300;
    margin-bottom: 40px;
    margin-top: 30px;
    color: #1f3b71;
}
.banner-wrap .home-banner-info {
    width: 100%;
    position: relative;
}
.banner-wrap .home-banner-info .page-button .btn {
    margin-right: 15px;
}
.banner-case-detail {
    display: flex;
    margin-top: 50px;
    background-color: var(--bs-darkgrey);
    bottom: -90px;
    position: absolute;
    width: calc(100% - 60px);
    padding-left: 30px;
    padding-right: 30px;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}
.case-item-col {
    padding-left: 0;
    padding-right: 0;
    flex-direction: column;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
    padding-top: 30px;
    width: 25%;
}
.case-item-col:nth-child(2) {
    flex-direction: column;
    border-left-style: solid;
    border-left-color: rgba(255, 255, 255, .2);
    border-left-width: 1px;
    border-right-color: rgba(255, 255, 255, .2);
    border-right-width: 0;
    border-right-style: solid;
}
.case-item-col:nth-child(3) {
    border-left-style: solid;
    border-left-color: rgba(255, 255, 255, 0.2);
    border-left-width: 1px;
    border-right-color: rgba(255, 255, 255, 0.2);
    border-right-width: 1px;
    border-right-style: solid;
}
.case-price {
    color: var(--bs-white);
    font-size: 55px;
    margin-bottom: 8px;
    display: block;
    line-height: normal;
    font-family: var(--font-medium);
}
.case-text, .case-text a {
    font-size: 15px;
    line-height: 22px;
    max-width: 172px;
    color: var(--bs-white);
    font-weight: normal;
}
.case-text a:hover {
    color: var(--bs-white);
    font-weight: normal;
}
/* Home banner css end */

/* gtranslate */
.gtranslate_wrapper {
    display: flex;
    align-items: center;
    width: 133px;
    height: 55px;
    background: rgba(240, 239, 239, 1);
    border-radius: 30px;
    padding: 0 11px;
    justify-content: center;
}

.gtranslate_wrapper a {
    font-size: 12px;
    margin: 0 4px;
}
.gtranslate_wrapper a[data-gt-lang="en"], .gtranslate_wrapper a[data-gt-lang="es"] {
    font-size: 0px;
    line-height: normal;
}
.gtranslate_wrapper a[data-gt-lang=es] {
    order: 1;
}
.gtranslate_wrapper a[data-gt-lang=en] {
    order: 2;
}
.gtranslate_wrapper a[data-gt-lang="es"]:hover:after {
    color: var(--bs-darkgrey);
}
.gtranslate_wrapper a[data-gt-lang="en"]:hover:after {
    color: var(--bs-darkgrey);
}
.gtranslate_wrapper a[data-gt-lang=en]:before {
    content: "/";
    font-size: 16px;
    margin-right: 8px;
}
.gtranslate_wrapper a[data-gt-lang="es"]:after {
    content: "ESP";
    font-size: 16px;
    color: rgba(94, 94, 94, 1);
}
.gtranslate_wrapper a[data-gt-lang="en"]:after {
    content: "ENG";
    font-size: 16px;
    color: rgba(94, 94, 94, 1);
}
.gtranslate_wrapper [data-gt-lang="en"].gt-current-lang:after, .gtranslate_wrapper [data-gt-lang="es"].gt-current-lang:after {
    color: rgba(41, 58, 76, 1);
}
.translated-ltr .menu-top li a {
    font-size: 10px;
}
.gtranslate_wrapper a.glink.gt-current-lang {
    font-weight: 400;
    font-family: var(--font-medium);
    color: var(--bs-darkgrey);
}
/* gtranslate */

/* footer css */
.footer-section {
    background-color: var(--bs-darkgrey);
    padding-top: 50px;
    padding-bottom: 0px;
}
.copyright {
    text-align: center;
    font-weight: 400;
    line-height: normal;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.copyright p {
    font-size: 14px;
    margin: 0;
    font-weight: 300;
    color: #fff;
}
.copyright .small-nav {
    margin-left: 10px;
    font-size: 14px;
    color: var(--bs-white);
}
.small-nav a {
    display: inline-block;
    margin-right: 6px;
    position: relative;
    padding-right: 0;
    font-weight: 400;
    color: var(--bs-white);
    margin-left: 4px;
}
.small-nav a:hover {
    text-decoration: underline;
}
.small-nav a:first-child {
    margin-left: 0;
}
.small-nav a:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 10px;
    background: var(--bs-white);
    top: 0;
    right: -8px;
    bottom: 0;
    margin: auto;
}
.small-nav a:last-child:after {
    display: none;
    opacity: 0
}
.footer-section * {
    color: var(--bs-white);
}
.footer-logo a {
    display: inline-block;
}

.footer-logo a img {
    width: auto;
    max-width: 459px;
}
.footer-section .footer-title {
    font-size: 16px;
    font-style: normal;
    text-transform: uppercase;
    line-height: 25px;
    margin-bottom: 15px;
    font-family: var(--font-medium);
}

.nap-address-info, .nap-address-info a, .nap-contact-info .phoneno, .nap-time-info {
    padding: 0;
    display: inline-block;
    color: var(--bs-white);
    font-size: 16px;
    font-weight: 300;
    line-height: 32px;
    position: relative
}

.nap-contact-info {
    width: 100%;
    margin-bottom: 0;
    margin-top: 10px
}
.footer-phone-col a {
    display: inline-block;
    padding: 10px 0;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-left: 30px;
    line-height: normal;
    background-image: url(../img/phone.svg);
}
.footer-phone-col a:hover {
    text-decoration: underline;
    color: #fff;
}
.nap-address-info {
    background-image: url(../img/map.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 0 3px;
    padding-left: 30px;
    width: 100%;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
}

.nap-contact-info .phoneno {
    display: inline-block;
    padding: 10px 0;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-left: 30px;
    line-height: normal;
    background-image: url(../img/phone.svg)
}

.nap-contact-info .email_address {
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-left: 30px;
    line-height: normal;
    background-image: url(../img/mail.svg)
}

.nap-contact-info .phoneno,.nap-fax-info,.nap-contact-info .phoneno span {
    color: var(--bs-white)
}

.nap-address-info .direction-link {
    color: var(--bs-white);
    border-bottom: 1px solid var(--bs-white);
    line-height: normal
}

.nap-contact-info .email_address:hover,.nap-contact-info .email_address:hover span {
    color: var(--bs-white)
}

.nap-address-info .direction-link:hover {
    color: var(--bs-white);
    border-color: transparent;
}

.nap-contact-info .phoneno:hover,.nap-contact-info .phoneno:hover span {
    color: var(--bs-white)
}

.copyright-wrapper {
    margin-top: 40px;
}

ul.footer-social {
    z-index: 1;
    display: flex;
    margin-top: 0
}

ul.footer-social li {
    margin: 0;
    margin-right: 11px
}

ul.footer-social li:last-child {
    margin-right: 0
}
.footer-social li a {
    position: relative;
    height: 45px;
    width: 45px;
    line-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: 0.5s;
}
.footer-social li a:hover {
    transition: 0.5s;
    transform: scale(1.1);
}
ul.footer-social li a svg, ul.footer-social li a img {
    height: 20px;
    width: 20px
}

ul.footer-social li a svg path, ul.footer-social li a svg circle, ul.footer-social li a svg rect {
    fill: var(--bs-white)
}

ul.footer-social li a:hover svg path,ul.footer-social li a:hover svg circle,ul.footer-social li a:hover svg rect {
    fill: rgba(226,228,230,1);
}
.footer-social li a:hover {
    border-color: rgba(226,228,230,1);
}
/* footer css */

/* about css */
.our-about-sec .about-image {
    display: flex;
}
.our-about-sec .about-image img {
    height: calc(100% - 40px);
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.about-info-col .link-button {
    margin-top: 30px;
}
.about-info-col {
    display: flex;
    align-items: center;
}
.our-about-sec .about-image .fullwidth {
    position: relative;
}
.our-about-sec .about-image .about-short-info {
    position: absolute;
    bottom: 0;
    background-color: #e2e2e2;
    padding: 20px 15px;
    right: 0;
    text-align: center;
    background-image: url(../img/about-bg-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 76%;
}
.our-about-sec .about-image .about-short-info p {
    font-size: 20px;
}
.our-about-sec {
    margin-top: 90px;
    position: relative;
    z-index: 0;
}
.our-about-sec:after {
    position: absolute;
    content: "";
    background-image: url(../img/right-about-bg-image.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 62%;
    height: 100%;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: -1;
}

.our-about-sec .container {
    z-index: 1;
}
/* about css */
/* accident victim css */
.accident-victim-sec  {
    position: relative;
    z-index: 0;
}
.accident-victim-sec .container {
    z-index: 1;
}
.accident-victim-sec:before {
    position: absolute;
    content: "";
    background-image: url(../img/motor-vehicle-accident-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 80%;
    height: 100%;
    left: 0;
    bottom: 0;
    top: 0;
    z-index: -1;
}
.accident-victim-sec:after {
    position: absolute;
    content: "";
    background-color: rgba(41, 58, 76, 1);
    width: 20%;
    height: 100%;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: -1;
}

.accident-victim-image {
    display: flex;
}
.accident-victim-info-col {
    display: flex;
    align-items: center;
}
.accident-victim-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
/* accident victim css */
/* Left Image and Right Content Section */
.left-image-right-content-sec  {
    position: relative;
    z-index: 0;
    background-color: #fff;
}
.left-image-right-content-sec .container {
    z-index: 1;
    position: relative;
}
.left-image-right-content-sec:before {
    position: absolute;
    content: "";
    background-color: rgba(41, 58, 76, 1);
    width: 20%;
    height: 100%;
    left: 0;
    bottom: 0;
    top: 0;
    z-index: -1;
}
.left-image-right-content-sec .right-info-col {
    display: flex;
    align-items: center;
}
.left-image-right-content-sec .left-side-image {
    display: flex;
}
.left-image-right-content-sec .left-side-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
/* Left Image and Right Content Section */

/* Home Team CSS */
.home-team-sec {
    background: rgba(242, 242, 242, 1);
    width: 100%;
    position: relative;
    z-index: 0;
}
.home-team-sec .container {
    z-index: 1;
    position: relative;
}
.home-team-sec:after {
    position: absolute;
    content: "";
    background-color: rgba(41, 58, 76, 1);
    width: 33%;
    height: 100%;
    right: 0;
    bottom: 0;
    top: 0;
    background-image: url(../img/tem-bg-pattern.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.slider-left-wrap {
    width: 100%;
    background: #fff;
    padding: 35px;
    position: relative;
    border: 1px solid rgba(190, 190, 190, 1);
    height: 468px;
    display: flex;
    align-items: center;
}
.slider-left-wrap .team-item-wrap {
    padding-left: 3px;
    width: 100%;
}
.slider-left-wrap .team-link-button {
    margin-top: 30px;
}
.slider-left-wrap .team-name {
    margin-bottom: 20px;
    position: relative;
    display: block;
    color: var(--bs-black);
    text-transform: none;
    font-size: 28px;
    line-height: normal;
    font-family: var(--font-medium);
    font-weight: 400;
}
.slider-left-wrap .left-slider, .slider-left-wrap .left-slider .owl-stage, .left-slider .owl-stage-outer, .slider-left-wrap .left-slider .owl-stage .items {
    height: 100%;
}

.slider-left-wrap .left-slider .owl-stage {
    align-items: center;
    display: flex;
}

.right-slider .owl-item {
    /* Ensure each item in the right slider doesn't affect the layout */
    display: flex;
    justify-content: center;
}

.team-featured-img img {
    width: 100%;
    height: auto;
    border-radius: 0px;
}
/* navigation buttons */
.team-btn-sec {
    margin-top: 35px;
    padding-left: 2px;
    max-width: 190px;
    display: flex;
    justify-content: space-between;
}
.team-btn-sec .team-prev, .team-btn-sec .team-next {
    font-size: 0;
    min-width: 88px;
    padding: 16px 25px;
    border-radius: 55px;
    padding-left: 17px;
}
.team-btn-sec .team-next svg, .case-btn-sec .case-next svg {
    top: -1px;
    position: relative;
}
.team-btn-sec .team-prev {
    transform: rotate(180deg);
    padding-bottom: 6px !important;
    line-height: 30px;
    color: var(--bs-darkgrey);
    background-color: rgba(240, 239, 239, 1);
    border-color: var(--bs-darkgrey);
}
.team-btn-sec .team-prev svg path {
    fill: var(--bs-darkgrey);
    stroke: var(--bs-darkgrey);
}
.team-btn-sec .team-prev:hover  {
    border-color: transparent;
    background-color: var(--bs-darkgrey);
}
.team-btn-sec .team-prev:hover svg path {
    fill: var(--bs-white);
    stroke: var(--bs-white);
}
.slider-right-wrap {
    width: 100%;
    position: relative;
}
.slider-right-wrap .right-slider .owl-item {
    transform: scale(0.7);
    transition: 0.5s;
    opacity: 0.5;
}
.slider-right-wrap .right-slider .owl-item.active {
    transform: scale(1);
    transition: 0.5s;
    opacity: 1;
}
.slider-right-wrap .right-slider .owl-item.active + .owl-item {
    left: -190px;
    z-index: -1;
}
.service-slide-wrap {
    max-width: 600px;
}
/* Home Team CSS */

/* Practice Areas CSS */
.practice-short-detail-row {
    margin-top: 40px;
}
.home-practice-sec {
    background-image: url(../img/close.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.home-practice-sec .prac-item-info {
    width: 100%;
    text-align: center;
    max-width: 521px;
    margin-left: auto;
    margin-right: auto;
}
.prac-item-info .practice-image {
    width: 100%;
    margin-bottom: 20px;
}

.prac-item-info .practice-image img {
    width: 100%;
}

.prac-item-info .practice-heading {
    margin-bottom: 10px;
    position: relative;
    display: block;
    color: var(--bs-black);
    text-transform: none;
    font-size: 40px;
    line-height: 55px;
    font-family: var(--font-medium);
    font-weight: 400;
}

.prac-item-info .practice-content {
    width: 100%;
    position: relative;
    margin-bottom: 20px; 
}
.prac-item-info .practice-content p {
    font-size: 20px;
    color: rgba(13, 13, 13, 1);
}
.read-btn {
    font-size: 20px;
    color: rgba(41,58,76,1);
    text-transform: uppercase;
    line-height: normal;
    display: inline-block;
    border-bottom: 1px solid rgba(41,58,76,1);
    position: relative;
}
.read-btn:after {
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/right-arrow-blue.svg);
    background-position: center;
    height: 24px;
    width: 24px;
    position: absolute;
    right: -34px;
    top: -2px;
    bottom: 0;
    margin: auto;
}
.read-btn:hover {
    color: rgba(41, 58, 76, 1);
    border-color: transparent;
}
.practice-link-item.active a {
    background-color: var(--bs-darkgrey);
    color: var(--bs-white);
}
.practice-link-item .practice-link .practice-icon {
    margin-right: 8px;
}
.practice-link-item .practice-link {
    position: relative; 
    color: var(--bs-black);
    text-transform: none;
    font-size: 18px;
    line-height: normal;
    font-weight: 400;
    background-color: var(--bs-white);
    padding: 15px;
    display: flex;
    line-height: normal;
    align-items: center;
}
.practice-link-item {
    margin-top: 30px;
    width: 100%;
}
.practice-link-item:first-child {
    margin-top: 0px;
}
.practice-link-item a svg, .practice-link-item a img {
    width: 44px;
    height: 45px;
    object-fit: cover;
    object-position: center;
}
.practice-link-item.active a svg path {
    fill: #fff;
}
.pa-wrap-detail {
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.practice-detail-item {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-300px);
    transition: opacity .8s ease,transform .8s ease,visibility .8s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.practice-detail-item-active-item {
    opacity: 1;
    visibility: visible;
    transform: translateX(0); /* Slide to original position */
    position: relative;
    z-index: 1;
}
.practice-heading-row {
    margin-bottom: 30px;
}
/* Practice Areas CSS */

/* trust logo css */
.trust-logos-section .heading {
    padding-left: 0;
    margin-bottom: 30px;
}
.trust-logos-section .owl-carousel .owl-item .item {
    height: 130px;
    padding: 0px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-logos-section .owl-carousel .owl-item .item>div {
    border: 1px solid rgba(196, 196, 196, 1);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.trust-logos-section .owl-carousel .owl-item .item img {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}

.trust-symbol-heading {
    text-align: left
}
#trustSlider .owl-stage-outer {
    margin-left: -50px;
    padding-left: 0;
    overflow: hidden;
}
.trust-logos-section .trust-info {
    overflow: hidden;
}
.trust-logos-section .container-fluid {
    padding-right: 0;
}
.trust-logos-section {
    overflow: hidden;
}
/* trust logo css */
/* Home testimonial css */
.quote-icon svg, .quote-icon img {
    width: 58px;
    height: 39px;
}
.testimonial-sec-wrap {
    background: rgba(242, 242, 242, 1);
    width: 100%;
    position: relative;
}
.testimonial-list-wrap .testimonial-items {
    display: flex;
    margin-top: 30px;
}
.testimonial-list-wrap .testimonial-item {
    width: 100%;
    border: 1px solid rgba(190,190,190,1);
    padding: 25px;
    position: relative;
    background: #fff;
}
.testimonial-item .satr-and-icon {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.testimonial-list-wrap .testimonial-item .the-client-name .first-char {
    color: var(--bs-darkgrey);
    font-size: 20px;
    width: 55px;
    height: 55px;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 55px;
    font-weight: 400;
    border: 1px solid rgba(190,190,190,1);
}
.testimonial-item .the-client-name {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 20px
}
.testimonial-list-wrap .testimonial-item .the-client-name .client-name {
    font-weight: 500;
    font-size: 20px;
    letter-spacing: .03em;
    color: #292929;
    line-height: normal;
    text-transform: capitalize;
    position: relative;
    margin-left: 10px
}
.testimonial-list-wrap .testimonial-item .the-client-name .testimonial-post-date {
    position: relative;
    color: #525252;
    font-size: 16px;
    letter-spacing: 0;
    text-transform: none
}
.testimonial-button-row {
    width: 100%;
    position: relative;
    margin-top: 50px;
}
.testimonial-list-wrap .testimonial-content {
    width: 100%;
    position: relative
}

.testimonial-list-wrap .testimonial-content .testimonial-item {
    width: 100%;
    position: relative;
    height: 440px;
    padding-top: 50px
}

.testimonial-list-wrap .testimonial-content .testimonial-item .testimonial-bottom-info {
    position: absolute;
    bottom: 0
}

.star-icon {
    margin: 0;
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 0
}
.testimonial-review-rating .star-icon-wraper {
    margin-left: 4px;
}
.testimonial-review-rating {
    display: flex;
    align-items: center
}

.star-icon .star-icon-wraper {
    display: inline-block;
    background-image: url(../img/star.svg);
    background-repeat: no-repeat;
    background-size: 22px;
    height: 22px;
    width: 22px;
    background-position: center;
    font-size: 0px
}
/* Home testimonial css */
/* Life Happen CSS */
.life-happen-sec {
    position: relative;
    z-index: 0;
}
.life-happen-sec .container {
    position: relative;
    z-index: 1;
}
.life-happen-sec:after {
    position: absolute;
    z-index: 0;
    content: "";
    background-color: rgba(41, 58, 76, 1);
    height: 100%;
    width: 100%;
    top: 0;
    opacity: 0.9;
    bottom: 0;
    right: 0;
    left: 0;
}
/* Life Happen CSS */
/* Why choose us css */
.why-choose-col {
    display: flex;
    position: relative;
}

.why-choose-col:after {
    background: rgba(196,196,196,1);
    height: 70%;
    width: 1px;
    content: "";
    right: 0;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
}

.why-choose-col:last-child:after {
    opacity: 0;
}
.why-choose-col .choose-icon {
    background: rgba(41, 58, 76, 1);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    padding: 25px;
}
.why-choose-col .choose-item {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 30px;
}

.why-choose-col .choose-icon svg, .why-choose-col .choose-icon img {
    width: 50px;
    height: 50px;
}
.why-choose-col .choose-item .choose-name {
    color: rgba(13, 13, 13, 1);
    font-size: 25px;
    margin: 22px 0;
    line-height: 35px;
    font-family: var(--font-medium);
}
/* Why choose us css */

/* Footer Form CSS */
.form-right-col {
    margin-left: auto;
    padding-left: 30px;
    padding-top: 70px;
    padding-bottom: 70px;
}
.footer-form-sec .footer-form-bg-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 50%;
    height: 100%;
    pointer-events: none;
}
/* Footer Form CSS */

/* case CSS */
.case-detail-wrap {
    width: 100%;
    position: relative;
    margin-top: 40px;
    height: 100%;
}
div#caseSlider, .case-detail-wrap .owl-carousel .owl-stage-outer, .case-detail-wrap .owl-carousel .owl-stage,
.case-detail-wrap .owl-item, .case-detail-wrap .owl-item .item, .case-detail-wrap .owl-carousel.owl-drag .owl-item {
    height: 100%;
}
.case-detail-wrap .owl-item .item .case-col-item {
    width: 100%;
    background: rgba(242, 242, 242, 1);
    padding: 30px;
    position: relative;
}

.case-detail-wrap .owl-item .item .case-col-item:hover {
    background-color: rgba(41, 58, 76, 1);
}
.case-detail-wrap .owl-item .item .case-col-item:hover * {
    color: #fff;
}
.case-detail-wrap .owl-item .item .case-col-item:hover .case-category {
    border-color: rgba(255, 255, 255, 0.2);
}
.case-detail-wrap .owl-item .item {
    width: 100%;
    position: relative;
    display: flex;
}

.case-detail-wrap .case-title {
    margin-bottom: 10px;
    position: relative;
    display: block;
    color: var(--bs-darkgrey);
    text-transform: none;
    font-size: 30px;
    line-height: normal;
    font-family: var(--font-medium);
    font-weight: 400;
}
.case-detail-wrap .case-category {
    font-size: 18px;
    color: rgba(13, 13, 13, 1);
    border-bottom: 1px solid rgba(86, 86, 86, 1);
    margin-bottom: 15px;
    padding-bottom: 12px;
    width: 100%;
    position: relative;
}

.case-detail-wrap .case-content {
    width: 100%;
    position: relative;
}

.case-detail-wrap .case-content p {
    color: rgba(86, 86, 86, 1);
}
.case-result-section .container {
    padding-right: 0;
}
.case-btn-sec {
    margin-top: 0;
    padding-left: 2px;
    max-width: 190px;
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: 40px;
}
.case-btn-sec .case-prev, .case-btn-sec .case-next {
    font-size: 0;
    min-width: 88px;
    padding: 16px 30px;
    border-radius: 55px;
    padding-left: 20px
}

.case-btn-sec .case-prev {
    transform: rotate(180deg);
    padding-bottom: 6px !important;
    line-height: 30px;
    color: var(--bs-darkgrey);
    background-color: rgba(240,239,239,1);
    border-color: var(--bs-darkgrey)
}

.case-btn-sec .case-prev svg path {
    fill: var(--bs-darkgrey);
    stroke: var(--bs-darkgrey)
}

.case-btn-sec .case-prev:hover {
    border-color: transparent;
    background-color: var(--bs-darkgrey)
}

.case-btn-sec .case-prev:hover svg path {
    fill: var(--bs-white);
    stroke: var(--bs-white)
}
#caseSlider .owl-stage-outer {
    margin-left: -150px;
    padding-left: 0;
    overflow: hidden;
}
/* CASE CSS */

.translated-ltr .hide-contact-form {
    display: none
}

.show-spanish-common-form {
    display: none
}

.translated-ltr .show-spanish-common-form {
    display: block
}
.checkbox-group-wrap{
    position: relative;
}
.checkbox-group-wrap .error {
    left: 0;
    right: inherit !important;
}

.why-choose-col .choose-item p {
    text-wrap: balance;
}
.left-image-right-content-sec .right-info-col .link-button {
    margin-top: 35px;
}

.play-icon {
    position: absolute;
    display: block;
    width: 69px;
    height: 69px;
    font-size: 0px;
    border: 1px solid var(--bs-white);
    border-radius: 50%;
    background-image: url("../img/play-icon.svg");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: 51%;
    transition: 1s;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--bs-darkgrey);
}
.html5lightbox:hover .play-icon {
    background-color: #0d6efd;
    transition: 1s;
    transform: scale(1.1);
}