/* Common CSS Start */
:root {
    --bs-darkblue: #0E477E;
    --bs-blue: #1F3B71;
    --bs-black: #000000;
    --bs-white: #ffffff;
    --bs-grey: #fafafa;
    --bs-lightgrey: #F6FBFB;
    --light-blue: #6e87b5;
    --bs-lightblue: #AABED4;
    --bs-bluecolor: #364D8A;
    /*  
    color: var(--bs-black); 
    color: var(--bs-white);
    color: var(--bs-grey);
    color: var(--bs-green); 
    color: var(--bs-blue);
    color: var(--bs-lightgrey); 
    color: var(--bs-lightblue); 
    font-family: 'trajan-regular';
    */
}
* {
    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: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    padding-top: 109px;
}
.home p {
    font-size: 19.2px;
    line-height: 24px;
}

.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-blue);
}
.hide{
    display: none;
}

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

a {
    color: var(--bs-blue);
    font-weight: 400;
    text-decoration: none;
}
a:hover {
    color: #000000;
}
p {
    margin-bottom: 1.75rem;
}
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-blue);
}
select{
    color: rgba(0,0,0,0);
    text-shadow: 0 0 0 #000;
}
a img{
    outline: 0;
}
input[type=checkbox], input[type=radio] {
    vertical-align: middle;
}
.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;
    border-radius: 0;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    min-width: 180px;
    font-weight: 600;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    white-space: normal;
    letter-spacing: 0.3px;
    border: none;
    z-index: 1;
    background-color: var(--bs-blue);
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
    text-align: center;
    font-size: 16px;
    transition: 0.5s;
    padding: 18px 30px !important;
    padding-bottom: 25px !important;
    font-family: 'Open Sans';
}

.btn::before {
    content: '';
    position: absolute;
    top: -11px;
    height: 11px;
    background-color: #8B8B8B;
    width: 100%;
    left: 0;
    transition: width .2s ease-in-out;
}
.btn::after {
    content: '';
    bottom: 0;
    left: 0;
    height: 10px;
    width: 50%;
    background-color: #8B8B8B;
    position: absolute;
    transition: width .2s ease-in-out;
}
.btn:hover::after {
    width: 100%;
    -webkit-transition: width 0.2s ease-in-out;
    -moz-transition: width 0.2s ease-in-out;
    -o-transition: width 0.2s ease-in-out;
    transition: width 0.2s ease-in-out;
}
.btn:hover::before {
    width: 50%;
    -webkit-transition: width 0.2s ease-in-out;
    -moz-transition: width 0.2s ease-in-out;
    -o-transition: width 0.2s ease-in-out;
    transition: width 0.2s ease-in-out;
}
.btn:hover {
    color: var(--bs-white);
    background-color: var(--bs-blue);
}
.btn.focus, .btn:focus {
    color: var(--bs-white);
    background: var(--bs-blue);
}
.btn.focus:after, .btn:focus:after {
    color: var(--bs-white);
    background: #8b8b8b;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: var(--bs-white);
    background: var(--bs-blue);
}
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 {
    font-weight: 700;
    position: relative;
    color: var(--bs-blue);
    font-family: 'trajan-regular';
}
h1 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 25px;
}
h2 {
    margin-bottom: 25px;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    color: var(--bs-bluecolor);
}
h3 {
    font-size: 21px;
    line-height: 32px;
    margin-bottom: 20px;
}
h4 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
}
h5 {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 20px;
}
h6 {
    font-size: 13px;
    line-height: 23px;
    margin-bottom: 20px;
}

.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-blue);
    text-transform: none;
    font-size: 56px;
    line-height: 64px;
    font-family: 'trajan-regular';
    font-weight: 700;
}
.small-text {
    font-size: 20px;
    font-weight: 400;
    color: var(--bs-lightblue);
    line-height: 1.4;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
    padding-left: 66px;
}
.small-text:after {
    background: var(--bs-lightblue);
    height: 1px;
    width: 50px;
    position: absolute;
    left: 0;
    content: "";
    top: 0;
    bottom: 0;
    margin: auto;
}
.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-blue);
    background: var(--bs-white);
}
.white-color-sec .btn:hover {
    background: var(--bs-white);
    color: var(--bs-blue);
}

.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;
}
.menu-top li a br, .menu-top li .sub-menu li a br{
    display: none;
}
ul.menu-top li {
    display: inline-block;
    color: #fff;
    position: relative;
    margin-left: 12px;
}
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 {
    padding: 12px 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
    color: var(--bs-black);
    font-weight: 400;
    font-size: 10px;
    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-blue);
    transition: all .3s ease-in-out;
    margin: auto;
    opacity: 1;
}
.nav-menu .menu-top>li>a:hover:before {
    width: 100%;
}
body:not(.home) .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-blue);
}
.nav-menu .menu-top>li.current-menu-item>a, body:not(.home) .nav-menu .menu-top>li.current-menu-ancestor>a {
    color: var(--bs-blue);
    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-lightblue);
    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-bluecolor);
    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-lightblue);
    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%;
}
.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: 12px;
    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 {
    background-color: var(--bs-bluecolor);
}
.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 #fff;
    border-bottom: 2px solid #fff;
    display: inline-block;
    width: 8px;
    height: 8px;
    position: absolute;
    margin: auto;
}
.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: 0;
    cursor: pointer;
    position: relative;
    padding-left: 0;
    margin-right: 15px;
    top: 0px;
    height: 25px;
    width: 25px;
    line-height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.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;
}
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-blue);
    padding: 20px;
    margin-top: 0;
}

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

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

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

.search-wrapper .title {
    color: var(--bs-blue);
    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;
}
.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-contact-info:hover .phone-text ~ a {
    opacity: 0.8;
    text-decoration: underline;
}
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: 20px;
}
.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;
}
.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;
}
.header-contact-info {
    position: relative;
    width: 370px;
    background: #1F3B71;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-right: 40px;
    padding-left: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.right-top-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-contact-info a {
    width: auto;
    color: var(--bs-white);
    display: block;
    padding: 0;
    margin-top: 5px;
    font-size: 30px;
    font-family: 'trajan-regular';
    font-weight: 600;
    line-height: 32px;
}
.header-contact-info .phone-text {
    font-size: 13px;
    color: #fff;
    line-height: 21px;
    text-align: center;
    font-weight: 600;
}
.header-contact-info .phone-text span {
    font-weight: 400;
    display: block;
}
.nav-menu-inner ul > li .sub-menu *{
    transition: none;
}
.top-left-sec {
    display: flex;
    align-items: center;
    width: 100%;
}
.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-blue);
    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-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: all ease-in-out 0.5s;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.42);
}
.mobile-search-active .mobile-search-bar-box {
    transform: translate(0);
    z-index: 999999;
}
.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: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0px;
    height: 65px;
    right: 0;
    margin: auto;
    z-index: 1;
    width: 100%;
    bottom: 0;
}

.owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    display: inline-block;
    vertical-align: middle;
    line-height: 26px;
    height: 55px;
    width: 55px;
    font-size: 0px;
    background-repeat: no-repeat;
    background-size: 40px;
    position: relative;
    z-index: 1;
    opacity: 1;
    border-radius: 0;
    border: 1px solid #364d8a;
}

.owl-carousel .owl-nav .owl-prev {
    left: -40px;
    background-image: url(../img/next.svg);
    background-position: center;
    transform: rotate(180deg);
}
.owl-carousel .owl-nav .owl-next {
    right: -40px;
    background-image: url(../img/next.svg);
    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/next-white-icon.svg);
    background-color: #364d8a;
    border-color: #364d8a;
}
/* 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-blue);
}
/* owl dots end */


/* Contact Form CSS Start */
.wpcf7 form.spam .wpcf7-response-output {
    margin-left: auto !important;
    margin-right: auto !important;
}

.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: 70px;
    font-weight: 400;
    padding-left: 15px;
    border-radius: 0;
    background: #FFF;
    border: 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: 50px;
    margin-right: 0;
    margin-left: 0;
}
.wpcf7 .btn-wrap:before {
    content: '';
    position: absolute;
    top: -11px;
    height: 11px;
    background-color: #8B8B8B;
    width: 100%;
    left: 0;
}
.wpcf7 .btn-wrap:after {
    content: '';
    bottom: 0;
    left: 0;
    height: 10px;
    width: 80%;
    background-color: #8B8B8B;
    position: absolute;
    z-index: 1;
}
.wpcf7 .btn-wrap:hover::before {
    width: 50%;
    -webkit-transition: width 0.2s ease-in-out;
    -moz-transition: width 0.2s ease-in-out;
    -o-transition: width 0.2s ease-in-out;
    transition: width 0.2s ease-in-out;
}
.wpcf7 .btn-wrap:hover::after {
    width: 100%;
    -webkit-transition: width 0.2s ease-in-out;
    -moz-transition: width 0.2s ease-in-out;
    -o-transition: width 0.2s ease-in-out;
    transition: width 0.2s ease-in-out;
}
.wpcf7 .btn-wrap .btn {
    width: 100%;
    text-align: center;
}
.btn-wrap .wpcf7-submit {
    display: inline-block;
    position: relative;
    width: 100%;
    z-index: 1;
}

/* .wpcf7 .btn-wrap:after {
    content: "";
    background: url(../img/btn-arrow.svg) no-repeat;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-position: center;
    vertical-align: middle;
    position: absolute;
    right: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    pointer-events: none;
} */
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-blue);
    border: 2px solid var(--bs-blue);
    text-decoration: none;
}
div.wpcf7 form.submitting .btn-wrap {
    border: none;
    color: #000;
    background: none;
    border-color: #000;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    max-width: 224px;
    visibility: hidden;
    display: none !important;
}

.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok, .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: #8D8D8D;
}
.wpcf7 select {
    color: #8D8D8D; /* Default text color */
}
.wpcf7 ::-moz-placeholder {
    color: #8D8D8D;
}

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

.wpcf7 :-moz-placeholder {
    color: #8D8D8D;
}
.wpcf7 .wpcf7-not-valid-tip, .wpcf7 label.error {
    color: #fff;
    font-weight: 400;
    position: absolute;
    bottom: -14px;
    right: 5px;
    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;
}
.col-lg-12.form-acceptance-col .wpcf7-list-item label {
    line-height: 1.625rem;
    font-size: 19.2px;
    color: #000;
    font-weight: 400;
}
/* Contact Form CSS END */


/* Footer CSS Start */
.footer-section {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    position: relative;
}
.footer-right-side {
    width: 70%;
    padding-left: 50px;
    padding-right: 50px;
    background-color: #262626;
    padding-top: 60px;
    padding-bottom: 15px;
}
.footer-left-side {
    background-size: cover;
    width: 30%;
    padding-left: 24px;
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    background-repeat: no-repeat;
    background-color: #262626;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-left-info {
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(54, 77, 138, .95);
    width: 100%;
    padding: 40px;
    color: #fff;
}
.footer-title {
    font-size: 19.2px;
    font-weight: 700;
    color: #fff;
    line-height: 24px;
    margin-bottom: 16px;
}
.copyright {
    text-align: center;
    font-weight: 400;
    line-height: normal;
    padding: 15px 0;
    border-top: 2px solid rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px;
    padding-top: 70px;
}
.copyright p {
    font-size: 14px;
    margin: 0;
    font-weight: 300;
    color: #fff;
}
.copyright .small-nav {
    margin-left: 0px;
    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 {
    color: var(--bs-lightblue);
}
.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:first-child {
    margin-left: 0;
}
.small-nav a:last-child:after {
    display: none;
    opacity: 0;
}
.footer-link-section ul {
    column-count: 1;
}
.footer-link-section ul li {
    position: relative;
    margin-bottom: 5px;
}
.footer-link-section ul li a {
    padding: 0;
    display: inline-block;
    color: var(--bs-white);
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    position: relative;
    padding-left: 0;
    font-size: 13.3px;
}

.footer-link-section ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 12px;
    height: 2px;
    background: var(--bs-lightblue);
    opacity: 0;
}
.footer-link-section ul li a:hover {
    color: var(--bs-lightblue);
}
.footer-link-section ul li.current_page_item a, .footer-link-section ul li.current_page_item a {
    color: var(--bs-lightblue);
}
.footer-link-section ul li:last-child {
    margin-bottom: 0px;
}
.footer-social-icon-wrap {
    width: 100%;
    position: relative;
    margin-top: 0;
}
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: 60px;
    width: 60px;
    line-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    border-radius: 50%;
}
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: var(--light-blue);
}
.footer-contact-info {
    position: relative;
    margin-bottom: 51px;
}
.footer-contact-info a {
    font-family: 'trajan-regular';
    color: #fff;
    font-size: 40px;
    line-height: 64px;
    font-weight: 600;
    display: inline-block;
}
.footer-contact-info a:hover {
    color: var(--light-blue);
}
/* nap css */
.footer-logo {
    width: 100%;
    margin-bottom: 30px;
}
.location-center a * {
    color: #fff;
}
.nap-address-info {
    width: 100%;
    margin-bottom: 30px;
}
/* nap css */
.footer-sec ul li a br, ul.menu-top li a br {
    display: none;
}
.footer-map {
    width: 100%;
    height: 600px;
    position: relative;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
/* Footer CSS Start END */
/* Site Schema Styling */
.clientreviews {
    background: #f9f9f9;
    border: 1px solid #eaeaea;
    padding: 20px;
    margin-bottom: 0;
    line-height: 1.87;
}
.page-template-template-about  .site-schema {
    margin-top: 70px;
}
.clientreviews .heading {
    margin-bottom: 15px;
    position: relative;
    line-height: normal;
    font-size: 35px;
}
.review-schema-wrapper {
    padding-top: 0px;
    margin-bottom: 50px;
}
.clientreviews div strong, .clientreviews p strong {
    color: var(--bs-blue);
    letter-spacing: 1px;
}
.clientreviews p {
    color: #000;
}
.page_review_by .testimonialTitle {
    color: #000;
}
.clientreviews p strong {
    font-weight: 600;
}
.review-schema-wrapper .page_review {
    line-height: 32px;
}
.clientreviews .heading span, .clientreviews .heading strong {
    position: relative;
}
.clientreviews.video-schema .heading:after {
    bottom: 6px;
}
.video-schema p {
    line-height: 32px;
    margin-bottom: 5px;
}
.site-schema {
    margin-top: 0px;
}
.video-schema {
    margin-bottom: 0px;
    margin-top: 0px;
}

.video-schema .heading {
    margin-bottom: 15px;
}
.clientreviews iframe {
    border: 1px solid #f6f6f6;
    width: 100%;
}

.review-schema-wrapper + .clientreviews.video-schema {
    margin-bottom: 70px;
}
/*  Site Schema Styling End */

/* Home banner css */
.home-banner {
    height: calc(100% + 120px);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 1;
    background-color: #fff;
    padding-top: 0;
    padding-bottom: 0;
}
.home-banner:after {
    background-color: var(--bs-bluecolor);
    position: absolute;
    content: '';
    width: 60%;
    height: 30px;
    bottom: 0;
    left: 0;
    z-index: 3;
}
.home-banner .container {
    z-index: 1;
}
.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: #1f3b71;
    font-size: 47.8px;
    line-height: 60px;
    font-weight: 700;
    font-family: 'trajan-regular';
    left: -3px;
}
.home-banner .banner-content {
    width: 100%;
    position: relative;
    margin-bottom: 45px;
    max-width: 555px;
}
.home-banner .banner-small-text {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.home-banner .banner-content p {
    font-family: 'Open Sans';
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
    font-size: 16.2px;
}
.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: center;
}
.banner-wrap {
    max-width: 645px;
    position: relative;
    display: flex;
    justify-content: center;
    color: #1f3b71;
}
.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-subtitle {
    font-weight: 600;
    font-size: 19.2px;
    margin-bottom: 8px;
    color: #000;
    margin-top: 16px;
    font-style: italic;
    font-family: "Open Sans", sans-serif;
}
.banner-case-detail {
    width: 100%;
    display: flex;
    margin-top: 50px;
}
.case-item-col{
    padding-left: 0;
    padding-right: 0;
    flex-direction: column;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 0;
    padding-top: 0;
    width: 30.33%;
}
.case-item-col:nth-child(2) {
    width: 38.34%;
    padding-left: 0;
    padding-right: 0;
    flex-direction: column;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 0;
    padding-top: 0;
    border-left-style: solid;
    border-left-color: #8b8b8b;
    border-left-width: 1px;
    border-right-color: #8b8b8b;
    border-right-width: 1px;
    border-right-style: solid;
}
.case-price {
    color: #1f3b71;
    font-size: 23.4px;
    font-family: 'trajan-regular';
    font-weight: 600;
    margin-bottom: 8px;
}

.case-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    max-width: 172px;
    color: #000;
}

.case-text a {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}
/* Home banner css end */
/* Footer contact form css */
.left-footer-content-col {
    display: flex;
    align-items: center;
}
.left-footer-content {
    background-color: #233D70;
    background-image: url(../img/blue-pattern.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
    max-width: calc(100% - 50px);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.left-footer-content:before {
    width: calc(100% + 50px);
    background-color: #fff;
    height: 23px;
    content: "";
    top: 0px;
    left: 0;
    position: absolute;
    z-index: 1;
}
.left-footer-content:after {
    width: 75%;
    background-color: #fff;
    height: 23px;
    content: "";
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 1;
}
.left-footer-content .heading {
    font-size: 47.78px;
    line-height: 48px;
    font-weight: 500;
    color: #fff;
}
.left-footer-content * {
    color: #fff;
}
.left-footer-content ul  {
    margin-top: 5px;
}
.left-footer-content ul li {
    font-size: 27.65px;
    color: #fff;
    line-height: normal;
    font-weight: 400;
    background-image: url(../img/box-with-check.svg);
    background-repeat: no-repeat;
    background-size: 41px;
    background-position: 0 center;
    padding-left: 60px;
    margin-top: 20px;
}
.footer-form-text {
    margin-bottom: 40px;
}
.footer-form-text p {
    font-weight: 400;
    color: #000;
    line-height: 1.625rem;
    font-size: 19.2px;
}
.form-footer-wrap {
    width: 100%;
    position: relative;
}

.footer-form-sec {
    background-color: #EEEBEE;
    z-index: 1;
    background-image: url(../img/contact-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-top: 55px solid #1F3B71;
}
/* Footer contact form css */
/* Trust Symbol CSS */
.trust-logos-section {
    width: 100%;
    position: relative;
    padding-bottom: 70px;
    padding-top: 90px;
}
.trust-logos-section:after {
    content: '';
    position: absolute;
    right: 0;
    background-color: #364d8a;
    top: 16px;
    height: 20px !important;
    width: 700px !important;
}
.trust-logos-section .trust-info {
    width: 100%;
}
.trust-logos-section .item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 1rem;
    height: 8rem;
}
.trust-logos-section .item div {
    text-align: center;
    width: 100%;
}
.trust-logos-section .item img {
    max-height: inherit;
    width: auto;
    transition: all 0.4s ease-in-out 0s;
    display: inline-block;
    height: auto;
}
.trust-logos-section .item:hover img {
    opacity: 1;
}
/* Trust Symbol CSS */
/* Home Page CSS */
.middle-heading {
    color: #8b8b8b;
    font-size: 48px;
    line-height: 64px;
    text-transform: uppercase;
    font-weight: 500;
}
.small-heading {
    font-size: 32px;
    line-height: 38px;
    font-family: 'trajan-regular';
    color: #1f3b71;
    margin-bottom: 32px;
    font-weight: 400;
}
.our-experience-sec {
    border-top: 2px solid #d8d8d8;
    background: #fcfcf9;
    padding-bottom: 127px;
}
.our-experience-sec:after {
    width: 45%;
    background-color: #8b8b8b;
    height: 67px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    content: "";
}
.our-experience-sec .heading {
    margin: 0;
}
.our-experience-sec p strong {
    color: #1f3b71;
    font-style: italic;
}
.experience-image .fullwidth {
    padding-left: 50px;
}

.home .experience-image img {
    margin-left: auto;
    margin-right: inherit;
    display: block;
}

.home .experience-image {
    position: relative;
    top: 6px;
}
/* Home Page CSS */
/* about Page CSS */
.normal-heading {
    font-size: 19.2px;
    line-height: 26px;
    color: #1f3b71;
    font-weight: 600;
    margin-bottom: 32px;
}
.our-about-sec .normal-heading {
    max-width: 718px;
}
.our-about-sec {
    background: #fff;
    padding-top: 130px;
}
.our-about-sec .container:after {
    width: 45%;
    background-color: #8b8b8b;
    height: 67px;
    content: "";
    top: 0;
    position: absolute;
}
.our-about-sec .heading {
    margin: 0;
}
.our-about-sec p strong {
    color: #1f3b71;
    font-style: italic;
}
.our-about-sec .fullwidth {
    padding-right: 50px;
}
.our-about-sec .about-image img {
    width: 100%;
}
/* about Page CSS */
/* Practice Page CSS */
.home-practice-sec {
    background-color: #174E84;
}
.home-practice-sec .pa_row {
    justify-content: center;
}
.practice-col-item .prac-hover-info .repeat-content p {
    font-size: 14px;
    line-height: 22px;
}
.practice-col-item {
    padding-top: 15px;
    padding-bottom: 5px;
    margin-top: 5px;
}
.practice-col-item .practice-link {
    background-color: #3a4a72;
    width: 100%;
    display: flex;
    border: 5px solid #c6c5c3;
    align-items: center;
    background: #fff;
    text-align: center;
    height: 375px;
    position: relative;
    background-position: center;
    background-size: cover;
}
.practice-col-item .practice-link:hover {
    background: #3A4A72;
}
.practice-col-item .practice-link .practice-heading {
    font-size: 19.4px !important;
    line-height: 32px;
    color: var(--bs-white);
    font-weight: 700;
    width: 100%;
    min-width: 100%;
    text-align: center;
    margin-bottom: 0;
    background: #364d8ac7;
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
}
.practice-col-item .prac-hover-info {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 25px;
    background-color: var(--bs-blue);
}
.practice-col-item .practice-link:hover .prac-hover-info {
    opacity: 1;
}
.practice-col-item .practice-link:hover .prac-hover-info .practice-heading {
    color: #fff;
    background: none;
    height: auto;
    margin-bottom: 10px;
}
.practice-col-item .practice-link::before {
    content: '';
    width: 0%;
    transition: width 800ms;
}
.practice-col-item .practice-link::after {
    content: '';
    width: 0%;
    transition: width 800ms;
}
.practice-col-item .practice-link::after {
    content: '';
    bottom: -7px;
    position: absolute;
    right: -5px;
    width: 0;
    height: 20px;
    transition: width 800ms;
    background-color: #fff;
}
.practice-col-item .practice-link::before {
    content: '';
    position: absolute;
    top: -21px;
    height: 20px;
    transition: width 800ms;
    background-color: #fff;
    width: 0px;
    left: -5px;
}
.practice-col-item .practice-link:hover::after {
    width: calc(70%);
    transition: width 800ms;
}

.practice-col-item .practice-link:hover::before {
    width: calc(83%);
    transition: width 800ms;
}
.practice-btn-row .page-button {
    margin-top: 75px;
}
/* Practice CSS */
/* personal Injury  CSS */
.personal-injury-sec {
    background: #FCFCF9;
    padding-bottom: 111px;
}
.personal-injury-sec .container:after {
    width: 45%;
    background-color: #8b8b8b;
    height: 41px;
    content: "";
    bottom: 0;
    position: absolute;
}
.personal-injury-sec .heading {
    margin: 0;
}
.personal-injury-sec p strong {
    color: #1f3b71;
    font-style: italic;
}
.personal-injury-sec {
    display: flex;
    align-items: center;
}
.personal-injury-sec .fullwidth {
    padding-left: 50px;
}
.personal-injury-sec .fullwidth img {
    width: 100%;
}
.personal-injury-sec .top-heading-row {
    margin-bottom: 30px;
}
/* personal Injury  CSS */
/* Trialmetrics CSS */
.trialmetrics-section .heading {
    margin: 0;
}
.trialmetrics-section .top-heading-row {
    margin-bottom: 30px;
}
.trialmetric-info-col p strong {
    color: #1f3b71;
    font-style: italic;
}
.trialmetric-image .fullwidth {
    padding-left: 50px;
}
.trialmetric-image .fullwidth img {
    width: 100%;
}
.trialmetric-image .fullwidth .html5lightbox {
    display: block;
    cursor: pointer;
}
/* Trialmetrics CSS */
/* How Can We Help You CSS */
.home-help-sec {
    background-color: #2B497C;
}
.home-help-sec .heading {
    margin-bottom: 30px;
}
.white-color-sec .linklist ul li:after {
    background: #fff;
}
/* How Can We Help You CSS */
/* Types of Personal Injury Cases */
.common-type-case-sec {
    background: #FCFCF9;
    padding-top: 111px;
}
.common-type-case-sec .container:after {
    width: 45%;
    background-color: #8b8b8b;
    height: 41px;
    content: "";
    top: 0;
    position: absolute;
}
.case-type-heading .heading {
    font-size: 46px;
}
.case-type-heading .middle-heading {
    color: #1f3b71;
    font-size: 33px;
}
.case-type-info-col p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
    color: #000;
}
.case-type-image .fullwidth {
    padding-left: 50px;
}
.case-type-image .fullwidth img {
    width: auto;
}
.common-type-case-sec .case-type-info-row {
    align-items: center;
}
/* Types of Personal Injury Cases */

/* Home FAQ CSS */
.what-wedo-content-col.common-sec-col {
    display: flex;
    align-items: center;
}
.home-faq-sec .faq-image {
    width: 100%;
    padding-right: 50px;
    margin-top: 50px;
}

.home-faq-sec .faq-image img {
    width: auto;
}

.faq-list-desc-wrap {
    width: 100%;
    position: relative
}

.faq-list-desc-wrap .faq-accordion {
    border: none
}

.faq-list-desc-wrap .faq-accordion .faq-inner-top-heading h2 {
    margin-bottom: 25px;
    font-size: 60px;
    color: #110f2a
}

.faq-list-desc-wrap .faq-accordion .accordion-body {
    padding: 20px;
    border: none;
    background: #384B82;
    color: #fff;
    border-radius: 0px;
    padding-top: 0
}
.faq-list-desc-wrap .faq-accordion .accordion-item {
    border-radius: 0px;
    width: 100%;
    position: relative;
    margin-top: 0;
    border: none;
}
.faq-list-desc-wrap .faq-accordion .accordion-item:last-child {
    margin-bottom: 0
}
.faq-list-desc-wrap .faq-accordion .accordion-item .accordion-header button {
    padding: 20px 40px 20px 20px;
    box-shadow: none;
    color: #000;
    background: #f9f9fa;
    border: 1px solid #CACACA;
    border-radius: 0px;
    font-size: 17.4px;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    text-align: left;
    width: 100%;
    border-bottom: none;
    line-height: 32px;
}
.faq-list-desc-wrap .faq-accordion .accordion-item:last-child .faq-title {
    border-bottom: 1px solid #CACACA;
}
.faq-list-desc-wrap .faq-accordion .faq-title {
    position: relative
}
.faq-list-desc-wrap .faq-accordion .faq-title:after {
    display: none
}
.faq-list-desc-wrap .faq-accordion .faq-title:not(.collapsed):after {
    transform: rotate(-135deg)
}
.faq-list-desc-wrap .faq-accordion .accordion-item .accordion-header button[aria-expanded=true] {
    background: #384B82;
    color: #fff;
    border-radius: 0px;
    border-bottom: none;
}
.faq-description, .faq-description p {
    font-size: 14.2px;
    line-height: 20px;
}
.faq-description {
    padding: 15px;
    background-color: #384B82;
    color: #fff;
    border: 1px solid #CACACA;
    border-top: 0;
    padding-top: 0;
    padding-bottom: 28px;
}
.faq-list-desc-wrap .faq-accordion .faq-title .arrow {
    display: flex;
    position: absolute;
    width: 35px;
    height: 35px;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    align-items: center;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    background-image: url(../img/faq-down-icon.svg)
}
.faq-list-desc-wrap .faq-accordion .faq-title[aria-expanded=true] .arrow {
    background-image: url(../img/faq-up-icon.svg)
}
.faq-list-desc-wrap .faq-accordion .faq-title:not(.collapsed) .arrow:after {
    background-image: url(../img/faq-up-icon.svg)
}
.faq-list-desc-wrap .faq-accordion .accordion-item .accordion-header button:before {
    content: "" !important;
    position: absolute !important;
    right: 0;
    top: 5px;
    width: 350px;
    background: #AABED4;
    height: 10px;
    opacity: 0;
}
.faq-list-desc-wrap .faq-accordion .accordion-item .accordion-header button[aria-expanded=true]:before {
    opacity: 0;
}
/* Home FAQ CSS */

/* Blog Home CSS */
.home-post-image {
    width: 100%;
    position: relative;
}

.home-post-image a {
    display: block;
    width: 100%;
    height: 370px;
}

.home-post-image a img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    object-position: center;
}
.home-blog-info .post-date {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 13.33px;
    line-height: 16px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.blog-item-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.home-blog-info {
    width: 100%;
    position: relative;
    padding: 20px;
    border-left: 10px solid #6e87b5;
    margin-top: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home-blog-info .category-and-date {
    width: 100%;
    position: relative;
}

.home-blog-info .read-btn {
    padding: 15px;
    display: block;
    background-color: #364d8a;
    color: #fff;
    max-width: 200px;
    text-align: center;
    margin-top: 25px;
    font-size: 16px;
    font-weight: 400;
}
.home-blog-info .read-btn:hover {
    background-color: #262626;
}

.home-blog-info .post-cat-name a {
    color: #142e60;
    font-style: normal;
    font-weight: 600;
    font-size: 13.33px;
    line-height: 16px;
}
.home-blog-info .category-and-date .blog-heading {
    font-family: 'Trajan-regular';
    font-style: normal;
    font-weight: 700;
    font-size: 19.2px;
    line-height: 23px;
    margin-bottom: 8px;
}
.home-blog-info .category-and-date .post-cat-name {
    margin-bottom: 15px;
}
.home-blog-info p {
    font-style: normal;
    font-weight: 400;
    font-size: 13.33px;
}
.home-blog-sec .heading {
    margin-bottom: 30px;
}
/* Blog Home CSS */

/* Case Result Info CSS */
.case-heading-row {
    margin-bottom: 40px;
}
.victory-detail-wrap .owl-carousel .owl-stage-outer {
    z-index: 111;
}
.victory-detail-wrap {
    width: 100%;
    padding: 0 60px;
}
.victory-detail-wrap .owl-carousel .owl-nav .owl-prev {
    left: -65px;
    background-color: #fff;
}
.victory-detail-wrap .owl-carousel .owl-nav .owl-next {
    right: -65px;
    background-color: #fff;
}
.victory-detail-wrap .owl-carousel .owl-nav .owl-next:hover, .victory-detail-wrap .owl-carousel .owl-nav .owl-prev:hover {
    background-color: #364d8a;
}
.victory-col-item {
    width: 100%;
    background-color: #fff;
    padding-right: 30px;
    padding-left: 33px;
    padding-top: 60px;
    padding-bottom: 60px;
    height: 380px;
    box-shadow: 0 0 10px 4px rgba(0,0,0,.15);
    position: relative;
}
.victory-col-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 264px;
    background-color: #8B8B8B;
    height: 19px;
    opacity: 0;
}
.victory-col-item:hover:before {
    opacity: 1;
}
.victory-col-item .case-name {
    font-size: 38px;
    line-height: 40px;
    font-family: 'trajan-regular';
    color: #1f3b71;
}
.victory-col-item .case-category {
    color: #1f3b71;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 32px;
}
.victory-col-item .case-content p {
    font-size: 19.2px;
    line-height: normal;
    color: #000;
}
.victory-col-item:hover {
    background: #1f3b71;
}
.victory-col-item:hover .case-name, .victory-col-item:hover .case-category, .victory-col-item:hover .case-content, .victory-col-item:hover .case-content p {
    color: #fff;
}
blockquote {
    border-left: 5px solid #aabed4;
    padding-left: 20px;
}
/* Case Result Info CSS */
/* Team CSS */
.team-content-col {
    background-color: #233D70;
    padding: 40px 50px;
    position: relative;
    background-image: url(../img/blue-pattern.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.team-content-col .team-heading {
    margin-bottom: 30px;
}
.team-content-col .team-name {
    margin-bottom: 25px;
    font-size: 33.81px;
    line-height: 1;
    font-family: 'trajan-regular';
    color: #fff;
}
.team-content-col .team-item-wrap {
    width: 100%;
    position: relative;
}
.team-content-wrap {
    width: 100%;
    position: relative;
}
.team-content-wrap .short-description {
    width: 100%;
    margin-bottom: 80px;
}
.team-btn-sec {
    position: absolute;
    bottom: 6px;
    right: 0;
    width: 134px;
    display: flex;
    justify-content: space-between;
}
.team-btn-sec a {
    display: inline-block;
    vertical-align: middle;
    line-height: 26px;
    height: 60px;
    width: 60px;
    font-size: 0px;
    background-repeat: no-repeat;
    background-size: 14px;
    position: relative;
    z-index: 1;
    opacity: 1;
    border-radius: 0;
    border: 3px solid #ffffff;
    background-image: url(../img/left-icon-white.svg);
    background-position: center;
}
.team-btn-sec .team-prev {
    transform: rotate(0deg);
}
.team-btn-sec .team-next {
    transform: rotate(180deg)
}
.home-team-sec .left-col-header {
    padding-right: 0;
    padding-left: 0;
}
.team-image-wrap .items {
    padding-left: 50px;
    padding-bottom: 50px;
    width: 100%;
    position: relative;
    display: block;
    background: none;
}
.team-image-wrap .items:before {
    content: "";
    background: #8c8c8c;
    position: absolute;
    left: 0;
    height: calc(100% - 50px);
    display: block;
    width: calc(100% - 50px);
    z-index: -1;
    margin: auto;
    bottom: 0;
}
.team-image-wrap .team-featured-img img {
    width: 100%;
    position: relative;
    display: block;
}
ul.menu-top li .sub-menu li.read-all-btn a {
    position: relative;
    display: block;
    background-color: var(--bs-bluecolor);
    color: #fff;
}
.menu-top .read-all-btn a:after {
    content: '';
    position: absolute;
    left: 85px;
    background: url(../img/thin-long-right.webp);
    background-size: contain;
    width: 24px;
    background-repeat: no-repeat;
    height: 24px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
ul.menu-top li .sub-menu li.read-all-btn a:hover:after {
    left: 120px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
/* Team CSS */

/*G-translate start*/
.header-contact-info .language-translate {
    transform: rotate(90deg);
    position: absolute;
    right: -37px;
    font-size: 7px;
    text-transform: uppercase;
    text-align: center;
    justify-content: center;
    align-self: center;
    vertical-align: middle;
}

.header-contact-info .language-translate a {
    padding: 5px !important;
}
.header-contact-info .language-translate a {
    background: #E4ECFD;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 0;
    color: #1f3b71;
    vertical-align: middle;
    align-self: center;
    padding: 5px;
    font-size: 9px;
    line-height: 11px;
    font-family: 'Open Sans';
}
.language-translate .gtranslate_wrapper{
    display: flex;
    gap: 5px;
}
/*G-translate start*/
.personal-injury-image {
    display: flex;
    align-items: center;
}

.contact-address-col .address-info-text {
    line-height: 36px;
}

.translated-ltr .home-banner .banner-title {
    font-size: 40px;
    line-height: 50px;
}
.translated-ltr .victory-col-item .case-name {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 10px;
}
.translated-ltr .victory-col-item .case-content p {
    font-size: 16px;
    line-height: 26px;
}
.translated-ltr .victory-col-item {
    height: 440px;
}
.translated-ltr .team-content-wrap .btn {
    bottom: 25px;
}

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

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

.translated-ltr .show-spanish-common-form {
    display: block
}
.home .home-blog-sec .heading {
    margin-bottom: 30px;
}
.trialmetric-img {
    padding-top: 30px;
    width: 100%;
    position: relative;
}

.trialmetric-img img {
    border: 1px solid #ccc;
    padding: 5px;
}
.trialmetric-info-col p {
    line-height: 25px;
} 
.mobile-search-bar:hover {
    opacity: 0.5;
}
.form-acceptance-col .wpcf7-list-item {
    margin-left: 0;
}