/* Common CSS Start */
:root {
    --color-0: #0B0B0B;
    --color-1: #333333;
    --color-2: #050F26;
    --color-3: #EE7A20;
    --color-4: #43AA8B;
    --color-5: #008080;
    --color-6: #FBB90B;
    --color-7: #254441;
    --color-8: #5BC3EB;
    --color-9: #ffffff;
    --color-10: #000000;
    --font-jakarta: "Plus Jakarta Sans", sans-serif;
    --font-calistoga: "Calistoga", serif;

    /* 
    color: var(--color-0); darkBlack
    color: var(--color-1); black
    color: var(--color-2); blue 
    color: var(--color-3); orange
    color: var(--color-4); green
    color: var(--color-5); DeepSeaGreen
    color: var(--color-6); yellow
    color: var(--color-7); DeepGreen
    color: var(--color-8); skyblue
    color: var(--color-9); white
    font-family: var(--font-jakarta);  
    font-family: var(--font-calistoga);  
    */
}
* {
    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-jakarta);
    font-weight: 400;
    color: var(--color-0);
    font-size: 16px;
    line-height: 30px;
    padding-top: 0px;
}
.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;
}

:focus{
    outline: 0;
    outline: none;
}
a {
    color: var(--color-3);
    text-decoration: none;
}
a:hover {
    color: #000000;
}
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-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;
}
.fullwidth {
    position: relative;
    width: 100%;
    z-index: 1;
}
.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 */
.page-button {
    margin-top: 25px;
}
.link-button {
    height: 64px;
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
}
.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: 16px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 53.33px;
    background: var(--color-3);
    padding: 16px 15px;
    font-family: var(--font-jakarta);
    line-height: 24px;
    color: var(--color-9);
    background-position: 15px center;
    background-repeat: no-repeat;
    box-shadow: 0px 6px 0px #254441;
    position: relative;
    display: inline-block;
    margin-bottom: 7px;
    border: 1px solid var(--color-10);
    min-width: 205px;
}
.btn:hover {
    transition: 0.5s;
    color: var(--color-9);
    background-color: var(--color-5);
}

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

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

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

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, h2, h3, h4, h5, h6 {
    position: relative;
    color: var(--color-0);
    font-weight: 400;
}
h1 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 15px;
}
h2 {
    margin-bottom: 15px;
    font-size: 42px;
    line-height: 52px;
}
h3 {
    font-size: 38px;
    line-height: 48px;
    margin-bottom: 15px;
}
h4 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 15px;
}
h5 {
    font-size: 27px;
    line-height: 38px;
    margin-bottom: 15px;
}
h6 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 15px;
}

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

.linklist ul li ul, .blog-box .blog-content ol li ol, .blog-box .blog-content ul li ul {
    margin-top: 10px;
    position: relative;
}

.linklist ol li, .linklist ul li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
    display: inline-block;
    vertical-align: top;
    padding-right: 0;
    width: 100%;
}

.linklist ul li:after {
    position: absolute;
    left: 0;
    top: 10px;
    content: "";
    border-radius: 100%;
    height: 7px;
    width: 7px;
    background: #000000;
}
.linklist ol {
    padding-left: 30px;
}
.linklist ol li {
    padding-left: 0px;
    display: list-item;
}
.section-pd {
    padding: 70px 0;
}
.section-pt {
    padding-top: 70px;
}
.section-pb {
    padding-bottom: 70px;
}
.row.box-items {
    --bs-gutter-x: 3.5rem;
}
.title, .heading {
    margin-bottom: 25px;
    position: relative;
    display: block;
    color: var(--color-0);
    text-transform: none;
    font-size: 36px;
    line-height: 48px;
    font-weight: 400;
    font-family: var(--font-calistoga);
    letter-spacing: 0;
}
.normal-heading {
    margin-bottom: 25px;
    position: relative;
    display: block;
    color: var(--color-0);
    text-transform: none;
    font-size: 38px;
    line-height: 48px;
    font-weight: 600;
}

.title span, .heading span {
    color: var(--color-9);
    background: #008080;
    display: inline-block;
    padding: 2px 11px;
}
.small-heading {
    color: var(--color-0);
    margin-bottom: 10px;
    font-size: 24px;
    letter-spacing: 2.5px;
    font-weight: 300;
    font-style: normal;
}
.medium-heading {
    margin-bottom: 15px;
    position: relative;
    display: block;
    color: var(--color-0);
    text-transform: none;
    font-size: 35px;
    line-height: 45px;
}
.white-color-sec p a, .white-color-sec .heading, .white-color-sec p, .white-color-sec .title,
.white-color-sec ul li, .white-color-sec h2, .white-color-sec h3, .white-color-sec h4, .white-color-sec h5, .white-color-sec h6 {
    color: var(--color-9);
}
.white-color-sec .btn:hover {
    transition: .5s;
    background: transparent;
    color: var(--color-9);
    border-color: var(--color-9);
}

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: 5px;
    top: 10px;
}
.searchform .close-btn:before, .searchform .close-btn:after {
    left: 0;
    right: 0;
    top: 12px;
}
/* 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: 15px;
}
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;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0px;
    color: var(--color-0);
    font-family: var(--font-jakarta);
    padding-bottom: 7px;
}
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-5);
    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 {
    font-weight: 600;
    color: var(--color-5);
}
.nav-menu .menu-top>li.current-menu-item>a, .nav-menu .menu-top>li.current-menu-ancestor>a {
    font-weight: 600;
    color: var(--color-5);
}
.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: #fff;
}
.menu-top .sub-menu > li {
    border-bottom: none;
}
.menu-top .sub-menu > li:last-child {
    border-bottom: none;
}
.menu-top .sub-menu li.current_page_item a {
    background-color: var(--color-3);
    color: #fff;
}
.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: rgba(0, 0, 0, 0.95);
    color: #fff;
    font-weight: 400;
}

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

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

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

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

.search-icon-form button.btn:focus{
    background-color: var(--color-3);
    color: #fff;
    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: #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;
    max-width: 100px;
}
.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%;
}
/* header#header.small-header .menu-top > li > a {
    padding: 32px 0;
} */
.top-search-bar {
    text-align: right;
    position: relative;
    width: 45px;
}
.nav-menu-wrapper {
    width: 100%;
    position: relative;
    margin-bottom: 0;
    transition: all ease-in-out .2s;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 15px;
}
.menu-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}
.nav-menu-inner ul > li .sub-menu *{
    transition: none;
}
header#header {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 11;
    padding: 11px 0;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.0);
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.5s;
}
header#header.small-header {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.18);
    background: #b5cece;
    top: 0;
    transition: all 0.5s;
}
.header-top .header-left-logo {
    display: flex;
    align-items: center;
    padding-bottom: 0px;
}
.header-aside-col {
    align-items: center;
    display: flex;
}
.header-top {
    padding: 0;
    width: 100%;
    position: relative;
}
.header-top-right {
    justify-content: center;
    align-items: center;
    display: flex;
}
.right-top-wrap {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
}
.header-contact-info {
    margin-top: 0;
    position: relative;
    display: flex;
    width: 600px;
    justify-content: space-between;
    padding-left: 0;
    padding-bottom: 0;
    height: 66px;
    align-items: flex-end;
    top: -6px;
}
.header-contact-info a {
    margin-left: 0;
    width: auto;
    display: block;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 53.33px;
 
    padding: 16px 8px;
    font-family: var(--font-jakarta);
    line-height: 24px;
    color: #000;
    background-position: 8px center;

    padding-left: 35px;
    background-image: url(/wp-content/uploads/2025/12/phone-icon-1.svg);
    background-repeat: no-repeat;
  
}
/* .header-contact-info a:hover {
    transition: 0.5s;
    color: var(--color-9);
    background-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: 50px;
    height: 50px;
    opacity: 1;
    font-size: 0;
    color: #fff;
    border: none;
    background: var(--color-3);
    border-radius: 45px;
    z-index: 1;
}

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

.close-btn:hover:before, .close-btn:hover:after {
    opacity: 1;
    background-color: #ffffff;
}
.close-btn:before {
    transform: rotate(45deg);
}
.close-btn:after {
    transform: rotate(-45deg);
}
.modal-dialog-scrollable .modal-content {
    overflow: inherit;
}
.mobile-search-bar-box{
    display: none
}
.mobile-search-bar-box {
    position: fixed;
    top: 0;
    width: 100%;
    height: 142px;
    z-index: 10000;
    background-color: var(--color-3);
    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;
    background: none;
}
.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 {
    color: #fff;
    background: none;
    border: none;
    border-bottom: 1px solid #ffffff;
}

.mobile-search-bar-box .search-input-box {
    position: relative;
}
.req-error {
    position: absolute;
    font-size: 11px;
    bottom: -15px;
    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 */
/* Header CSS End */

/* owl css for nav */
.owl-nav {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0px;
    height: 65px;
    right: 0;
    margin: auto;
    z-index: 1;
    width: 100%;
    bottom: 0;
}
.owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    display: inline-block;
    vertical-align: middle;
    line-height: 26px;
    height: 55px;
    width: 55px;
    font-size: 0px;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    z-index: 1;
    opacity: 1;
    border-radius: 0;
    border: none;
}
.owl-carousel .owl-nav .owl-prev {
    left: 0;
    background-image: url(../img/next.svg);
    background-position: center;
    transform: rotate(180deg);
}
.owl-carousel .owl-nav .owl-next {
    right: 0px;
    background-image: url(../img/next.svg);
    background-position: center;
}
.owl-carousel .owl-nav .owl-next:hover:after, .owl-carousel .owl-nav .owl-prev:hover:after {
    opacity: 0.2;
}
.owl-carousel .owl-nav .owl-next:hover, .owl-carousel .owl-nav .owl-prev:hover {
    opacity: 1;
    background-image: url(../img/next-white.svg);
    background-color: transparent;
    border-color: transparent;
}
/* end owl css */

/* owl dots */
.owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
.owl-dots .owl-dot span {
    display: block;
    background: #D9D9D9;
    width: 10px;
    height: 10px;
    border-radius: 100%;
}
.owl-dots .owl-dot {
    margin: 0 5px;
    cursor: pointer;
}
.owl-dots .owl-dot.active span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-5);
}
/* owl dots end */
/* Contact Form CSS Start */
.wpcf7 form.spam .wpcf7-response-output {
    margin-left: auto !important;
    margin-right: auto !important;
}
.wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed;
    background: #293a4c;
    color: #ffffff;
}
.wpcf7 .wpcf7-form-control-wrap.quiz-math, .wpcf7 .wpcf7-form-control-wrap.quiz-math label {
    width: 100%;
    margin: 0;
}
.wpcf7 .wpcf7-spinner {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: #000;
    z-index: 2;
}
div.wpcf7 .wpcf7-form .form-control, .common-form-style .form-group .form-control, select {
    padding: 5px;
    font-size: 16px;
    text-transform: none;
    height: 79px;
    padding-left: 15px;
    font-weight: 300;
    color: #000;
    background: #ffffff;
    border: 1px solid #DFDEDE;
    border-radius: 12px;
}
select{
    width: 100%;
}
div.wpcf7 .wpcf7-form .form-control:focus {
    border-bottom-color: rgba(242, 242, 242, 0.2);
}
div.wpcf7 .wpcf7-form textarea.form-control, .common-form-style .form-group textarea.form-control {
    height: 120px;
}
div.wpcf7 .wpcf7-form textarea.form-control {
    padding-top: 10px;
    color: #fff;
}
.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: #ffffff;
    text-align: center;
    border: none !important;
    margin: 0 !important;
    background: #b31517;
    max-width: 389px;
}
.form-control, .form-control:focus {
    padding: 5px;
    font-size: 16px;
    text-transform: none;
    height: 70px;
    padding-left: 15px;
    font-weight: 300;
    color: #000;
    background: #ffffff;
    border: 1px solid #DFDEDE;
    border-radius: 12px;
}
.wpcf7-form-control-wrap {
    display: inline-flex;
    width: 100%;
}
.wpcf7 .wpcf7-not-valid-tip {
    color: #fff;
    font-weight: normal;
    display: block;
    position: absolute;
    bottom: 1px;
    right: 0;
    font-size: 10px;
    background-color: #b30000;
    padding: 6px;
    border-radius: 4px 4px 0px 0px;
    line-height: 6px;
    text-transform: capitalize;
}
.form-banner-404 .wpcf7 .wpcf7-not-valid-tip{
    padding: 2px 5px;
}
.wpcf7 {
    position: relative;
}
.wpcf7 .form-acceptance-col .wpcf7-list-item-label {
    font-size: 16px;
    line-height: 24px;
}
.wpcf7 .btn-wrap {
    padding: 0;
    display: inline-block;
    width: auto;
    position: relative;
    min-width: 217px;
}
.wpcf7 .btn-wrap .wpcf7-submit {
    margin-left: 0;
    width: auto;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 53.33px;
    background: var(--color-3);
    padding: 16px 15px;
    font-family: var(--font-jakarta);
    line-height: 24px;
    color: var(--color-9);
    background-position: 15px center;
    background-repeat: no-repeat;
    box-shadow: 0px 6px 0px #254441;
    position: relative;
    display: inline-block;
    margin-bottom: 7px;
    border: 1px solid var(--color-10);
    min-width: 205px;
}
.wpcf7 .btn-wrap .wpcf7-submit:hover {
    border-color: var(--color-10);
    transition: 0.5s;
    color: var(--color-9);
    background-color: var(--color-5);
}

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: #ffffff !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: #CFCFCF;
}
.wpcf7 select {
    color: #CFCFCF;
}
.wpcf7 ::-moz-placeholder {
    color: #CFCFCF;
}
.wpcf7 :-ms-input-placeholder {
    color: #CFCFCF;
}
.wpcf7 :-moz-placeholder {
    color: #CFCFCF;
}

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

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

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

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

/* Home Page CSS Start Here */
.home-banner {
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
    background-color: #106C6B;
    padding-top: 150px;
    padding-bottom: 160px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
}
.home-banner .container {
    z-index: 1;
    position: relative;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
}
.home-banner .banner-title {
    position: relative;
    margin: 0;
    font-size: 105px;
    line-height: 1.1;
    text-transform: capitalize;
    font-family: var(--font-calistoga);
    margin-top: 30px;
    margin-bottom: 30px;
}
.banner-title span {
    color: var(--color-10);
    background: #43AA8B;
    display: inline-block;
    padding: 2px 13px;
    padding-bottom: 15px;
}
.home-banner .banner-content {
    width: 100%;
    position: relative;
    margin-bottom: 0;
    max-width: 555px;
}
.home-banner .banner-content p {
    margin-bottom: 0;
    color: var(--color-4-cream);
    font-size: 20px;
    line-height: 30px;
}
.home-banner img.home-banner-bg {
    position: absolute;
    width: 60%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    right: 0%;
    bottom: 0;
    background-position: bottom center;
}
.banner-wrap {
    max-width: 600px;
    position: relative;
    margin-top: 10px;
}
.banner-wrap .home-banner-info {
    width: 100%;
    position: relative;
    margin-top: 90px;
}
.banner-small-text {
    position: relative;
    margin: 0;
    font-size: 20px;
    line-height: 1.1;
    text-transform: capitalize;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 5px;
    padding-left: 100px;
    font-family: "Raleway", sans-serif;
}
.banner-small-text:after {
    position: absolute;
    width: 84px;
    height: 5.333333492279053px;
    background: #ee7a20;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.row.banner-row {
    width: 100%;
    justify-content: space-between;
	align-items: center;
}
/* Home CSS End */
/* footer address */
.footer-menu-sec ul .sidebar-menu-arrow {
    display: none;
}
.main-footer-wrap {
    background: #edf6f6;
    padding-top: 70px;
}
.main-footer {
    background: #edf6f6;
    padding: 70px 0px;
    position: relative;
}
.main-footer:after {
    content: "";
    background: #254441;
    position: absolute;
    left: 25px;
    bottom: 0;
    top: 0;
    margin: auto;
    width: calc(70% - 25px);
    height: 100%;
    z-index: -1;
}
.copyright-wrapper {
    background: #ee7a20;
}
.copyright-wrapper .copyright {
    width: 100%;
    position: relative;
    text-align: center;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.copyright-wrapper .copyright p {
    color: var(--color-10);
}
.logo-list-wrap {
    width: 26%;
    padding-right: 0;
    padding-left: 15px;
}
.footer-top-text {
    margin-bottom: 30px;
}
.footer-info {
    width: 100%;
    display: flex;
    align-items: center;
}
.footer-info p {
    width: 50%;
    color: #fff;
    font-size: 16px;
    margin-left: auto;
    font-weight: 400;
}
.logo-list-wrap img {
    width: 100%;
    height: auto;
}
.footer-logo {
    display: flex;
    width: 100%;
    align-items: center;
}
.main-logo {
    width: 41%;
    position: relative;
}
.main-logo a {
    display: block;
}
.main-logo a img {
    width: auto;
    height: auto;
}
.logo-beacon-wrap {
    padding-right: 70px;
    width: 50%;
}
.logo-beacon-wrap img {
    width: 100%;
    height: auto;
}
.footer-info-row {
    margin-top: 50px;
}
.common-call-item {
    margin-top: 10px;
}
.common-call-item a {
    color: #fff;
}
.footer-top-text p {
    color: #fff;
}
.common-call-item a {
    color: #fff;
    font-weight: 600;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 0 4px;
    padding-left: 30px;
}
.common-call-item .footer-emil-id {
    background-image: url(../img/mail-icon.svg);
}
.common-call-item .footer-phone-num {
    background-image: url(../img/call-icon.svg);
    background-position: 0 4px;
    padding-bottom: 10px;
}
.footer-menu-sec {
    width: 100%;
    position: relative;
    padding-left: 75px;
    background: none;
    margin-top: -75px;
}
.main-footer:before {
    background: #ee7a20;
    position: absolute;
    left: 0;
    bottom: 0;
    height: calc(100% - 30px);
    width: 20%;
    content: "";
    z-index: -1;
    pointer-events: none;
}
.footer-menu-sec ul {
    width: 100%;
    position: relative;
    background: none;
}
.footer-menu-sec ul li {
    position: relative;
    display: block;
    background: none;
    margin-bottom: 10px;
    line-height: normal;
}
.footer-menu-sec ul li a {
    color: var(--color-3);
    font-size: 26px;
    background: none;
    font-weight: 600;
}
.footer-menu-sec ul .common-multi-nav ul.sub-menu {
    margin-bottom: 40px;
}
.footer-menu-sec ul .common-multi-nav ul.sub-menu li {
    margin-bottom: 0;
    margin-top: 10px;
}
.footer-menu-sec ul .common-multi-nav ul.sub-menu li a {
    color: #000;
    font-size: 16px;
    display: inline-block;
    font-weight: 400;
}
.footer-menu-sec ul li a:hover {
    color: var(--color-10);
}
.common-call-item a:hover, .footer-menu-sec ul .common-multi-nav ul.sub-menu li a:hover {
    color: var(--color-3);
}
.footer-menu-sec ul .common-multi-nav > a {
    pointer-events: none;
    font-weight: 600;
}
.copyright-wrapper .copyright p {
    color: var(--color-10);
    text-transform: uppercase;
    margin: 0;
    line-height: normal;
    font-size: 12px;
}
.copyright-wrapper .copyright .small-nav {
    margin-left: 10px;
    line-height: 12px;
}
.copyright-wrapper .copyright .small-nav a {
    color: #000;
    margin: 0;
    line-height: normal;
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
}
/* footer address */

/* Homepage css start */
/* Admission CSS */
.our-admission-sec {
    margin-top: -130px;
}
.our-admission-sec .container {
    position: relative;
    z-index: 0;
}
.admission-sec-wrap {
    width: 100%;
    background-color: var(--color-8);
    padding: 50px;
    border-radius: 0px 40px 40px 0px;
    position: relative;
    padding-bottom: 40px;
}
.admission-sec-wrap:after {
    display: block;
    border-radius: 0px 40px 40px 0px;
    position: absolute;
    padding: 15px;
    background: #254441;
    right: -15px;
    bottom: -15px;
    width: 100%;
    content: "";
    height: 100%;
    opacity: 1;
    transition: 0.5s all;
    z-index: -1;
    pointer-events: none;
}
.admission-sec-wrap .admission-info-wrap {
    display: block;
    border-radius: 30px;
    position: relative;
    padding: 10px;
    padding-top: 0;
    width: 100%;
    padding-bottom: 20px;
}
.admission-sec-wrap .admission-info-wrap:before {
    display: block;
    border-radius: 30px;
    position: absolute;
    padding: 15px;
    background: #254441;
    left: 0px;
    right: 0px;
    bottom: 0px;
    content: "";
    height: 90%;
    opacity: 0;
    transition: 0.5s all;
}
.admission-sec-wrap .admission-info-wrap:hover:before {
    opacity: 1;
    transition: 0.5s all;
}
.admission-col-item .admission-image {
    display: block;
    border: 1px solid #000000;
    box-shadow: 0px 4px 22.3px 0px #00000042;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
.admission-col-item .admission-image img {
    width: 100%;
    border-radius: 20px;
}
/* Admission CSS */
/* Vision CSS */
.mission-and-vision-sec {
    background-position: center;
    background-image: url(../img/vision-bg-image.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
    padding-bottom: 350px;
}
.call-text {
    font-size: 20px;
    display: inline-block;
    letter-spacing: 2.5px;
    font-family: var(--font-jakarta);
    font-weight: 400;
    padding-left: 92px;
    position: relative;
    color: var(--color-0);
    margin-bottom: 25px;
}
.call-text:before {
    position: absolute;
    width: 71px;
    height: 5.391304016113281px;
    background: var(--color-6);
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.call-text a {
    font-size: 20px;
    color: var(--color-6);
    display: inline-block;
    font-family: var(--font-jakarta);
    font-weight: 600;
}
.vision-col-item .vision-title {
    color: var(--color-10);
    text-transform: none;
    font-size: 32px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 10px;
}
.vision-col-item p {
    color: var(--color-0);
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 0px;
}
.vision-col-item {
    display: flex;
    margin-top: 20px;
}
.vision-col-item .vision-info-wrap {
    width: 100%;
    position: relative;
    padding: 50px 30px;
    background: var(--color-6);
    border-radius: 30px;
    padding-bottom: 50px;
    border: 1px solid transparent;
    box-shadow: 0px 8px 0px transparent;
    transition: all 0.5s;
}
.vision-col-item .vision-info-wrap:hover {
    border-color: #000;
    box-shadow: 0px 12px 0px #254441;
    transition: all 0.5s;
}
.vision-col-item:nth-child(2) .vision-info-wrap {
    background: var(--color-4);
}
.vision-col-item:nth-child(3) .vision-info-wrap {
    background: var(--color-8);
}
.admission-heading-col .normal-heading {
    font-size: 32px;
    line-height: 42px;
    color: #050F26;
}
.about-info-col {
    margin-top: 20px;
}
.admission-heading-col .normal-heading {
    margin-bottom: 40px;
}
.about-info-col .link-button a {
    min-width: 295px;
}
.admission-col-item .admission-image .admissions-heading {
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 0px;
    background: rgba(0, 0,0, 0.48);
    color: #fff;
    text-align: center;
    transition: all 1s;
    opacity: 0;
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
}
.admission-col-item .admission-image:hover .admissions-heading {
    opacity: 1;
    height: 100%;
    transition: all 1s;
}
/* Vision CSS */

/* Video Section CSS */
a.html5lightbox {
    position: relative;
    width: 100%;
    display: block;
}
.play-icon {
    position: absolute;
    display: block;
    width: 69px;
    height: 69px;
    font-size: 0px;
    border: none;
    border-radius: 50%;
    color: var(--color-9);
    background-image: url("../img/play.svg");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: 51%;
    transition: 1s;
    box-shadow: 0px 5.33px 32px 0px #0000002B;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    z-index: 2;
    background-color: #fff;
}
.html5lightbox:hover .play-icon {
    transition: 1s;
    transform: scale(1.1);
    background-color: var(--color-3);
}
.video-wrap-link a.html5lightbox {
    border-radius: 20px;
    overflow: hidden;
}
.video-content-sec {
    margin-top: -280px;
}
.video-image-left img {
    width: 100%;
    z-index: 0;
    position: relative;
    border-radius: 20px;
}
.video-detail-info-wrap {
    position: relative;
    width: 100%;
    padding: 0px;
    z-index: 0;
    padding-bottom: 15px;
}
.video-detail-info-wrap:after {
    display: block;
    border-radius: 30px;
    position: absolute;
    padding: 0;
    background: var(--color-7);
    left: 0px;
    right: 0px;
    bottom: 8px;
    content: "";
    height: 50%;
    opacity: 1;
    transition: 0.5s all;
    width: 95%;
    z-index: -1;
    margin: auto;
}
.video-wrap-link {
    position: relative;
    width: 100%;
    padding: 0 15px;
    z-index: 0;
    padding-bottom: 15px;
}

.video-wrap-link:after {
    display: block;
    border-radius: 30px;
    position: absolute;
    padding: 0;
    background: var(--color-6);
    left: 0px;
    right: 0px;
    bottom: 0px;
    content: "";
    height: 90%;
    opacity: 1;
    transition: 0.5s all;
    width: 100%;
    z-index: -1;
    border: 1px solid #000;
}

.video-left-col {
    display: flex;
    align-items: center;
    padding-left: 30px;
}
/* Video Section CSS */

/* Insurance Section CSS */
.treatment-section {
    margin-bottom: -160px;
    z-index: 2;
}
.treatment-section .white-color-sec .heading {
    color: var(--color-10);
}
.insurance-accepted-sec {
    background: rgba(0, 128, 128, .07);
    padding-top: 260px;
    clip-path: polygon(0 19%, 100% 0, 100% 100%, 0% 100%);
}
.insurance-image-right {
    position: relative;
    width: 100%;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}
.insurance-image-right img {
    width: 100%;
    z-index: 0;
    position: relative;
    border-radius: 20px;
}
.outer-border-wrap {
    position: relative;
    width: 100%;
    padding: 0px;
    z-index: 0;
    padding-bottom: 15px;
}
.outer-border-wrap:after {
    display: block;
    border-radius: 30px;
    position: absolute;
    padding: 0;
    background: var(--color-7);
    left: 0px;
    right: 0px;
    bottom: 3px;
    content: "";
    height: 50%;
    opacity: 1;
    transition: 0.5s all;
    width: 98%;
    z-index: -1;
    margin: auto;
}
.inner-border-wrap {
    position: relative;
    width: 100%;
    padding: 0 20px;
    z-index: 0;
    padding-bottom: 20px;
}
.inner-border-wrap:after {
    display: block;
    border-radius: 30px;
    position: absolute;
    padding: 0;
    background: var(--color-6);
    left: 0px;
    right: 0px;
    bottom: 0px;
    content: "";
    height: 90%;
    opacity: 1;
    transition: 0.5s all;
    width: 100%;
    z-index: -1;
    border: 1px solid #000;
}
.insurance-accepted-left-col {
    display: flex;
    align-items: center;
}
.insurance-accepted-left-col .heading {
    margin-bottom: 50px;
}
.insurance-accepted-left-col ul {
    margin-top: 40px;
}
.insurance-accepted-left-col ul li {
    margin-top: 15px;
}
.insurance-accepted-left-col ul li a {
    display: block;
    color: var(--color-0);
    border-bottom: 1px solid var(--color-0);
    display: inline-block;
    line-height: 22px;
    position: relative;
}
.insurance-accepted-left-col ul li a:hover {
    color: var(--color-6);
    border-color: var(--color-6);
}
.insurance-accepted-left-col ul li a:after {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/right-arrow-black.svg);
    background-position: center;
    transition: all 0.5s;
    top: 0;
    bottom: 0;
    right: -30px;
    margin: auto;
}
.insurance-accepted-left-col ul li a:hover:after {
    transition: all 0.5s;
    background-image: url(../img/right-arrow-yellow.svg);
}
/* Insurance Section CSS */
/* Treatment Section CSS */
.treatment-detail-wrap {
    width: 100%;
    position: relative;
    background-color: #fbb80c;
    padding: 50px;
    padding-right: 0;
    padding-bottom: 0px;
    clip-path: polygon(23% 0, 100% 11%, 100% 100%, 0 100%, 0 10%);
    padding-top: 140px;
    background-image: url(../img/yellow-bg-pattern.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.treatment-image-right {
    width: 100%;
}
.treatment-image-right img {
    width: 100%;
}

.white-color-sec .call-text:before {
    background: var(--color-9);
}
.white-color-sec .call-text {
    color: var(--color-9);
}
.white-color-sec .call-text a {
    color: var(--color-9);
}
.treatment-section .treatment-left-col .white-color-sec .call-text {
    color: #000;
}

.treatment-detail-wrap .accordion-item {
    width: 100%;
    position: relative;
    margin-top: 20px;
    border: none;
    background: none;
}

.treatment-detail-wrap .accordion-item .accordion-header {
    line-height: normal;
    background: none;
    border: none;
    box-shadow: none;
    opacity: 1;
    outline: none;
}
.treatment-detail-wrap .accordion-item .accordion-header button {
    color: var(--color-10);
    text-transform: none;
    font-size: 26px;
    line-height: 1.5;
    font-weight: 700;
    margin: 0;
    border: 1px solid #000;
    border-radius: 20px !important;
    display: block;
    box-shadow: none;
    opacity: 1;
    background: transparent;
    padding: 22px 15px;
}
.treatment-detail-wrap .accordion-item .accordion-body {
    background: #fff;
    border-radius: 0 0 20px 20px !important;
    padding-top: 0;
    width: 100%;
    padding-bottom: 35px;
}
.treatment-detail-wrap .accordion-item .accordion-body .vision-content {
    background: none;
    width: 100%;
}
.treatment-detail-wrap .accordion-item .accordion-header button[aria-expanded=true] {
    border: none;
    border-radius: 20px 20px 0px 0px !important;
    background: #fff;
    padding-bottom: 20px;
}
.treatment-detail-wrap div#treatmentAccordion {
    margin-top: 50px !important;
}
/* Treatment Section CSS */
/* Testimonial Section CSS */
.testimonial-left-col {
    display: flex;
    align-items: center;
}
.testimonial-info-wrap {
    background: var(--color-8);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/testimonial-bg.webp);
    background-position: center;
    position: relative;
    padding: 30px;
    border-radius: 0px 40px 40px 0px;
}
.testimonial-outer-wrap {
    width: calc(100% - 15px);
    position: relative;
}
.testimonial-outer-wrap:after {
    display: block;
    border-radius: 0px 40px 40px 0px;
    position: absolute;
    padding: 15px;
    background: #254441;
    right: -15px;
    bottom: -25px;
    width: 100%;
    content: "";
    height: 100%;
    opacity: 1;
    transition: 0.5s all;
    z-index: -1;
    pointer-events: none;
}
.testimonial-info-wrap .testimonial-item {
    padding: 25px;
    width: 100%;
}

.testimonial-info-wrap .testimonial-item .star-icon-wraper.filled {
    color: #FBB90B;
    margin-left: 4px;
    font-size: 27px;
}

.testimonial-info-wrap .testimonial-item .star-icon-wraper.filled:first-child {
    margin: 0;
}
.testimonial-info-wrap .testimonial-item .testimonial-author {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 10px;
}
.testimonial-info-wrap .testimonial-item .testimonial-content {
    width: 100%;
    margin-top: 10px;
}
/* Testimonial Section CSS */
/* FAQ Section CSS */

.faq-detail-sec {
    padding-top: 120px;
    width: 100%;
}

.faq-detail-sec:before {
    content: "";
    background: rgba(0, 128, 128, .07);
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
}
.faq-btn-sec {
    margin-top: 0px;
}
.faq-short-section-wrap p + .faq-btn-sec {
    margin-top: 40px;
}

.faq-detail-sec .faq-inner-wrap {
    width: 100%;
    padding: 100px 70px;
    background-color: #fbc12a;
    background-image: url(../img/faq-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 12%, 100% 0, 94% 100%, 4% 100%);
    padding-bottom: 70px;
    margin-top: -90px;
}

.home-team-content-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 9px;
    padding-right: 0;
}
.home-team-content-wrap:after {
    position: absolute;
    height: 100%;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    content: "";
    background: #FBB80C;
    z-index: -1;
    width: 100%;
    opacity: 0;
    transition: all 0.5s;
    clip-path: polygon(31% 0, 100% 20%, 100% 100%, 0 97%, 0 9%);
}
.home-team-content-wrap.active:after {
    transition: all 0.5s;
    opacity: 1;
}
.team-featured-img {
    display: block;
    position: relative;
    width: calc(100% - 9px);
    clip-path: polygon(31% 0, 100% 8%, 100% 100%, 0 100%, 0% 11%);
    transition: all 0.5s;
}
.home-team-content-wrap.active .team-featured-img {
    clip-path: polygon(31% 0, 100% 8%, 100% 100%, 0 100%, 4% 11%);
    transition: all 0.5s;
}
.team-featured-img img {
    display: block;
    position: relative;
    width: 100%;
    max-height: 203px;
    object-fit: none;
    object-position: top center;
}
.team-featured-img:after {
    position: absolute;
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    content: "";
    z-index: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    transition: all 0.3s ease;
    opacity: 0;
}
.home-team-content-wrap.active .team-featured-img:after {
    opacity: 1;
}
.team-featured-img .team-hover-text {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    padding: 15px;
    z-index: 1;
    text-align: center;
    padding-bottom: 25px;
    transition: 0.5s;
}
.home-team-content-wrap.active .team-featured-img .team-hover-text, .home-team-content-wrap:hover .team-featured-img .team-hover-text  {
    bottom: 0;
    transition: 0.5s;
}
.team-featured-img .team-hover-text .team-name {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
.team-featured-img .team-hover-text .team-designation {
    color: #fff;
    font-size: 16px;
    line-height: normal;
}
.home-team-row {
    margin-top: 40px;
    margin-bottom: 60px;
}
/* FAQ Section CSS */
/* Footer Contact Form CSS */
.footer-left-col>div {
    position: relative;
    z-index: 1;
    width: 100%;
    /*height: 670px;*/
    display: flex;
    align-items: center;
}
.footer-contact-wrap {
    background: var(--color-6);
    padding: 13px 45px;
    border-radius: 50px;
    position: relative;
    width: calc(100% - 15px);
    margin-bottom: 15px;
}
.home-banner .footer-contact-wrap {
    background: rgba(244, 243, 243, 0.50);
}
.home-banner .zcwf_lblLeft .zcwf_col_fld input[ type  = text], input[ type  = password], .zcwf_lblLeft .zcwf_col_fld textarea {
/* background:transparent */
	border-radius:10px !important
}
.home-banner .zcwf_lblLeft .zcwf_col_lab {
    width: 27% !important;
}


.home-banner .zcwf_lblLeft  .zcwf_col_help,
.contact-form-wrap .zcwf_lblLeft  .zcwf_col_help,
.footer-contact-wrap .zcwf_lblLeft  .zcwf_col_help,
.admission-form-section .zcwf_lblLeft  .zcwf_col_help{
	position: absolute;
    right: -20px;
}

.home-banner .hear-about .zcwf_col_fld {
    margin-left: auto;
    width: 100% !important;
    display: flex;
    justify-content: flex-end;
}


.home-banner .hear-about .zcwf_col_fld select {
    width: 70% !important;;
    border-radius: 50px;
    line-height: 1;
    height: 35px;
    margin-right: 0;
}

.contact-form-wrap .zcwf_lblLeft .zcwf_col_fld_slt{
    width: 100%;
}

.contact-form-wrap .zcwf_lblLeft .zcwf_tooltip_ctn,
.footer-contact-wrap .zcwf_lblLeft .zcwf_tooltip_ctn,
.admission-form-section .zcwf_lblLeft .zcwf_tooltip_ctn{
    min-width: 200px;
    max-width: max-content;
	right: 0;
}

.footer-contact-wrap .zcwf_col_fld select,
.admission-form-section .zcwf_col_fld select{
	width: 100% !important;
}
 
.zcwf_row input {
    padding: 0 10px;
}

.home-banner  .hear-about .zcwf_col_lab {
    width: 100% !important;
}

.zcwf_lblLeft .zcwf_button {
    margin-left: 0;
    width: auto;
    font-size: 18px !important;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 53.33px !important;
    background: var(--color-3);
    padding: 16px 15px;
    font-family: var(--font-jakarta);
    line-height: 24px;
    color: var(--color-9);
    background-position: 15px center;
    background-repeat: no-repeat;
    box-shadow: 0px 6px 0px #254441;
    position: relative;
    display: inline-block;
    margin-bottom: 7px;
    border: 1px solid var(--color-10 ) !important;
    
}
.footer-contact-wrap .heading {
    margin: 0;
    line-height: normal;
    margin-top: 7px;
}
.footer-left-col .footer-contact-wrap:before {
    display: block;
    border-radius: 60px;
    position: absolute;
    padding: 15px;
/*     background: #254441; */
    right: -16px;
    bottom: -15px;
    width: calc(100% + 15px);
    content: "";
    height: 100%;
    opacity: 1;
    transition: 0.5s all;
    pointer-events: none;
    z-index: -1;
}
.footer-contact-wrap .common-label {
    color: #4C4C4C;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
}
.footer-contact-section .container {
    position: relative;
    padding-top: 70px;
    padding-bottom: 20px;
}
.footer-contact-section .contact-image-right {
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    overflow: hidden;
}
.footer-contact-section .contact-image-right div {
    height: 100%;
}
.footer-contact-section .contact-image-right img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
    object-position: top center;
    clip-path: polygon(32% 0, 100% 10%, 100% 100%, 0 100%, 0 9%);
    border-radius: 0px 0 0px 16px;
}
.footer-contact-section .wpcf7 .btn-wrap {
    min-width: inherit;
    width: 100%;
}

.footer-contact-section .wpcf7 .btn-wrap .wpcf7-submit {
    width: 100%;
}
/* Footer Contact Form CSS */
/* Latest Therapy CSS */
.latest-therapy-section {
    z-index: 2;
    width: 100%;
    margin-bottom: -1px;
    padding-bottom: 20px;
}
.latest-therapy-section:before {
    content: "";
    background: rgba(237, 246, 246, 1);
    clip-path: polygon(0 0, 100% 33%, 100% 100%, 0% 100%);
    height: 70%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 0;
    z-index: -1;
}
.latest-therapy-news-wrap {
    background: var(--color-8);
    width: 100%;
    position: relative;
    padding: 70px 50px;
    border-radius: 20px;
}
.latest-therapy-news-wrap:after {
    display: block;
    border-radius: 0px 40px 33px 33px;
    position: absolute;
    padding: 15px;
    background: #254441;
    right: -15px;
    bottom: -15px;
    width: 100%;
    content: "";
    height: 100%;
    opacity: 1;
    transition: 0.5s all;
    z-index: -1;
    pointer-events: none;
}
.latest-therapy-left-col > div {
    padding-right: 25px;
}
.latest-therapy-list .news-col-item {
    display: flex;
}
.latest-therapy-left-col {
    display: flex;
    align-items: center;
}
.latest-therapy-list .news-item {
    width: 100%;
    position: relative;
    background: #fff;
    border-radius: 30px 30px;
    padding-bottom: 40px;
    overflow: hidden;
}
.latest-therapy-list .news-title a {
    font-size: 26px;
    color: #333333;
    display: inline-block;
    line-height: 1.5;
    transition: all 0.5s;
    font-weight: 700;
}
.latest-therapy-list .news-title a:hover {
    color: var(--color-5);
    transition: all 0.5s;
}
.latest-therapy-list .news-item .news-image {
    width: 100%;
    position: relative;
    border-radius: 30px;
}
.latest-therapy-list .news-item .news-image a img {
    width: 100%;
    border-radius: 30px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s;
}
.latest-therapy-list .news-item .news-image a:hover img {
    transform: scale(1.05);
    transition: all 0.5s;
}
.latest-therapy-list .news-info-sec {
    width: 100%;
    padding: 25px;
}
.latest-therapy-list .news-info-sec .news-date {
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    line-height: normal;
}
.latest-therapy-list .news-info-sec .read-more {
    color: var(--color-3);
    font-size: 20px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.5s;
}
.latest-therapy-list .news-info-sec .read-more:hover {
    color: var(--color-5);
    transition: all 0.5s;
}
.latest-therapy-list .news-info-sec .news-read-more {
    line-height: normal;
    margin-top: 10px;
    width: 100%;
    position: absolute;
    bottom: 25px;
}
.latest-therapy-list .news-item .news-image a {
    display: block;
    border-radius: 30px;
    height: 270px;
    overflow: hidden;
}
.latest-therapy-list .news-item .news-image .no-blog-image {
    background: #edf6f6;
}
.latest-therapy-list .news-item .news-image .no-blog-image img.no-featured-image {
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
}
/* Latest Therapy CSS */

/* Nap CSS */
.nap-address-info {
    width: 100%;
    position: relative;
}
.nap-address-info .location-center {
    color: #fff;
    font-weight: 600;
}
.nap-footer .direction-link:hover {
    text-decoration: underline;
    color: var(--color-3);
}
/* Nap CSS */


/* author css */
.post-author-and-category {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}
.post-author {
    display: flex;
    align-items: center;
    margin-top: 0;
    margin-right: 15px;
}

.post-author .author-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}
.post-author .author-link img {
    border-radius: 50%;
    margin-right: 10px;
    height: 45px;
    width: 45px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0px 0px 6px #cbcbcb;
}
.post-author .author-name {
    font-weight: bold;
}
.post-author a:hover {
    color: var(--color-5);
    text-decoration: underline;
}
.post-and-content-box .blog-post-info .post-author {
    margin-bottom: 10px;
}
.post-and-content-box .blog-post-info .post-author .author-link img {
    height: 30px;
    width: 30px;
}
.post-and-content-box:hover .post-author span.author-name {
    color: var(--color-5);
    border-color: var(--color-5);
}
.post-author .author-link:hover .author-name {
    color: var(--color-5);
    border-color: var(--color-5);
}
.post-and-content-box:hover .post-author span.author-name:hover {
    color: var(--color-5);
    border-color: var(--color-5);
}
/* author css */

.contact-form-wrap .wpcf7  .wp-form-btn  .btn-wrap {
    min-width: inherit;
    width: 100%;
}
.contact-form-wrap .wpcf7 .wp-form-btn .btn-wrap input {
    width: 100%;
}

.footer-top-text p strong {
    font-weight: 700;
}
.footer-top-text p, .footer-info p {
    font-size: 16px;
    font-weight: 300;
}
.common-call-item .footer-phone-num {
    font-size: 16px;
}
.admissions-criteria-section.fullwidth.section-pd.pt-0 {
    padding-top: 80px !important;
}
.vision-col-item .vision-info-wrap ul {
    padding-left: 25px;
}
.vision-col-item .vision-info-wrap ul li {
    padding-left: 5px;
    list-style: decimal;
    position: relative;
    margin-bottom: 10px;
    font-size: 20px;
}
.vision-col-item .vision-info-wrap ul li:last-child {
    margin-bottom: 0px;
}


.page-template-front-page .footer-contact-section {
    display: none;
}
.social_share ul {
    gap: 10px;
}
.social_share a {
    border: 1px solid var(--color-3);
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    transition: .5s;
}
.social_share a:hover {
    filter: brightness(0) invert(1);
}
.social_share_title {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin: 20px 0px 10px 0px;
}