/* Common CSS Start */
:root {
    --color-1: #000000;
    --color-2: #ffffff;
    --color-3: #600000;
    --color-4: #F2C541;
    --color-5: #525252;
    --color-6: #52585B;
    --font-inter: "Inter", sans-serif;
    --font-playfair: "Playfair Display", serif;  
}
* {
    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;
    font-family: var(--font-inter);
    font-weight: 400;
    color: #525252;
    color: var(--color-5);
    font-size: 16px;
    line-height: 1.7;
    font-variant-numeric: lining-nums tabular-nums;
}
.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-3);
}
.hide{
    display: none;
}
.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
    justify-content: center;
    max-width: 100%;
}

:focus{
    outline: 0;
    outline: none;
}
a {
    color: var(--color-3);
    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: transparent;
    text-decoration: none;
}
p {
    margin-bottom: 20px;
}
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-3);
}
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;
}
.bg-red {
    background: var(--color-3);
}
.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 {
    width: auto;
    font-weight: 500;
    border-radius: 0px;
    padding: 0;
    line-height: 24px;
    position: relative;
    margin-bottom: 0;
    border: 1px solid var(--color-4);
    min-width: 150px;
    letter-spacing: 0;
    color: var(--color-4);
    background: transparent;
    font-size: 20px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: max-content;
    transition: 0.5s;
}
.btn:after, .btn:before {
    content: "";
    top: 0;
    width: 56px;
    height: 64px;
    background-repeat: no-repeat;
    background-image: url(../img/right-black-arrow.svg);
    background-size: 14.5px;
    position: relative;
    display: inline-block;
    background-color: #f0c340;
    background-position: center;
    transition: 0.5s;
}

.btn:before {
    left: 0;
    margin-right: 25px;
    width: 0;
    transition: 0.5s;
}

.btn:after {
    right: 0;
    margin-left: 25px;
}
.btn:hover:before {
    transition: 0.5s;
    width: 56px;
    height: 64px;
}

.btn:hover:after {
    width: 0;
    transition: 0.5s;
}
.btn.white-bg-btn {
    background: transparent;
    border: 1px solid #070F12;
}

.btn:hover {
    transition: 0.5s;
    background: transparent;
    color: var(--color-4);
    border: 1px solid var(--color-4);
}

.btn.white-bg-btn:hover {
    transition: 0.5s;
    background: #000A0D;
    color: var(--color-2);
    border-color: #000A0D;
}

.btn.focus, .btn:focus {
    transition: 0.5s;
    background: transparent;
    color: var(--color-4);
    border: 1px solid var(--color-4);
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    transition: 0.5s;
    background: transparent;
    color: var(--color-4);
    border: 1px solid var(--color-4);
}

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 {
    transition: 0.5s;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    position: relative;
    color: var(--color-1);
    font-weight: 500;
    line-height: 1.3;
    font-weight: 600;
    font-family: var(--font-playfair);
}
h1, .h1 {
    font-size: 65px;
    margin-bottom: 15px;
}
h2, .h2 {
    margin-bottom: 15px;
    font-size: 54px;
}
h3, .h3 {
    font-size: 32px;
    margin-bottom: 15px;
}
.h4, h4 {
    font-size: 24px;
    margin-bottom: 15px;
}
h5, h5 {
    font-size: 22px;
    margin-bottom: 15px;
}
h6, .h6 {
    font-size: 20px;
    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: 1.5;
    margin-bottom: 10px;
    padding-left: 15px;
}
.linklist ul li:after {
    position: absolute;
    left: 0;
    content: "";
    border-radius: 100%;
    height: 5px;
    width: 5px;
    background-color: #000000;
    background-repeat: no-repeat;
    background-size: contain;
    top: 10px;
}
.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-weight: 400;
    padding: 14px 18px 14px 47px;
    position: relative;
    padding-top: 12px;
}
.linklist ol>li:before {
    background-color: var(--color-3);
    border-radius: 50%;
    color: var(--color-2);
    content: counter(li);
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    height: 32px;
    left: 0;
    line-height: 30px;
    position: absolute;
    text-align: center;
    top: 13px;
    width: 32px;
}
.section-pd {
    padding: 90px 0;
}
.section-pt {
    padding-top: 90px;
}
.section-pb {
    padding-bottom: 90px;
}
.title, .heading {
    margin-bottom: 25px;
    position: relative;
    display: block;
    color: #090909;
    line-height: 1.2;
    letter-spacing: 0;
    font-weight: 400;
    font-family: var(--font-playfair);
    font-size: 43px;
    text-transform: capitalize;
}
.white-color-sec *, .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 p a {
    color: var(--color-4);
}
.white-color-sec p a:hover {
    text-decoration:underline;
}
.white-color-sec .btn, .white-color-sec .btn:hover {
    color: var(--color-4);
}
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;
}
.text-white p a{
	color: var(--color-4);
}
.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: var(--color-2);
    position: relative;
    padding-left: 0;
    padding-right: 0;
    margin-left: 25px;
}
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 {
    padding: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0px;
    color: var(--color-2);
    padding-bottom: 30px;
    padding-top: 30px;
    text-transform: none;
    text-transform: uppercase;
}
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: 1px;
    background: var(--color-4);
    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, .post-type-archive-post-team .nav-menu .menu-top>li#menu-item-177>a:before, .post-type-archive-post-case-result .nav-menu .menu-top>li#menu-item-176>a:before {
    width: 100%;
    opacity: 1;
}
header#header.small-header ul.menu-top > li > a {
    padding-bottom: 30px;
    padding-top: 30px;
}

.menu-top li a:hover, .menu-top li a:focus {
    color: var(--color-4);
}
.nav-menu .menu-top>li.current-menu-item>a, .nav-menu .menu-top>li.current-menu-ancestor>a, .post-type-archive-post-team .nav-menu .menu-top>li#menu-item-177>a, .post-type-archive-post-case-result .nav-menu .menu-top>li#menu-item-176>a {
    color: var(--color-4);
}

.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(--color-3);
    color: var(--color-2);
}
.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: var(--color-3);
    color: var(--color-2);
}
.menu-top .sub-menu li.current_page_item a {
    background-color: var(--color-3);
    color: var(--color-2);
}
.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: var(--color-2);
    color: #000;
}
.menu-top .sub-menu > li.current_page_item ul li a:hover, .menu-top .sub-menu > .current_page_ancestor > a {
    background-color: var(--color-3);
    color: var(--color-2);
}
.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%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu-top {
    position: relative;
    transition: all ease-in-out .2s;
    text-align: right;
    justify-content: space-between;
    display: flex;
    right: 0;
    top: 2px;
}
.menu-top li:last-child {
    margin-right: 0;
}
ul.menu-top li#menu-item-25 {
    display: none;
}
.sub-menu {
    background-color: var(--color-2);
    min-width: 215px;
    text-align: left;
}
ul.menu-top li .sub-menu li a {
    font-size: 16px;
    padding: 7px 10px;
    margin: 0;
    color: var(--color-1);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    text-transform: capitalize;
    line-height: 22px;
    font-weight: 500;
}
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: var(--color-2);
}
ul.menu-top li .sub-menu li a:hover, ul.menu-top li .sub-menu li a:focus {
    color: var(--color-5);
    background: var(--color-4);
}
ul.menu-top li .sub-menu li.current-menu-item a {
    color: var(--color-5);
    background: var(--color-4);
}
.menu-header ul.sub-menu li.menu-item-has-children>a:after {
    -ms-transform: rotate(227deg);
    -webkit-transform: rotate(227deg);
    -moz-transform: rotate(227deg);
    -o-transform: rotate(227deg);
    transform: rotate(227deg);
    right: 13px;
    top: 0;
    bottom: 0;
    content: "";
    border-left: 2px solid #293a4c;
    border-bottom: 2px solid #293a4c;
    display: inline-block;
    width: 8px;
    height: 8px;
    position: absolute;
    margin: auto;
}
ul.menu-top li .sub-menu li.menu-item-has-children > a:hover {
    background-color: var(--color-3);
    color: var(--color-2);
}
.menu-header ul.sub-menu li.current-menu-ancestor>a:after {
    border-color: var(--color-2);
}
.menu-header ul.sub-menu li.current-menu-item>a:after, .menu-header ul.sub-menu li.menu-item-has-children>a:hover:after, .menu-header ul.sub-menu li.menu-item-has-children>a:focus:after {
    border-left: 2px solid var(--color-2);
    border-bottom: 2px solid var(--color-2);
}
.menu-header > ul > li > ul {
    transform: translateY(0em);
    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;
    box-shadow: 0px 0px 11px #00000024;
    border-top: 1px solid #fbfbfb;
}
.menu-top li.menu-item-has-children:after {
    content: "";
    position: absolute;
    top: 0px;
    margin: auto;
    right: 3px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/nav-arrow.svg);
    background-position: center;
    height: 10px;
    width: 10px;
    bottom: 0px;
}
.menu-top > li.current-menu-item:after, .nav-menu .menu-top>li.current-menu-ancestor:after {
    background-image: url(../img/nav-arrow-yellow.svg);  
}
.menu-top > li.current-menu-item:after{
    background-image: url(../img/nav-arrow-yellow.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: var(--color-2);
    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: 0;
    top: 2px;
    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/search-white.svg);
    background-position: center;
    cursor: pointer;
    transition: 0.5s;
}
.mobile-search-bar .white-search-icon:hover {
    background-image: url(../img/search-yellow.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-3);
    padding: 20px;
    margin-top: 0;
}
.search-icon-form button.btn:hover {
    background-color: var(--color-2);
    color: var(--color-3);
    border: 1px solid var(--color-2);
}

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

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

.search-wrapper .title {
    color: var(--color-3);
    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: var(--color-2);
    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: var(--color-2);
}

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

#m-SiteSearchs-form .search-input-box ::-webkit-input-placeholder {
    color: var(--color-2);
    opacity: 1;
}

#m-SiteSearchs-form .search-input-box ::-moz-placeholder {
    color: var(--color-2);
    opacity: 1;
}

#m-SiteSearchs-form .search-input-box :-ms-input-placeholder {
    color: var(--color-2);
    opacity: 1;
}

#m-SiteSearchs-form .search-input-box :-moz-placeholder {
    color: var(--color-2);
    opacity: 1;
}

#search-icon-bar .fa-search {
    color: var(--color-2);
    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: var(--color-2);
    font-size: 0;
}
/* Header Search End */

/* side menu logo */
.menu-logo-wrapper {
    position: absolute;
    padding: 17px 15px;
    max-width: 245px;
    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;
    padding: 15px 0;
    transition: .5s;
    max-width: 149px;
}
.small-header .logo-wrapper {
    padding: 7px 0px;
    max-width: 125px;
}
.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 {
    width: 100%;
    position: relative;
    margin-bottom: 0;
    transition: all ease-in-out .2s;
    display: flex;
    justify-content: center;
    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: 0;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.0);
    background: var(--color-3);
    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;
}
.header-left-logo {
    display: flex;
    align-items: center;
    width: 10%;
}
.header-aside-col {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 68%;
}
.header-call-sec {
    width: 22%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-call-sec .desktop-call-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-btn-info .btn {
    display: block;
}
.header-contact-info {
    margin-top: 0;
    position: relative;
    display: flex;
    width: 269px;
    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: 18px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 0;
    line-height: 24px;
    color: var(--color-5);
    background-position: 15px center;
    background-image: url(../img/black-phone-icon.svg);
    background-repeat: no-repeat;
    background-size: 35px;
    padding-left: 60px;
    padding-top: 14px;
    padding-bottom: 14px;
    background-color: var(--color-4);
    width: 100%;
}

.header-contact-info a div {
    font-size: 22px;
    color: var(--color-5);
    font-weight: 600;
}
.header-contact-info a:hover span {
    text-decoration: none;
    pointer-events: none;
}
.header-contact-info a:hover div {
    transition: 0.5s;
}
.header-contact-info a span {
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 5px;
    display: block;
    line-height: 1;
    position: relative;
    top: 0;
    letter-spacing: 0px;
    color: var(--color-5);
}
.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: var(--color-2);
    border: none;
    background: var(--color-4);
    border-radius: 45px;
    z-index: 1;
}
.close-btn:hover {
    opacity: 1;
    cursor: pointer;
    background-color: var(--color-3);
}
.close-btn:before, .close-btn:after {
    position: absolute;
    left: 0;
    content: ' ';
    height: 20px;
    width: 2px;
    background-color: var(--color-1);
    right: 0;
    margin: auto;
}

.close-btn:hover:before, .close-btn:hover:after {
    opacity: 1;
    background-color: var(--color-2);
}
.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: 154px;
    z-index: 10000;
    background-color: #000000;
    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 var(--color-2);
    color: var(--color-2);
    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 var(--color-2);
    color: var(--color-2);
}
.mobile-search-bar-box .search-input-box {
    position: relative;
}
.req-error {
    position: absolute;
    font-size: 10px;
    bottom: -17px;
    display: none;
    color: var(--color-2);
    font-weight: normal;
    right: 0;
    background-color: #b30000;
    border-radius: 0;
    text-transform: capitalize;
    padding: 3px;
    line-height: 1;
    padding-bottom: 4px;
}
.mobile-search-bar img {
    cursor: pointer;
    top: -3px;
    position: relative;
}

.m-close-search .bar {
    background: var(--color-2);
    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;
    width: auto;
    position: relative;
}
header#header.small-header .nav-menu-inner .nav-menu {
    top: 0;
}
/* Mobile Search Bar */

/* Contact Form CSS Start */
.wpcf7 .form-acceptance-col  .wpcf7-list-item-label a {
    color: var(--color-2);
    text-decoration: underline;
}
.wpcf7 .form-acceptance-col .wpcf7-list-item-label a:hover {
    color: var(--color-3);
}
.wpcf7 form.spam .wpcf7-response-output {
    margin-left: auto !important;
    margin-right: auto !important;
}
.wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed;
    background: #293a4c;
    color: var(--color-2);
}
.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: 0;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: #060606;
    z-index: 2;
}
div.wpcf7 .wpcf7-form .form-control, .common-form-style .form-group .form-control, select {
    padding: 0;
    font-size: 16px;
    text-transform: none;
    height: 49px;
    border-radius: 0;
    background: #fff;
    font-weight: 400;
    color: #101010;
    border: none;
    border-bottom: 1px solid #101010;
    padding: 0px 12px;
}
select{
    width: 100%;
}
div.wpcf7 .wpcf7-form .form-control:focus {
    border-bottom: 1px solid #101010;
    opacity: 1;
}
div.wpcf7 .wpcf7-form textarea.form-control, .common-form-style .form-group textarea.form-control {
    height: 128px;
}
div.wpcf7 .wpcf7-form textarea.form-control {
    padding-top: 10px;
    color: #101010;
}
.form-group {
    margin-bottom: 25px;
}
.wpcf7 .wpcf7-response-output {
    font-size: 12px;
    line-height: 1.3;
    position: absolute;
    left: 0;
    bottom: -40px;
    right: 0;
    color: var(--color-2);
    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 var(--color-2);
    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: var(--color-2);
    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 {
    padding: 0;
    display: inline-block;
    width: auto;
    position: relative;
    min-width: 147px;
}
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 {
    text-decoration: none;
    opacity: 0.3;
}
div.wpcf7 form.submitting .btn-wrap {
    border: none;
    background: none;
    pointer-events: none;
}
.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: transparent;
    text-align: center;
    margin-left: auto !important;
    margin-right: auto !important;
    opacity: 0;
}
.wpcf7 form[data-status=sent] .wpcf7-response-output.message-sent {
    opacity: 1;
    font-size: 15px;
    background: var(--color-2) !important;
    color: #00772c !important;
    position: relative !important;
    bottom: 0 !important;
    border-left: 5px solid #00772c !important;
    text-align: center !important;
    box-shadow: 0px 0px 11px #e2e2e2 !important;
    min-width: 411px !important;
    padding: 15px !important;
    font-weight: 600 !important;
    margin-top: 30px !important;
}
.sidebar .wpcf7 form[data-status="sent"] .wpcf7-response-output {
    color: #00772c !important;
    min-width: 320px !important;
    bottom: 0;
    position: relative;
    opacity: 1;
}
textarea {
    resize: none;
    height: 5rem;
}
[type=submit], [type=submit]:focus {
    cursor: pointer;
    box-shadow: none;
}
/* placeholder */
.wpcf7 ::-webkit-input-placeholder {
    color: #101010;
}
.wpcf7 select {
    color: #101010;
}
.wpcf7 ::-moz-placeholder {
    color: #101010;
}
.wpcf7 :-ms-input-placeholder {
    color: #101010;
}
.wpcf7 :-moz-placeholder {
    color: #101010;
}
.wpcf7 .wpcf7-not-valid-tip, .wpcf7 label.error {
    color: var(--color-2);
    position: absolute;
    bottom: 0px;
    right: 0px;
    font-size: 10px;
    background-color: #b30000;
    padding: 4px;
    border-radius: 0px;
    line-height: 6px;
    text-transform: capitalize;
    margin: 0;
}
.wpcf7 .wpcf7-not-valid-tip {
 
}
.wpcf7 .quiz-math .wpcf7-not-valid-tip {
    font-size: 10px;
    display: inline-block;
}
.contact-form-sidebar .wpcf7-select{
    color: white;
    border: 1px solid white;
}
select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
    text-transform: capitalize;
}
.wpcf7 .wpcf7-checkbox .wpcf7-list-item {
    display: inline-block;
    margin: 0;
    margin-right: 20px;
    vertical-align: middle;
}
.wpcf7 .wpcf7-list-item label {
    display: flex;
    align-items: center;
}
.wpcf7 .wpcf7-list-item label input[type="checkbox"] {
    margin-right: 10px;
}
.wpcf7 .wpcf7-list-item label .wpcf7-list-item-label {
    display: inline-block !important;
    opacity: 1 !important;
    transition: none !important;
}
.form-acceptance-col .wpcf7-list-item label {
    line-height: 1.625rem;
    font-size: 16px;
    color: #000;
    display: flex;
    align-items: flex-start;
}
.wpcf7 .wpcf7-acceptance .wpcf7-list-item-label {
    display: inline-block !important;
    transition: none;
    line-height: 26px;
}

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

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

.form-acceptance-col .wpcf7-list-item {
    margin-left: 0;
}
/* Contact Form CSS END */

/* Footer CSS */
.main-footer * {
    color: var(--color-2);
}

.main-footer {
    background: #121212;
    position: relative;
    padding-bottom: 60px;
}

.footer-wrapper .support-heading {
    color: var(--color-2);
    font-size: 24px;
    font-weight: 500;
    margin-top: 25px;
}

.footer-wrapper .footer-email a {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-2);
}
.footer-wrapper .footer-email a:hover {
    color: var(--color-4);
    ;
}

.footer-wrapper .footer-email {
    line-height: normal;
    margin-top: 15px;
}

.footer-left-info {
    max-width: 185px;
    text-align: center;
}

/* footer social icon */
.footer-social-icon-wrap {
    width: 100%;
    position: relative;
    margin-top: 35px;
}
ul.footer-social {
    z-index: 1;
    display: flex;
    margin-top: 0px;
    align-items: center;
    justify-content: center;
    position: relative;
}
ul.footer-social li {
    margin: 0;
    margin-right: 11px;
}
ul.footer-social li:last-child {
    margin-right: 0px;
}
.footer-social li a {
    position: relative;
    height: 25px;
    width: 25px;
    line-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
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(--color-2);
}

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(--color-4);
}
.footer-sec ul li a br, ul.menu-top li a br {
    display: none;
}
.footer-sec ul li.current_page_item a {
    color: var(--color-4);
}
/* footer social icon */
.footer-heading {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 20px;
    font-weight: 400;
}
.footer-content {
    padding-top: 50px;
    margin-top: 80px;
    border-top: 1px solid var(--color-2);
    width: 100%;
    position: relative;
}

.footer-content p {
    line-height: 24px;
    font-size: 14px;
}
.footer-menu-sec ul li {
    position: relative;
    display: block;
    margin-top: 20px;
    line-height: normal;
}
.footer-menu-sec ul li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--color-2);
}

.footer-menu-sec ul li a:hover {
    color: var(--color-4);
}

.nap-postal-address-wrapper .nap-item {
    margin-top: 20px;
    width: 100%;
}
.nap-address-info .location-center {
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    letter-spacing: 0.25px;
}
.nap-contact-info {
    margin: 8px 0;
    line-height: normal;
}
.nap-contact-info .phoneno:hover span {
    color: var(--color-4);
}
.direction-link {
    text-decoration: underline;
}
.direction-wrap .direction-link:hover, .direction-wrap .direction-link:focus {
    color: var(--color-4);
    text-decoration: underline;
}
.copyright {
    text-align: center;
}
.copyright-wrapper {
    margin-top: 50px;
}
.copyright .copyright-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-2);
}
/* Footer CSS */

/* Nap CSS */
.nap-footer.defaultnap {
    position: relative;
    width: 100%;
    height: 100%;
}
.footer-location-sec {
    height: 100%;
}
.map-loc-front {
    position: absolute;
    height: 100%;
    right: 0;
    top: auto;
    width: 490px;
    bottom: 0;
    overflow: hidden;
    height: calc(100% - -45px);
}

.map-loc-front .contact-maps-wrap.active-map {
    opacity: 1;
    width: 100%;
    height: 100%;
    display: block;
}

.map-loc-front  .contact-maps-wrap {
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.map-loc-front .contact-maps-wrap iframe {
    width: 100%;
    height: 100%;
}

.footer-loc-col {
    position: relative;
}
/* Nap CSS */

/* 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;
    position: relative;
    z-index: 1;
    opacity: 1;
    border-radius: 50%;
    border: none;
    background-color: #D9D9D908;
    background-size: 10px;
}
.owl-carousel .owl-nav .owl-prev {
    left: 0;
    background-image: url(../img/arrow-right-white.svg);
    background-position: center;
    transform: rotate(180deg);
}
.owl-carousel .owl-nav .owl-next {
    right: 0px;
    background-image: url(../img/arrow-right-white.svg);
    background-position: center;
}
.owl-carousel .owl-nav .owl-next:hover, .owl-carousel .owl-nav .owl-prev:hover {
    opacity: 1;
    background-image: url(../img/arrow-right-white.svg);
    background-color: #f2c541;
    border-color: #f2c541;
}
/* end owl css */

/* Home Page CSS START Here*/
.page-button {
    margin-top: 30px;
}
.home-banner-info .page-button {
    margin-bottom: 0;
}
.home-banner-info .page-button .btn {
    margin-left: auto;
    margin-right: auto;
}
.home-banner-info  {
    margin: 0 auto;
    text-align: center;
}
.home-banner {
    position: relative;
    display: flex;
    z-index: 1;
    background-color: #5c0000;
    padding-top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    height: 100%;
    min-height: 700px;
    align-items: flex-end;
    padding-bottom: 50px;
    justify-content: flex-end;
}

.home-banner:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(0deg, #ffffff00, #ffffff00), linear-gradient(180deg, rgba(96, 0, 0, 0) 11.38%, rgba(96, 0, 0, 0.84) 79.98%);
}
.home-banner-wrap {
    width: 100%;
    position: relative;
}
.home-banner .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.home-right-image img {
    width: 100%;
    pointer-events: none;
}
.home-banner .banner-title {
    margin-bottom: 25px;
    position: relative;
    display: block;
    color: var(--color-2);
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 700;
    font-family: var(--font-playfair);
    font-size: 96px;
}
.home-banner .banner-content p {
    color: var(--color-2);
    font-size: 20px;
    line-height: 1.6;
}
.home-banner .banner-content {
    margin-bottom: 0;
    width: 100%;
    position: relative;
}
.banner-slide-col .logo-info-wrap {
    width: 100%;
    position: relative;
    height: 124px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-slide-col .logo-info-wrap img {
    max-height: 120px;
    object-fit: contain;
    width: auto;
    max-width: 150px;
    object-position: center;
}
.banner-slide-col .item {
    padding: 2px;
}
.home-banner-wrap .banner-slide-col {
    margin-top: 50px;
}
/* Home banner */

/* Left Side Image and right side content css */
.left-side-image-right-content {
    background: #1D1E1F;
}
.left-side-image {
    width: 100%;
    position: relative;
    padding: 15px;
    z-index: 0;
}
.left-side-image:before {
    width: 100%;
    position: absolute;
    height: 100%;
    content: "";
    background: var(--color-3);
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    clip-path: polygon(0 8%, 100% 0, 100% 93%, 0% 100%);
    pointer-events: none;
}
.left-side-image img {
    width: 100%;
    pointer-events: none;
}
.home-content-section-wrap {
    width: 100%;
    position: relative;
}
.home-content-section-wrap .row {
    align-items: center;
}
/* Left Side Image and right side content css */

/* victory Slider content css */
.victory-information-content, .victory-detail-wrap, .victory-list-wrap {
    width: 100%;
    position: relative;
    background-position: center right 0px;
}
.victory-page-button {
    margin-top: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.victory-list-wrap {
    margin-top: 50px;
    padding-left: 75px;
    padding-right: 75px;
}
.victory-info .victory-star-icon {
    margin-bottom: 20px;
}

.victory-info .victory-star-icon svg, .victory-info .victory-star-icon img {
    width: 75px;
    height: 18px;
}
.victory-info .victory-name {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 20px;
}
.victory-nav {
    width: calc(100% + 0px);
    position: absolute;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    bottom: 0;
    height: 55px;
    margin: auto;
}
.victory-nav .owl-next, .victory-nav .owl-prev {
    display: inline-block;
    vertical-align: middle;
    line-height: 26px;
    height: 55px;
    width: 55px;
    font-size: 0px;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    opacity: 1;
    border-radius: 50%;
    border: none;
    background-color: #ededed1f;
    background-size: 10px;
    cursor: pointer;
}
.victory-nav .owl-next {
    right: 0px;
    background-image: url(../img/arrow-right-white.svg);
    background-position: center;
}

.victory-nav .owl-prev {
    left: 0;
    background-image: url(../img/arrow-right-white.svg);
    background-position: center;
    transform: rotate(180deg);
}

.victory-nav .owl-next:hover, .victory-nav .owl-prev:hover {
    opacity: 1;
    background-image: url(../img/arrow-right-dark.svg);
    background-color: #f2c541;
    border-color: #f2c541;
}
.victory-dots {
    text-align: left;
    margin-top: 40px;
    position: relative;
    height: 3px;
    margin-bottom: 70px;
    line-height: normal;
    display: flex;
    align-items: center;
}
.victory-dots:after {
    background: #FFFFFF42;
    content: "";
    left: 0;
    right: 0;
    height: 1px;
    position: absolute;
    top: 0px;
    bottom: 0;
    margin: auto;
    width: 100%;
}
.victory-dots .owl-dot {
    display: inline-block;
    margin: 0;
}
.victory-dots .owl-dot span {
    width: 169px;
    height: 3px;
    background: transparent;
    display: block;
    border-radius: 0px;
    line-height: normal;
}
.victory-dots .owl-dot.active span {
    background: var(--color-2);
    line-height: normal;
}
/* victory Slider content css */

/* Practice css */
.practice-container {
    padding-left: 15px;
    margin-bottom: 60px;
}
.practice-left-col .heading {
    margin: 0;
}
.practice-right-col {
    display: flex;
    justify-content: flex-end;
    padding-right: 42px;
}
.practice-information-content {
    background: #1D1E1F;
    position: relative;
    width: 100%;
}
.practice-list-wrap {
    width: 100%;
    position: relative;
    padding-left: 30px;
    overflow: hidden;
}
.practice-information-content #practiceSlider {
    overflow: hidden;
}
.practice-information-content #practiceSlider .owl-stage {
    padding-left: 0 !important;
}
.practice-information-content .practice-nav {
    display: flex;
    margin-top: 34px;
    margin-bottom: 0;
    padding-left: 15px;
}
.practice-nav .owl-next, .practice-nav .owl-prev  {
    cursor: pointer;
    width: 26px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 26px;
}

.practice-nav .owl-prev svg path, .practice-nav .owl-next svg path {
    stroke: var(--color-2);
}
.practice-nav .owl-prev:hover svg path, .practice-nav .owl-next:hover svg path {
    stroke: var(--color-2);
}
.practice-nav .owl-next {
    margin-left: 16px;
}
.practice-information-content .practice-case-item .owl-stage .item {
    padding: 0 16px;
}
.practice-information-content .practice-case-item .owl-stage .item .practice-info {
    background: var(--color-3);
    height: 356px;
    padding: 30px 20px;
    border-radius: 0;
    position: relative;
}
.read-more {
    color: var(--color-2);
    font-size: 20px;
    display: inline-block;
    background-image: url(../img/arrow_white.svg);
    background-position:  center right;
    background-repeat: no-repeat;
    padding-right: 40px;
}
.practice-information-content .practice-case-item .owl-stage .item .practice-info .read-more {
    position: relative;
    bottom: 0;
    cursor: pointer;
    margin-top: 20px;
}
.practice-information-content .practice-case-item .owl-stage .item .practice-icon {
    height: 49px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 49px;
    border: 1px solid #FFFFFF38;
    border-radius: 11px;
}
.practice-information-content .practice-case-item .owl-stage .item .practice-icon svg, .practice-information-content .practice-case-item .owl-stage .item .practice-icon img {
    max-width: 120px;
    max-height: 100px;
    object-fit: contain;
}
.practice-information-content .practice-case-item .owl-stage .item .practice-icon svg path {

}
.practice-info .practice-name {
    color: var(--color-2);
    font-size: 32px;
    font-weight: 500;
    line-height: 38px;
    margin: 0;
    margin-bottom: 20px;
    position: relative;
    padding-top: 0;
}
.practice-info .practice-desc p {
    color: var(--color-2);
    font-size: 16px;
    line-height: 26px;
}
.practice-information-content .practice-case-item .owl-stage .item .practice-info:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    z-index: 1;
    transition: 1s;
}
.practice-information-content .practice-case-item .owl-stage .item:hover .practice-info:before {
    opacity: 0.5;
}
.practice-information-content .practice-case-item .owl-stage .item .practice-info .practice-image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: 1s;
    z-index: 0;
}

.practice-information-content .practice-case-item .owl-stage .item:hover .practice-info .practice-image {
    opacity: 1;
}
.practice-information-content .practice-case-item .owl-stage .item .practice-info .practice-desc-wrap {
    z-index: 2;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.practice-information-content .practice-case-item .owl-stage .item:hover .practice-icon svg path {
 
}
.practice-information-content .practice-case-item .owl-stage .item:hover .practice-info .read-more {
    color: var(--color-2);
}
.practice-information-content .practice-case-item .owl-stage .item .practice-info .read-more:hover {
    text-decoration: underline;
}
.practice-information-content .practice-case-item .owl-stage .item:hover .practice-info .practice-desc p {
    color: var(--color-2);
}
.practice-nav .owl-next:hover, .practice-nav .owl-prev:hover {
    opacity: 0.7;
}

.practice-nav .owl-prev svg {
    width: 12px;
    transform: rotate(180deg);
}
.practice-nav .owl-next svg {
    width: 12px;
}
.award-info .page-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
/* Home Page CSS Start */


/* testimonial home slider */
.latest-testimonial-section {
    background-color: #161718;
    width: 100%;
    position: relative;
}

.testimonial-dots {
    text-align: left;
    margin-top: 50px;
    position: relative;
    height: 3px;
    margin-bottom: 50px;
    line-height: normal;
    display: flex;
    align-items: center;
}

.testimonial-dots:after {
    background: #FFFFFF42;
    content: "";
    left: 0;
    right: 0;
    height: 1px;
    position: absolute;
    top: 0px;
    bottom: 0;
    margin: auto;
    width: 100%;
}
.testimonial-dots .dot {
    display: inline-block;
    margin: 0;
    width: 169px;
    height: 3px;
    background: transparent;
    border-radius: 0px;
    line-height: normal;
}
.testimonial-dots .dot.active {
    background: #fff;
}

.container-testimonial-item {
    width: 100%;
    position: relative;
    max-width: 1318px;
    margin: 0 auto;
    background: linear-gradient(270deg, rgba(96, 0, 0, 0) 0%, rgba(96, 0, 0, 0.56) 10.1%, rgba(96, 0, 0, 0.56) 87.5%, rgba(96, 0, 0, 0) 98.56%);
    padding: 70px 0px;
}

.container-testimonial-item .latest-testimonial-list {
    margin: 0 auto;
    max-width: 782px;
}

.testimonial-result-info .author_image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 50px;
    background: var(--color-3);
    color: #fff;
    margin-right: 15px;
}
.author-name-and-location .testimonial-location {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}
.author-name-and-location .author-title {
    font-size: 20px;
    line-height: 28px;
}
.testimonial-main-item .review-rating {
    display: flex;
    align-items: center;
    gap: 0px 2px;
    justify-content: center;
}
.testimonial-main-item .star-icon {
    background-image: url('../img/start_icon.svg');
    height: 30px;
    width: 30px;
    display: block;
    background-size: 30px;
    background-repeat: no-repeat;
}

.container-testimonial-item .list-testimonial-col {
    margin-top: 30px;
}
.container-testimonial-item .testimonial-top-info {
    margin-top: 20px;
    text-align: center;
}
.container-testimonial-item .testimonial-top-info p {
    font-size: 32px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.3;
}

.container-testimonial-item .testimonial-result-info {
    justify-content: center;
}
#thumbTeamSlider .owl-item {
    opacity: 0.5;
    transition: 0.3s;
}

#thumbTeamSlider .owl-item.active.center {
    opacity: 1;
}
/* testimonial home slider */
/* criminal lawyer sec */
.criminal-lawyer-sec .left-side-image {
    padding: 0;
}
.criminal-lawyer-sec .left-side-image:before {
    display: none; opacity: 0;
}
/* criminal lawyer sec */

.accordion_item {
    background-color: transparent;
    background: none;
}
.accordion_custom .accordion-button {
    background-color: transparent;
    border: none;
    padding-left: 0px;
    padding-right: 0px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    box-shadow: none;
}
.accordion_custom .accordion-button:focus,
.accordion_custom .accordion-button:focus-visible
{
  border: none;
  box-shadow: none;
}
.accordion_custom .accordion-item {
    border: none;
    border-bottom: 1px solid var(--color-2);
    border-radius: 0px;
}
.accordion-button::after {
    filter: brightness(0) invert(1);
    transform: rotate(
        270deg);
}
.accordion_custom .accordion-body{
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}
.right-side-image-left-content {
    background-size: cover;
    background-attachment: fixed;
    background-color: var(--color-3);
    background-position: center;
}
.right-side-image-sec img {
    width: 100%;
}
.bg_dark{
    background: #1D1E1F;
}
.sec_bg_dark{
    background-color: #1C1D1F;
}
.no-blog-image .no-featured-image {    
    background-repeat: no-repeat;
    background-position: center;
    background-color: #081449;
}
.blog-two-column .blog-image img {
    height: 333px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.blog-image img {
    height: 822px;
    width: 100%;
    object-fit: cover;
}
.latest-blogs-blog-wrap .blog-image img {
    height: 350px;
}
.blog-date {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}
.blog_item_list:nth-child(2) {
    margin-top: 65px;
}
.left-content-sec-info .heading {
    max-width: 645px;
}
.team_member {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    padding: 17px 22px;
    text-transform: capitalize;
    border-bottom: 1px solid #919191;
    background-image: url(../img/right_arrow.svg);
    transition: .5s;
    background-repeat: no-repeat;
    background-position: center right 22px;
}
.team_member:hover{
    background-color: #C42A2A;
}
.team_member_data {
    display: none;
}

.team_member_data.active {
    display: block;
}
.team_member_box {
    border: 1px solid #6D6D6D;
    padding: 19px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.attorney-image {
    width: 100%;
    padding-left: 130px;
}
.team_meta {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 150px;
    background: #1c1c1c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 19px 9px 19px 75px;
    flex-direction: column-reverse;
}
.team_title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 48px;
    font-weight: 400;
}
.designation {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 20px;
}
.title_font{
    font-family: var(--font-playfair);
}
.attorney-image img {
    height: 865px;
    width: 100%;
    object-fit: cover;
}
.attorney-image .no-attorney-image {
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--color-3);
}
.arrow_btn {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70px;
    height: 70px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team_member_data:hover .arrow_btn{
   background: var(--color-4);
}
.text-wrap-balance{
    text-wrap: balance;
}
.content_box_title {
    border-bottom: 1px solid #EDEDED;
    font-size: 28px;
    line-height: 1;
    padding-bottom: 10px;
    font-weight: 600;
}
.content_box_list li strong {
    display: block;
    font-size: 24px;
    font-weight: 500;
}
.content_box_list li {
    position: relative;
    padding-left: 80px;
}
.content_box_list li:before {
    content: "";
    background-image: url(../img/list_icon.svg);
    width: 55px;
    height: 66px;
    position: absolute;
    background-repeat: no-repeat;
    left: 0px;
}
.content_box_list ul {
    display: flex;
    flex-direction: column;
    gap: 20px 0px;
}
.map_image {
    position: absolute;
    width: 40%;
}
.map_second_image {
    position: absolute;
    right: 0px;
    bottom: 0px;
}
.location_list_sec {
    padding-bottom:230px;
}
.dotted_list ul {
    column-count: 2;
}
.dotted_list ul li {
    position: relative;
    padding-left: 20px;
    color: var(--color-4);
}
.dotted_list ul li a {
    color: var(--color-4);
}
.dotted_list ul li:before {
    content: "";
    background: var(--color-4);
    width: 6px;
    height: 6px;
    position: absolute;
    border-radius: 50%;
    left: 0px;
    top: 14px;
}
.body_font{
    font-family: var(--font-inter);
}
.second_location_list ul{
    column-count: 1;
}
.nav_width{
    max-width: 725px;
}
.list_counter ul {
    counter-reset: my-counter;
    display: flex;
    flex-direction: column;
    gap: 20px 0px;
}
.list_counter ul li {
    counter-increment: my-counter;
    list-style: none;
    position: relative;
    padding-left: 65px;
    line-height: 1.5;
}
.list_counter ul li::before {
    content: counter(my-counter) " ";
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    background: #BD282C;
    font-size: 24px;
    text-align: center;
    top: 4px;
    line-height: 40px;
}
.list_counter ul li strong {
    display: block;
    font-size: 24px;
    font-weight: 500;
}
.contact_lawyer_img {
    width: 350px;
    display: flex;
    align-items: flex-end;
}
.contact_wrap_box {
    display: flex;
    flex-wrap: wrap;
}
.contact_form_meta {
    width: calc(100% - 350px);
    padding: 30px;
}
div.wpcf7 .wpcf7-form  .form-group {
    margin-bottom: 10px;
}
.nap_content .phoneno {
    background-image: url(../img/call-img.svg);
    padding-left: 36px;
    background-repeat: no-repeat;
    background-position: left top 1px;
    font-size: 20px;
    color: #fff;
}
.nap_content .phoneno-white{
    background-image: url(../img/call_icon_white.svg);
}
.nap_content .email_address {
    background-image: url(../img/email-icon.svg);
    padding-left: 36px;
    background-repeat: no-repeat;
    background-position: left top 5px;
    font-size: 20px;
    color: #fff;
    margin: 20px 0px;
    display: block;
}
.nap_content .email_white {
    background-image: url(../img/email-icon-white.svg);
    background-position: left top 10px;
}
.loc-meta{
    background-image: url(../img/location-icon-white.svg);
    padding-left: 36px;
    background-repeat: no-repeat;
    background-position: left top 5px;
}
.office_opening_hour {
    background-image: url(../img/clock-icon.svg);
    padding-left: 36px;
    background-repeat: no-repeat;
    background-position: left top 5px;
    min-height: 31px;
}
.office_opening_content {
    font-weight: 900;
    padding-left: 36px;
}
.nap_content {
    margin-top: 60px;
}
.blog-loop .blog-img-link img {
    height: 300px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.blog-loop .blog-img-link img.no-feature {
    background-color: #081449;
    background-size: 150px;
}
.content-area {
    max-width: 1072px;
}
.pagination .nav-links{
    width:100%;
    display:flex;
    position:relative;
    font-weight:700;
    justify-content:center;
}
.pagination .nav-links span.current {
    color: #fff;
    border-color: var(--color-3);
    background: var(--color-3);
}
.pagination .nav-links span, .pagination .nav-links a {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--color-3);
    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: var(--color-3);
    border-color: var(--color-3);
}
.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: var(--color-3);
}
.pagination .nav-links a.prev {
    transform: rotate(180deg);
}
.theme_bg {
    background: var(--color-3);
}
.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: var(--color-2);
}

.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: var(--color-2);
}

.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/white-arrow-icon.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: 450px;
}
.blog-search-field {
    padding: 10px 39px;
    width: 100%;
    height: 48px;
    border: 1px solid #F5E6E6;
    padding-right: 56px;
    background-color: #FAF3F3;
    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: var(--color-4);
    background-image: url(../img/right-black-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
}
/***********Sidebar Css**************/
.input_btn_wrap{
    justify-content: space-between;
    min-width: 100%;
}
.input_btn_wrap input {
    position: absolute;
    width: 100%;
    top: 0px;
    height: 100%;
    left: 0px;
    color: #fff;
    background: none;
    padding-right: 56px;
    transition: .5s;
    border: none;
    color: var(--color-4);
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    z-index: 9;
    background: none !important;
}
.input_btn_wrap:hover input{
    padding-left: 56px;
    padding-right: 0px;
}
.input_btn_wrap .fs-submit-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
}
.wpcf7 .btn_width {
    min-width: 191px;
}
.map-loc-front {
    width: calc(100% - 238px);
}
.footer-location-sec .nap-footer .nap-box-wrap {
    width: 238px;
}
.widget-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-2);
}
.list-style ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}
.list-style ul li:before {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 10px;
    left: 0px;
    margin: auto;
    background-color: var(--color-4);
    border-radius: 50%;
}
.header-contact-info a:hover {
    background-color: #fff;
}
/**************** 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 ****************/
.map-loc-front .contact-maps-wrap.active_map {
    opacity: 1;
    position: relative;
    opacity: 1;
    width: 100%;
    height: 100%;
    display: block;
}
.wpcf7 form.sent .wpcf7-response-output {
    border: none;
}
.wpcf7 form.sent .wpcf7-response-output.message-sent {
    border: 1px solid #46b450;
    color: #46b450;
}
.min_width_225{
    min-width: 225px;
}
.banner_none {
    padding-top: 170px;
}
.practice-icon svg, .practice-icon img {
    width: 38px;
    height: 38px;
}
.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.wp-block-quote {
    border-color: var(--color-3);
}
.nap-title {
    font-weight: 600;
    margin-bottom: 3px;
}
.blog-img-link img {
    height: 593px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.post-author-meta .blog-date {
    color: #BD282C;
    font-weight: 600;
}
.fw-500{
    font-weight: 500;
}
.item_sub_title{
    font-size: 16px;
}
.list_items a {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact_form_meta2 {
    max-width: 947px;
}
.banner-small-title {
    font-size: 20px;
    font-weight: 400;
}
.banner_title{
    font-size: 48px;
}
.three-block-list {
    column-count: 3;
}
.two-block-list {
    column-count: 2;
}
.banner_btns{
    gap: 20px;
}
.static-page-style .h1, .static-page-style .h2, 
.static-page-style .h3, .static-page-style .h4, 
.static-page-style .h5, .static-page-style .h6, 
.static-page-style h1, .static-page-style h2, 
.static-page-style h3, .static-page-style h4, 
.static-page-style h5, .static-page-style h6{
    font-weight: 400;
}
.address-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.contact-map-wrapper iframe {
    height: 509px;
    display: block;
    width: 100%;
}
.address_box_wrap {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 22px 0px;
}
.address_data {
    border-right: 1px solid #DADADA;
    padding-right: 50px;
    margin-right: 50px;
    line-height: 1.5;
    letter-spacing: 0.25px;
}
.address_box_wrap:last-child .address_data {
    border: none;
    padding-right: 0px;
    margin: 0px;
}
.fw-600{
    font-weight: 600;
}
.nap_title {
    color: #121212;
}
.address_data a {
    color: #525252;
}
.btn-border-dark {
    border-color: #121212;
    color: #121212;
}
.btn-border-dark:hover,
.btn-border-dark:focus
 {
    color: #121212;
    border-color: #121212;
}
.btn-border-dark:after {
    border-left: 1px solid #121212;;
}
.btn-border-dark:hover::before {
    border-right: 1px solid #121212;;
}
.btn-border-dark:hover::after {
    border-left: 0px;
}
.team_box {
    padding: 30px;
    background: #FAF3F3;
    transition: .5s;
}
.team_box:hover {
    background: #BD282C;
}
.team_thumb img {
    width: 100%;
    height: 415px;
    object-fit: cover;
    object-position: top;
    background-repeat: no-repeat !important;
    background: #081449;
    background-position: center;
    background-size: 100px;
}
.member_position {
    background: #BD282C;
    color: #fff;
    font-size: 20px;
    text-transform: capitalize;
    padding: 9px 25px;
}
.team_box:hover .team_member_title{
    color: var(--color-2);
}
.team_box:hover .member_position{
    color: #1D1E1F;
    background: var(--color-2);
}
.team_box .arrow_btn {
    background: var(--color-4);
    width: 56px;
    height: 64px;
}
.team_box * {
    transition: .5s;
}
.color_red{
    color: #BD282C;
}
.bio_team_thumbnail img {
    height: 470px;
    position: relative;
    z-index: 1;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.bio_team_thumbnail {
    position: relative;
    padding: 0px 20px;
}
.bio_team_thumbnail:after {
    background: var(--color-3);
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transform: skew(0deg, -4deg);
}
.info_icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-4);
    display: flex;
    align-items: center;
    justify-content: center;
}
.info_icon svg,
.info_icon img{
    width: 28px;
    height: 28px;
}
.accordion_button:after {
    filter: none;
    transform: none;
    background-color: var(--color-4);
    width: 40px;
    height: 40px;
    background-position: center;
}
.accordion_custom .accordion_item_box {
    border-bottom: 1px solid #1D1E1F;
}
.accordion_button:not(.collapsed) {
    color: #525252;
}
.team_list_sec {
    padding-left: 187px;
}
.team_list_sec .owl-stage{
    padding-left: 0px !important;
}
.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 #fff;
    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:var(--color-4);
    border-color:var(--color-4);
    color: var(--color-5);
}
.copyright a:hover {
    color: var(--color-4);
}
.small-nav a {
    margin-left: 10px;
    border-left: 1px solid #fff;
    padding-left: 10px;
    line-height: 100%;
}
.click-here:hover{
    text-decoration: underline;
}
.victory-desc {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
	font-size: 14px;
}
.form-meta{
    font-size: 14px;
}
.g_40 {
    --bs-gutter-y: 2.5rem;
    --bs-gutter-x: 2.5rem;
}
.blog-title:hover {
    color: var(--color-3);
}
.blog-searchform [type=submit]:hover {
    background-color: var(--color-3);
    background-image: url(../img/arrow_white.svg);
}
.nap_content a:hover {
    opacity: 0.7;
}
.hovercolor_change a:hover, 
.hovercolor_change a:hover * {
    color: var(--color-4) !important;
}
span.fs-inline-error {
    right: 0px;
    left: auto;
    bottom: 0px;
    top: auto;
}
.breadcrumbs-block {
    text-transform: capitalize;
}
.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}


ul.menu-top li .sub-menu li.current-menu-item .sub-menu a {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-1);
}

ul.menu-top li .sub-menu li.current-menu-item .sub-menu a:hover, 
ul.menu-top li.current-menu-item .sub-menu li a:focus {
    color: var(--color-5);
    background: var(--color-4);
}

.footer-left-info .footer-phoneNo svg * {
    fill: var(--color-2);
}

.footer-left-info .footer-phoneNo svg {
    height: 20px;
}
.readmorebtn {
    background-image: none;
    text-transform: capitalize;
    padding: 0px;
    font-size: 28px;
    font-weight: 500; 
    font-style: italic;
}
.readmorebtn a {
    color: var(--color-4);
    text-decoration: underline;
}
.readmorebtn a:hover {
    color: #ffffff;
}
.review_box {
    background: #FAF3F3;
    height: 100%;
    padding: 70px 40px;
    transition: .5s;
}
.testimonials-content {
    color: #553333;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 25px 0px;
}
.author_image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 50px;
    background: #600000;
    color: #fff;
    margin-right: 15px;
}
.testimonials-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    color:#1D1E1F;
}
.author_location {
    color: #1D1E1F;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
}
.star-icon {
    background-image: url('../img/start_icon.svg');
    height: 30px;
    width: 30px;
    display: block;
    background-size: 30px;
    background-repeat: no-repeat;
}
.review-rating {
    display: flex;
    align-items: center;
    gap: 0px 2px;
}

.review_text svg,
.review_text img {
    width: 20px;
    height: 20px;
}
.review_box:hover {
    background: #600000;
}
.review_box:hover * {
    color: #fff;
}
.review_box:hover .author_image {
    background: #ffffff;
    color: #600000;
}
.review_box:hover .read_more a {
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
}
.review_box * {
    transition: .5s;
}
.btn-close {
    background: #600000;
    position: absolute;
    right: 4px;
    height: 44px;
    width: 44px;
    line-height: 15px;
    top: 4px;
    z-index: 1;
    opacity: 1;
    border-radius: 0px;
}
.modal-content-style {
    border-radius: 0px;
    padding: 60px 40px;
}