/* Common CSS Start */
:root {
    --color-1: #8DA08F;
    --color-2: #04334b;
    --color-3: #9a2035;
    --color-4: #E6FAFF;
    --color-5: #ffffff;
    --title-font: "Frank Ruhl Libre", serif;
    --body-font: "DM Sans", sans-serif;
}
* {
    padding:0;
    margin:0;
    box-sizing:border-box;
    text-decoration: none;
}
html {
    scroll-behavior: smooth;
}
body, html{
    height: 100%;
}
body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    letter-spacing: 0px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #6a6a6a;
    font-size: 18px;
    line-height: 1.9;
    padding-top: 0px;
    background-color: #F9F9F9;
}
.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(--color-1);
}
.hide{
    display: none;
}
.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

:focus{
    outline: 0;
    outline: none;
}
a {
    color: #5683cf;
    text-decoration: none;
}
a:hover {
    color: #000000;
}
html body a:focus, html body h1:focus, html body h2:focus, html body h3:focus, html body h4:focus, html body h5:focus, html body h6:focus {
    outline: var(--color-2);
    /* text-decoration: underline; */
}
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(--color-1);
}
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;
}

.bgcover{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.logged-in header#header {
    top: 32px;
}
/* body.logged-in {
    padding-top: 112px;
} */
body.nav-open-menu{
    overflow: hidden;
}
/* btn sec */
.btn svg, .btn img {
    width: 18px;
    height: 17px;
    margin-left: 8px;
    position: relative;
    top: 0px;
    display: inline-block;
}
.btn {
    margin-left: 0;
    width: auto;
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 0px;
    background: transparent;
    padding: 11px 22px;
    line-height: 24px;
    color: #fff;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    background-color: #8da08f;
    transition: all .3s;
}

.btn:hover {
    padding-left: 41px;
    padding-right: 41px;
    background-color: #8da08f;
    color: #ffffff;
}
.btn:focus-visible,
.btn.focus, .btn:focus {
    background-color: #8da08f;   
    color: #ffffff;
}

.btn:hover svg path {
    stroke: #fff;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    background-color: #8da08f;
    color: #ffffff;
}

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

.btn:hover svg {

    transform: rotate(70deg);
    transition: 0.5s;
}

.h1, h1, .h2, h2, .h3, h3, .h4, h4, .h5, h5, .h6, h6 {
    position: relative;
    color: #00344c;
    font-weight: 400;
    line-height: 1.3;
    font-family: var(--title-font);
}
h1, .h1 {
    font-size: 55px;
    margin-bottom: 15px;
}
.h2, h2 {
    margin-bottom: 15px;
    font-size: 61px;
}
.h3, h3 {
    font-size: 42px;
    margin-bottom: 15px;
}
h4, .h4 {
    font-size: 35px;
    margin-bottom: 15px;
}
h5, .h5 {
    font-size: 30px;
    margin-bottom: 15px;
}
h6, .h6 {
    font-size: 25px;
    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 {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding-right: 0;
    width: 100%;
    line-height: normal;
    margin-bottom: 10px;
    padding-left: 25px;
}
.linklist ul li:after {
    position: absolute;
    left: 0;
    content: "";
    border-radius: 100%;
    height: 14px;
    width: 14px;
    background-color: transparent;
    background-image: url(../img/list-star.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 6px;
}
.linklist ol {
    padding-left: 30px;
}
.linklist ol li {
    padding-left: 0px;
    display: list-item;
}

.linklist ol {
    clear: both;
    list-style: none;
    margin-bottom: 25px;
    padding-left: 0;
}
.linklist ol>li {
    counter-increment: li;
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
    padding: 14px 18px 14px 47px;
    position: relative;
    padding-top: 12px;
}
.linklist ol>li:before {
    background-color: #9a2035;
    border-radius: 50%;
    color: #fff;
    content: counter(li);
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    height: 32px;
    left: 0;
    line-height: 33px;
    position: absolute;
    text-align: center;
    top: 13px;
    width: 32px;
}

.section-pd {
    padding: 84px 0;
}
.section-pt {
    padding-top: 70px;
}
.section-pb {
    padding-bottom: 70px;
}
.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, .white-color-sec .small-text {
    color: var(--color-2);
}
.white-color-sec .btn {
    transition: .5s;
    background: transparent;
    color: var(--color-2);
    border-color: var(--color-2);
}

.white-color-sec .btn:hover {
    transition: .5s;
    background: var(--color-1);
    color: var(--color-2);
    border-color: var(--color-1);
}

div#html5-close {
    background-image: url(../img/close.png);
    background-size: auto;
    width: 31px;
    height: 34px;
    background-repeat: no-repeat;
    top: 5px !important;
}
div#html5-close img {
    display: none;
}
.searchform .close-btn {
    right: 25px;
    top: 10px;
}
.searchform .close-btn:before, .searchform .close-btn:after {
    left: 0;
    right: 0;
    top: 10px;
}
/* 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;
    padding-left: 0;
    padding-right: 0;
    margin-left: 28px;
}
ul.menu-top li:first-child {
    margin-left: 0px;
}
ul.menu-top > li.menu-item-has-children {
    margin-right: 0;
}
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 {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    letter-spacing: 0px;
    color: #ffffff;
    padding: 7px 0px;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2em;
}
ul.menu-top > li.menu-item-has-children > a {
    margin-right: 0;
    padding-right: 20px;
}
.nav-menu .menu-top>li>a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--color-2);
    transition: all .3s ease-in-out;
    margin: auto;
    opacity: 0;
}
.nav-menu .menu-top>li>a:hover:before {
    width: 100%;
    opacity: 1;
}
.nav-menu .menu-top>li.current-menu-ancestor a:before, .nav-menu .menu-top>li.current-menu-item>a:before {
    width: 100%;
    opacity: 1;
}
.menu-top li a:hover, .menu-top li a:focus {
    color: #8da08f;
}
.nav-menu .menu-top>li.current-menu-item>a, .nav-menu .menu-top>li.current-menu-ancestor>a {
    font-weight: 600;
    color: #8da08f;
}
.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 {

}
.menu-top .sub-menu > li {
    border-bottom: none;
}
.menu-top .sub-menu > li:last-child {
    border-bottom: none;
}
.menu-top .sub-menu li.current-menu-parent > a {
     background-color: #ffffff;
}
.menu-top .sub-menu li.current_page_item a {
    color: #5683cf;
}
.menu-top .sub-menu > li:nth-child(1) {
    border-top: 0px solid #efefef;
}
.menu-top .sub-menu>li.current_page_item ul li a {
    background-color: #fff;
    color: #000;
}
.menu-top .sub-menu > li.current_page_item ul li a:hover, .menu-top .sub-menu > .current_page_ancestor > a {
    background-color: #ffffff;
}
.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 #ffffff80;
    padding-top: 9px;
}
.header_row {
    justify-content: space-between;
}
.menu-top {
    position: relative;
    transition: all ease-in-out .2s;
    text-align: right;
    justify-content: space-between;
    display: flex;
}
.menu-top li:last-child {
    margin-right: 0;
}
ul.menu-top li#menu-item-25 {
    display: none;
}
.sub-menu {
    background-color: #ffffff;
    min-width: 240px;
    text-align: left;
}
ul.menu-top li .sub-menu li a {
    font-size: 17px;
    padding: 8px 10px;
    margin: 0;
    color: #000000;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    text-transform: uppercase;
    line-height: 24px;
    font-weight: 400;
}
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: #5683cf;
}

.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: #ffffff;
    color: #5683cf;
}
.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 #293a4c;
    border-bottom: 2px solid #293a4c;
}
.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: 0px;
    margin: auto;
    right: 0px;
    background-size: 11px;
    background-repeat: no-repeat;
    background-image: url(../img/nav-arrow.svg);
    background-position: center;
    height: 16px;
    width: 16px;
    bottom: 0px;
    transition: .5s;
}
.menu-top > li.current-menu-item:after, .nav-menu .menu-top>li.current-menu-ancestor:after {
    background-image: url(../img/nav-arrow-green.svg);
}
ul.menu-top li:hover::after{
   background-image: url(../img/nav-arrow-green.svg);
}
.menu-header ul li#menu-item-146765:hover>ul {
    max-height: 500px;
    overflow-y: scroll;
}
.menu-header .two-col-menu ul.sub-menu {
    column-count: 2;
    min-width: 420px;
}
.menu-header .two-col-menu .sub-menu li {
    padding: 0;
    display: inline;
}
.menu-header .two-col-menu .sub-menu li a {
    border-bottom: 1px solid rgba(243, 243, 243, 1);
}
/* 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 {
    cursor: pointer;
    position: relative;
    padding-left: 0;
    margin-right: 31px;
    top: 0px;
    height: 19px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    margin-left: 15px;
}
.mobile-search-bar .white-search-icon {
    display: block;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/white-search-icon.svg);
    background-position: center;
    cursor: pointer;
    transition: 0.5s;
}
.mobile-search-bar .white-search-icon:hover {
    background-image: url(../img/search-hover.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(--color-1);
    padding: 20px;
    margin-top: 0;
}
.search-icon-form button.btn:hover {
    background-color: #fff;
    color: var(--color-1);
    border: 1px solid #fff;
}

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

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

.search-wrapper .title {
    color: var(--color-1);
    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 */

/* side menu logo */
.menu-logo-wrapper {
    position: absolute;
    padding: 15px;
    max-width: 115px;
    z-index: 15;
    opacity: 0;
    pointer-events: none;
}
.menu-logo-wrapper a {
    display: inline-block;
}
.menu-logo-wrapper a img {
    width: auto;
}
/* side menu logo */

/* Header CSS Start */
.menu-wrap, .mobile-header-sec{
    display: none;
}
.logo-wrapper {
    height: auto;
    position: relative;
    width: auto;
    top: 0;
    width: 310px;
    transition: .5s;
}
.small-header .logo-wrapper {
    width: 186px;
}
.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.small-header .logo-wrapper a img {
    max-width: 100%;
}

.top-search-bar {
    text-align: right;
    position: relative;
    width: 45px;
}
.nav-menu-wrapper {
    position: relative;
    margin-bottom: 0;
    transition: all ease-in-out .2s;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0;
}
.menu-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}
.nav-menu-inner ul > li .sub-menu *{
    transition: none;
}
header#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
    padding: 11px 0;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.0);
    transition: all 0.5s;
}
header#header.small-header {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.18);
    top: 0;
    transition: all 0.5s;
    background-color: #00344c;
}
.header-left-logo {
    display: flex;
    align-items: center;
    width: 310px;
    justify-content: center;
}
.header-aside-col {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: calc(100% - 310px);
}
.header-contact-info {
    margin-top: 0;
    position: relative;
    display: flex;
    width: auto;
    flex-direction: column;
    padding-left: 0;
    padding-bottom: 0;
    height: 66px;
    justify-content: center;
    top: 0px;
    align-items: flex-start;
}
.header-contact-info a {
    margin-left: 0;
    width: auto;
    display: block;
    font-size: 30px;
    font-weight: 400;
    padding: 0;
    color: #ffffff;
    white-space: nowrap;
}
.header-contact-info a:hover{
    text-decoration: none;
    color: #8da08f;
}
.header-contact-info a:hover span {
    text-decoration: none;
}
.header-contact-info a:hover div {
    transition: 0.5s;
}
.header-contact-info a span {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
    line-height: 1;
    position: relative;
    top: -2px;
    letter-spacing: 1.5px;
}
.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: 40px;
    height: 40px;
    opacity: 1;
    font-size: 0;
    color: #fff;
    border: none;
    background: var(--color-1);
    border-radius: 45px;
    z-index: 1;
}

.close-btn:hover {
    opacity: 1;
    cursor: pointer;
    background-color: var(--color-1);
}
.close-btn:before, .close-btn:after {
    position: absolute;
    left: 0;
    content: ' ';
    height: 20px;
    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: 110px;
    z-index: 10000;
    background-color: var(--color-2);
    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;
    border-radius: 0;
}
.mobile-search-bar-box .search-icon-form img{
    width: 28px;
    max-width: 54px;
}
.search-icon-form button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    background-size: 22px;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    width: 22px;
    height: 22px;
    top: 0px;
    position: relative;
    background-image: url(../img/white-search-icon.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: -19px;
    display: none;
    color: #fff;
    font-weight: normal;
    right: 0;
    background-color: #b30000;
    padding: 1px 5px;
    border-radius: 0;
    line-height: normal;
    text-transform: capitalize;
}
.mobile-search-bar img {
    cursor: pointer;
    top: -3px;
    position: relative;
}

.m-close-search .bar {
    background: #FFF;
    border-radius: 0;
    display: block;
    height: 1px;
    width: 45px;
    display: none;
}
.m-close-search .bar:nth-of-type(2) {
    width: 25px;
    margin-bottom: 9px;
    margin-top: 9px;
}
.mobile-search-bar-box .search-icon-form {
    padding: 0;
    margin-left: 15px;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    position: absolute;
    right: 0px;
    bottom: 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 */

/* Footer CSS */
.main-footer {
    margin-top: 0;
    background: var(--color-4);
    width: 100%;
    position: relative;
}
.footer-wrapper {
    width: 100%;
    position: relative;
    padding: 112px 0px;
    background-color: #00344c;
}
.footer-wrapper:before {
    content: "";
    background-image: url(../img/pattern.webp);
    --background-overlay: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}
.footer-wrapper .container {
    z-index: 1;
    position: relative;
}
.footer-heading {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 25px;
    margin-bottom: 15px;
}
.footer-logo a {
    display: inline-block;
    line-height: normal;
}
.footer-logo a img {
    width: auto;
}
.footer-logo {
    margin-bottom: 30px;
    max-width: 310px;
}
.footer-logo-outer {
    display: flex;
    justify-content: center;
    align-items: center;
}
.copyright-wrapper {
    background: #191919;
    width: 100%;
    position: relative;
    padding: 46px 0px;
    color: #7a7a7a;
    font-size: 16px;
}
.copyright-text {
    font-size: 13px;
}
.menu-footer li a {
    color: #8da08f;
    font-size: 20px;
    text-align: center;
    display: block;
    padding: 4px 0px;
}
.menu-footer li.current_page_item a,
.menu-footer li a:hover
{
    color: #ffffff;
}
.copyright .small-nav {
    display: flex;
    gap: 10px 25px;
}
.copyright .small-nav a {
    display: inline-block;
    position: relative;
    color: #7a7a7a;
    font-size: 18px;
    text-decoration: underline;
}
.copyright .small-nav a:hover {
    color: var(--color-5);
    text-decoration: underline;
}
.copyright .small-nav a:after {
    /*
    position: absolute;
    content: "";
    width: 1px;
    height: 10px;
    background: var(--color-5);
    top: 0;
    right: -8px;
    bottom: 0;
    margin: auto;
    */
}

.copyright .small-nav a:last-child:after {
    display: none;
    opacity: 0;
}

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

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: 50px;
    width: 50px;
    line-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-2);
    border-radius: 50%;
    background-color: #8da08f;
    transition: .5s;
}
.footer-social li a:hover {
    background-color: #ffffff;
}

ul.footer-social li a svg,ul.footer-social li a img {
    height: 30px;
    width: 30px
}

ul.footer-social li a svg path,ul.footer-social li a svg circle,ul.footer-social li a svg rect {
    fill: #00344c;
}

ul.footer-social li a:hover svg path,ul.footer-social li a:hover svg circle,
ul.footer-social li a:hover svg rect {

}
/* Footer CSS */

/* Blog Section CSS */
.latest-blogs-section {
    background: #f5f5f5;
    width: 100%;
    position: relative;
    margin-top: 80px;
}
.blog-col-item .blog-title a {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    display: inline-block;
    color: var(--color-1);
}
.blog-col-item .blog-title a:hover {
    color: var(--color-1);
}

.blog-col-item .blog-info-sec {
    padding: 20px;
    width: 100%;
}

.blog-col-item {
    display: block;
}

.blog-col-item .blog-item {
    background: #fff;
    width: 100%;
    height: 100%;
}
.blog-col-item .blog-title {
    width: 100%;
    margin-bottom: 8px;
}
.blog-col-item .blog-item .blog-image {
    width: 100%;
}
.blog-col-item .blog-item .blog-image a {
    display: block;
    overflow: hidden;
}
.blog-col-item .blog-item .blog-image a img {
    width: 100%;
    transition: 0.7s;
    height: 216px;
    object-fit: cover;
}
.blog-col-item .blog-item .blog-image a:hover img {
    transition: 0.7s;
    transform: scale(1.1);
}

.blog-col-item .blog-item .blog-image a.no-blog-image {
    background: var(--color-1);
}

.blog-col-item .blog-item .blog-image a.no-blog-image img {
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
}

.blog-col-item .blog-item .blog-info-sec p {
    color: #4D4D4D;
}

.latest-blogs-list {
    width: 100%;
    position: relative;
}

.blogs-btn-col {
    margin-top: 46px;
}
.latest-blogs-list .blog-col-item {
    margin-top: 30px;
}
/* Blog Section CSS */

/* Post Author CSS */
.post-author a {
    display: flex;
    align-items: center;
    gap: 0 10px;
}
.post-author a:hover .author-name {
    color: var(--color-1);
    text-decoration: underline;
    display: inline-block;
}
.post-meta img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    background-color: #c1c1c1;
    border-radius: 50%;
}
.blog-category-and-date {
    display: flex;
    align-items: center;
    margin-bottom:5px;
}
.author-name {
    color: #3a4e60;
    text-transform: capitalize;
}
.post-meta .blog-date {
    color: #5683cf;
    line-height: normal;
    margin-right: 5px;
}
/* Post Author CSS */
.header-btn {
    font-size: 20px;
    border: 1px solid #fff;
    padding: 15px 24px;
    color: #fff;
    transition: .5s;
    display: inline-block;
    line-height: 1;
}
.header-btn:focus{
    color: #ffffff;
}
.header-btn:hover {
    color: #ffffff;
    padding-left: 42px;
    padding-right: 42px;
}
.header-btn-wrap {
    min-width: 304px;
    margin-left: 30px;
    text-align: center;
}
.footer-logo-outer:after, .footer-logo-outer:before {
    content: "";
    width: calc(50% - 180px);
    height: 4px;
    background: #fff;
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -4px;
}
.footer-logo-outer:after {
    left: auto;
    right: 0px;
}
.footer-contact-info {
    flex-direction: row;
}
.location-center {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.9;
}
.nap-box-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 0px;
}
.nap-item {
    width: 33.33%;
    text-align: center;
}
.cname {
    color: #8da08f;
    display: block;
    text-transform: uppercase;
}
.direction-link {
    color: #8da08f;
    display: block;
}
.direction-link:hover,
.direction-link:focus
{
    color: #ffffff;
}
.bg_img {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-banner-sec .container {
    position: relative;
    z-index: 1;
}
.home_banner_meta {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    gap: 15px 0px;
}
.title{
   font-family: var(--title-font);
}
.banner-heading {
    font-size: 68px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}
.banner_content {
    font-size: 20px;
    line-height: 1.9;
}
.home_banner_img {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.home-banner-sec {
    position: relative;
    padding-top: 203px;
}
.home_banner_img img {
    max-width: 600px;
}
.blue_bg{
    background-color: #00344C;
}
.item_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.item_box_outer {
    width: 20%;
    font-size: 20px;
    border-right: 1px solid #FFFFFF80;
}
.icon_box svg, .icon_box icon {
    width: 73px;
    height: 73px;
}
.icon_box_sec{
    padding-top: 30px;
    padding-bottom: 30px;
}
.item_box_outer:last-child {
    border: none;
}
.logo-boxes {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 15px;
}
.logo-boxes img {
    max-height: 200px;
    width: auto;
}
.blue_bg .container {
    position: relative;
    z-index: 1;
}
.theme_color{
    color: #00344c;
}
.body_font{
    font-family: var(--body-font);
}
.title_style1{
    font-size: 48px;
}
.pattern_bg{
  content: "";
  background-image: url(../img/pattern.webp);
  --background-overlay: ''; 
  background-color: #00344c;
}
.uc{
    text-transform: uppercase;
}
.sub_heading{
    font-size: 27px;
    line-height: 41px;
}
.pa_img {
    height: 225px;
    object-fit: cover;
    width: 100%;
}
.pa_title_outer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgba(28, 50, 96, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: .5s;
}
.item_box:hover .pa_title_outer {
    background: none;
}
.pa_title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}
.g-36{
        --bs-gutter-y: 2.25rem;
        --bs-gutter-x: 2.25rem;
}
.result_box {
    background: #fff;
    padding: 44px 48px;
    font-size: 20px;
    height: 100%;
    text-align: center;
}
.font_20 {
    font-size: 20px;
    line-height: 1.4;
}
.bg-img {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 48%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.text-wrap-balance{
    text-wrap: balance;
}
.bg-img-full {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    object-fit: cover;
}
.white-content-box {
    position: relative;
    display: flex;
    justify-content: center;
    background: #fff;
    width: 700px;
    padding: 63px 0px;
}
.box-width {
    width: 515px;
    background-color: #fff;
}
.blue_color{
    color: #5683CF;
}
.btn_list {
    gap: 10px 25px;
}
.btn_list a{
    white-space: nowrap;
}
.item_box_wrap {
    background-color: #EBEBEB;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
    padding: 53px 30px;
    gap: 30px;
}
.text_color{
    color: #6a6a6a;
}
.step_box {
    padding: 70px 30px;
}
.bg-img-left {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 48%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.content_width{
    max-width: 555px;
}
.team_member_title {
    background-color: #2F7694;
    transition: .3s;
}
.team_box:hover .team_member_title {
    background-color: #8da08f;
}
.text_dark_color{
    color: #17283c;
}
.team_thumb img {
    height: 436px;
    width: 100%;
    object-fit: cover;
    transition: .5s;
    object-position: top;
}
.team_thumb img.no-attorney-image {
    background-color: #00344c;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 220px;
}
.team_thumb{
    overflow: hidden;
}
.team_box:hover .team_thumb img {
    transform: scale(1.1);
}
.review_meta {
    background: #fff;
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px 0px;
    line-height: 1.4;
    height: 100%;
    justify-content: center;
}
.font_16{
    font-size: 16px;
}
.client_type{
    font-size: 13px;
}
.review_meta a {
    text-decoration: underline;
}
img.video_thumb {
    min-height: 380px;
    width: 100%;
    object-fit: cover;
}
.html5lightbox {
    position: relative;
    display: block;
}
.html5lightbox:after {
    content: "";
    background-image: url(../img/play-icon1.svg);
    width: 68px;
    height: 48px;
    border-radius: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
    transition: .5s;
    background-color: red;
    transform: translate(-50%, -50%);
}
.html5lightbox:hover::after {
    background-color: #00344c;
}
.blue_color2{
   color:#17283c;
}
.blue_color2 p{
   color:#17283c;
}
.fw-600{
    font-weight: 600;
}
.green-squre {
    background-color: #8da08f;
    width: 12px;
    height: 12px;
    display: inline-block;
}
.available_text {
    align-items: center;
    gap: 5px 20px;
    margin-top: 8px;
}
.font_21 {
    font-size: 21px;
    line-height: 1.2;
}
.form_style .form-control {
    height: 48px;
    padding: 0px 25px;
    border: 1px solid #BBBBBB;
    border-radius: 3px;
}
.form_style textarea.form-control {
    height: 130px;
}
.form_style label {
    font-size: 16px;
    color: #112337;
    font-weight: 500;
    margin-bottom: 8px;
}
.divider {
    border-color: #8da08f;
    opacity: 1;
}
.top-bottom-border {
    padding: 18px 28px 18px 28px;
    border-color: #8da08f;
    border-width: 4px 0px 4px 0px;
    border-style: solid;
}
.accordion_button:not(.collapsed) {
    background-color: #00344c;
    color: #fff;
    box-shadow: none;
}
.accordion_button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: var(--bs-accordion-btn-icon-transform);
    filter: brightness(0) invert(1);
}
.accordion_body{
    background-color: #00344c;
    color: #fff;
}
.accordion_button:focus{
    box-shadow: none;
}
.accordion_button {
    transition: .5s;
    box-shadow: none;
}
/*
.sticky_img {
    transition: .5s;
}
.sticky_active .sticky_img {
    height: 100%;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sticky_active .sticky_img img{
    max-width: 50%;
}
*/
.featured_post_box .item-box {
    padding-top: 124px;
    padding-bottom: 64px;
}
.item-box {
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.15);
    padding-top: 84px;
    padding-bottom: 84px;
    padding-left: 48px;
    padding-right: 48px;
    gap: 0px 0px;
    display: flex;
    flex-direction: column;
    gap: 25px 0px;
    height: 100%;
}
.featured_post_box .case_title {
    font-size: 88px;
    line-height: 100%;
    color: #6a6a6a;
}
.case_title {
    font-size: 38px;
    line-height: 1;
}
.testimonial_title {
    font-size: 30px;
    line-height: 1.5;
}
.testimonial_box .video_thumb {
    height: 200px;
    min-height: auto;
}
.content_right .row {
    flex-direction: row-reverse;
}
.content_right .bg-img {
    right: auto;
    left: 0px;
}
.font_16.review_data {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}
.blog-loop .blog-img-link img {
    height: 450px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.blog-loop .blog-img-link img.no-feature {
    background-color: #00344c;
    background-size: 200px;
}
.bottom-wrap {
    position: absolute;
    bottom: -50px;
    background: #ffffff;
    left: 40px;
    padding: 50px;
    width: 75%;
    transition: .5s;
}
.bottom-wrap:hover {
    transform: scale(1.05);
}
.blog_title {
    line-height: 1.4;
}
.space-100 {
    --bs-gutter-y: 6.2rem;
}
.pagination .nav-links{
    width:100%;
    display:flex;
    position:relative;
    font-weight:700;
    justify-content:center;
}
.pagination .nav-links span.current {
    color: #fff;
    border-color:#00344c;
    background: #00344c;
}
.pagination .nav-links span, .pagination .nav-links a {
    font-size: 20px;
    text-transform: uppercase;
    color: #00344c;
    margin: 0 10px;
    position: relative;
    font-weight: 700;
    min-width: 54px;
    height: 54px;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: 0 0;
    display: block;
    line-height: 54px;
    border: 1.08px solid rgba(96, 0, 0, 0.1)
}
.pagination .nav-links .next:before{
    content:'';
    width:9px;
    height:9px;
    border-top:2px solid #fff;
    border-right:2px solid #fff;
    transform:rotate(45deg);
    position:absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    margin:auto;
    display:none
}
.pagination .nav-links .prev:before{
    content:'';
    width:9px;
    height:9px;
    border-bottom:2px solid #fff;
    border-left:2px solid #fff;
    transform:rotate(45deg);
    position:absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    margin:auto;
    display:none
}
.pagination .nav-links a.prev{
    font-size:8px
}
.pagination .nav-links span:hover, 
.pagination .nav-links a:hover {
    color: #fff;
    background: #00344c;
    border-color: #00344c;
}
.pagination .nav-links a.next, 
.pagination .nav-links a.prev {
    background-color: #FAF3F3;
    font-size: 13px;
    color: #fff;
    border-color: #FAF3F3;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0px;
    background-image: url(../img/arrow_theme_color.svg);
    min-width: 78px;
}
.pagination .nav-links a.next:hover, 
.pagination .nav-links a.prev:hover{
    border-color: #00344c;
}
.pagination .nav-links a.prev {
    transform: rotate(180deg);
}
.theme_bg {
    background-color: #00344c;
}
.sidebar-contact {
    padding: 30px 20px;
    font-size: 14px;
    color: #fff;
}
.sidebar-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
/***********Sidebar Css**************/
.widgettitle {
    padding: 1rem 40px;
    font-weight: 600;
}
.sidebar-listing ul li {
    padding: 5px 0px;
    border-bottom: 1px solid transparent;
    position: relative;
}
.sidebar-listing .h4{
    border-bottom: 1px solid rgba(204, 204, 204, 0.15);
}
.sidebar-listing ul li a {
    color: #fff;
    height: 100%;
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 0px;
    font-weight: 400;
    font-size: 18px;
    padding-right: 24px;
}

.sidebar-listing ul li:hover, .sidebar-listing ul li.current-cat, .sidebar-listing ul li.current-cat, .sidebar-listing ul li.activeChild {
    border-color: #ffffff;
}

.sidebar-listing ul li:hover a, .sidebar-listing ul.no-dots li.current-cat a, .sidebar-listing ul li.current-cat a, .sidebar-listing ul.no-dots li.activeChild a {
  color: #ffffff;
}

.sidebar-listing ul li a:after, .sidebar-listing ul li.current-cat a:after, .sidebar-listing ul li.current-cat a:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 16px;
    height: 12px;
    top: 0px;
    bottom: 0;
    right: 0;
    margin: auto;
    background-image: url(../img/right-white-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.sidebar-listing ul li:hover a:after, .sidebar-listing ul li.current-cat:hover a:after, .sidebar-listing ul li.current-cat:hover a:after,
.sidebar-listing ul li.current-cat a:after , .sidebar-listing ul li.activeChild a:after {
}
.sidebar-contact .wpcf7-response-output {
    font-size: 15px;
}
.msg-side-form {
    margin: 0;
    color: #fff;
    font-weight: normal;
    display: block;
    position: absolute;
    bottom: 0px;
    right: 48px;
    font-size: 10px;
    background-color: #cd0b02;
    padding: 2px 5px;
    border-radius: 5px 0 0 0;
}
.aside-sidebar > div+div {
    margin-top: 30px;
}
.sidebar-listing {
    background: #1D1E1F;
    overflow: hidden;
    padding: 30px 20px;
    color: #fff;
}
.aside-sidebar {
    width: 100%;
    max-width: 420px;
}
.blog-search-field {
    padding: 10px 39px;
    width: 100%;
    height: 48px;
    border: 1px solid #ccc;
    padding-right: 56px;
    background-color: #fff;
    background-image: url(../img/search-dark.svg);
    background-repeat: no-repeat;
    background-position: center left 15px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}
.blog-search-field::placeholder{
    color: #000000;
}
.sidebar-search .input-group-btn {
    display: block;
    position: relative;
}
.blog-searchform [type=submit] {
    display: inline-block;
    border: none;
    width: 48px;
    cursor: pointer;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: 15px;
    background-color: #8da08f;
    background-image: url(../img/right-white-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
}
/***********Sidebar Css**************/
.sidebar-contact .form-group {
    margin-bottom: 10px;
}
.blog-img-link img {
    height: 400px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.content-area h2{
    color: #00344c;
    font-family: var(--body-font);
    font-size: 27px;
    font-weight: 400;
    text-transform: uppercase;
}
.blogimglink img {
    height: 300px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.blogimglink img.no-feature {
    background-color: #00344c;
    background-size: 200px;
}
.video_img_box img {
    height: 250px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #2F7694;
}
.video_img_box img.no-feature {
    background-size: 200px;
}
.video_img_box::after {
    right: 15px;
    bottom: 15px;
    top: auto;
    transform: translate(-50%, 0px);
    background-color: #8da08f;
    height: 40px;
    width: 60px;
    border-radius: 8px;
    background-size: 18px;
}
.font_24 {
    font-size: 24px;
    line-height: 1.2;
}
.bluecolor3 {
    color: #5683cf;
}
.banner-bg-img {
    position: absolute;
    width: 100%;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
}
.inner-banner-section {
    padding: 100px 0px 100px 0px;
}
.ti-small-logo svg,
.ti-small-logo img  {
    width: 62px;
    height: 20px;
}
.show_google_review div {
    text-align: left !important;
}
.show_google_review a{
    padding: 0px !important;
}
.inner-banner-section:after {
    content: "";
    background-color: #17283c;
    --background-overlay: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    opacity: 0.36;
    z-index: -1;
}
.video_img_style {
    max-height: 500px;
}
.square-bullets li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 14px;
    height: 14px;
    background-color: #8da08f;
}
.square-bullets li {
    list-style: none;
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}
.contact_form .form-group {
    margin-bottom: 10px;
}
.text-wrap-balance{
    text-wrap: balance;
}
.awards_logo {
    height: 194px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.awards_logo img { 
    max-height: 180px;
    width: auto;
}
.content_video video.elementor-video { 
    width: 100%;
    height: 475px;
    object-fit: cover;
}
.single_video_img_box img {
    height: 456px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #2F7694;
    object-fit: cover;
}
.single_video_img_box img.no-feature {
    background-size: 250px;
}
.single_video_img_box::after {
    margin-top: 115px;
}
.mini-container{
	max-width:1204px; 
}
.social-share-wrap a {
    background-color: #8da08f;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: .3s;
}
.social-share-wrap a:hover {
	background-color:#00344c;
}
.social-share-wrap a:hover svg {
	fill:#ffffff;
}
.social-share-wrap a svg, 
.social-share-wrap a img {
    fill: #00344c;
    width: 22px;
    height: 22px;
	transition: .3s;
}
.move_content_rightside .row {
    flex-direction: row-reverse;
}
.move_content_rightside .bg-img {
    right: auto;
    left: 0px;
    width: 40%;
}
.form_style3 {
    background-color: #00344c;
    padding: 60px;
}
.form_style3 .form-control {
    border-radius: 3px;
    background-color: transparent;
    border: 1px solid rgb(82, 103, 136);
	color:#ffffff;
}
.form_style3 .form-control::placeholder {
	color:#ffffff;
}
.form_style3 .form-group {
    margin-bottom: 20px;
}
.blockquote_style blockquote {
    border-top: 4px solid #8da08f;
    border-bottom: 4px solid #8da08f;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
}
.content_box {
    background-color: #00344c;
    color: #fff;
    padding: 30px;
    height: 100%;
}
.wpcf7-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); 
    margin: 0px;
}
.btn-wrap {
    position: relative;
}
.form_style .form-control::placeholder{
	color:#6a6a6a;
}
.form_style3 .form-control::placeholder{
	color:#ffffff;
}
.form_style select.form-control {
    color: #6a6a6a;
    text-shadow: none;
}
.res_img {
    max-height: 495px;
    object-fit: cover;
	object-position: top;
}
.res_title_outer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 15px;
    transition: .5s;
}
/**************** Site Schema Styling ****************/
.site-schema .review-schema-wrapper{
    margin-top: 50px;
}
.clientreviews {
    background: #f6f6f6;
    border: 1px solid #2853c7;
    box-shadow: 0 0 20px #f2f2f2;
    padding: 20px;
    margin-bottom: 50px;
}
.clientreviews .heading {
    font-size: 2em;
    margin-bottom: 15px;
    position: relative;
    line-height: normal;
    color: #212529;
}
.review-schema-wrapper {
    padding-top: 0px;
    margin-bottom: 30px;
}
.clientreviews p strong {
    color: #212529;
}
.clientreviews div strong {
    color: #212529;
}
.clientreviews .heading span {
    color: #212529;
}
.clientreviews.video-schema .heading:after {
    bottom: 6px;
}
.middle-heading.video-schema {
    margin-bottom: 50px;
}

.middle-heading.video-schema iframe {
    border: 1px solid #f1f1f1;
}
.clientreviews p {
    padding-bottom: 0;
}
/**************** Site Schema Styling End ****************/
.blue_color{
	color:#5683cf;
}
span.fs-inline-error { 
    right: 0px;
    left: auto;
    bottom: 0px;
    top: auto;
}
.banner_none.pattern_bg {
    padding-top: 216px;
}
.parent_child_menu {
    text-align: center;
}
.parent_child_menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
} 
.parent_child_menu ul li a {
    border: 1px solid #ffffff;
    color: #fff;
    padding: 9px 30px;
    display: block;
}
.parent_child_menu ul li a:hover, 
.parent_child_menu ul li.current_page_item a,
.parent_child_menu ul li.activeChild a
{
    background-color:#8da08f;
    border-color:#8da08f;
}
.widget-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color:#ffffff;
}
select.form-control {
    text-shadow: none;
    color: #6a6a6a;
}
.form_style3 select.form-control {
    color: #ffffff;
}
.form_style3 select.form-control option {
    color: #6a6a6a;
}
.breadcrumb-wrap {
    padding: 7px 0px;
    background: #8da08f;
    color: #fff;
}
.breadcrumb-wrap a {
    color: #fff;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: transparent;
	color:green;
}
.form_style  textarea.form-control {
    padding-top: 10px;
    padding-bottom: 10px;
}
.community_involvement  ul {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 20px;
}
.community_involvement ul li {
    width: calc(50% - 14px);
}
.content_box p a:hover{
	color: #8da08f;
}
.text-white p a:hover{
	color: #8da08f;
}
.item_box {
    display: block;
}
.previous-post-link a {
    color: #ffffff;
    padding: 11px 23px;
    display: inline-block;
}
span.wpcf7-not-valid-tip{
	display: none !important;
}
.copyright {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    gap: 25px 0px;
    align-items: center;
    justify-content: space-between;
}
.copyright-text {
    width: 64%;
    padding-left: 25px;
}
.bottom_metas {
    width: 36%;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn.active {
    background: #000;
    color: #fff;
}

.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.text-white p a {
    color: #8da08f;
}
.text-white p a:hover {
    color: #ffffff;
}
.content_box .title span {
    color: #8da08f;
    font-size: 16px;
    display: block;
    font-family: var(--body-font);
	margin-bottom:5px;
}
.serve_sec .res_img {
    height: 430px;
	transition:.5s;
}
.serve_sec .res_title_outer {
    position: static;
    background-color: #00344c;
    text-transform: uppercase;
}
.serve_sec .item_box:hover img { 
    transform: scale(1.1);
}
.serve_sec .res_img_outer{
	overflow:hidden;
}
.image_border {
    position: relative;
    display: inline-block;
    padding-top: 50px;
    padding-left:50px;
}
.image_border:after {
    content: "";
    position: absolute;
    background-color: #8da08f;
    width: calc(100% - 50px);
    height: calc(100% - 50px);
    top: 0px;
    left: 0px;
    z-index: -1;
}