/*
Theme Name: prisa
Theme URI: 
Description: A clean base theme to use Twitter Boostrap 5 with Wordpress.
Author: MK
Author URI: 
Version: 1.0.0
Text Domain: prisa
*/

*{
    font-family: "Montserrat", sans-serif;
}
body{
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    color: #000;
    overflow-x: hidden;
}
h2 {
    font-size: 42px;
    line-height: 1;
    text-transform:uppercase;
}
a{
    color: #011E93;
    text-decoration: none;
}
.full,.fullwidth{
    width: 100%;
}
header#main-header {
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 99;
    padding: 15px 0px;
    display: block !important;
}
a:hover{
    color: #011E93;
}
img,svg{
    max-width: 100%;
}
ul#menu-header-menu {
    display: flex;
    list-style: none;
    justify-content: space-between;
    margin-bottom: 0;
    align-items: center;
}

@media screen and (min-width:1350px){
    .container{
        max-width: 1280px;
    }
}
.header-inner {
    background: #fff;
    padding: 10px;
    box-shadow: 0px 4px 4px #888;
}
.headerrow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.header-menu-left {
    width: 120px;
}
.header-right {
    width: calc(100% - 120px);
    padding-right: 10px;
}
#menu-header-menu li a{
    color: #011E93 !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    text-decoration: none;
}
#menu-header-menu .contactbtn a {
    background: #011E93 !important;
    color: #fff !important;
    height: 40px;
    display: inline-block;
    padding: 0px 15px;
    line-height: 40px;
}
.banner-section img {
    max-height: 100vh;
    object-fit: cover;
}
.banner-content {
    position: absolute;
    bottom: 120px;
}
footer#mainfooter {
    padding: 100px 0px;
    background: #0E0E0E;
    color: #fff;
    font-size: 16px;
}
.footertoplogo{
    text-align: right;
}
.footer-top-main {
    margin-bottom: 40px;
}
.original-logo svg{
    transition: all ease-in .4s;
}
/*.original-logo:hover > svg {
    transform: scale(2);
}*/
.original-logo {
    overflow: hidden;
}
.footertoplogo {
    display: flex;
    justify-content: flex-end;
}
.hover-logo{
    width:0;
    height:0;
    visibility:hidden;  
}
.original-logo:hover > svg path{
    fill: #EEFA26; 
}
/*
.mainlogo:hover .original-logo{
    -moz-animation: cssAnimation 0s ease-in .5s forwards;
     Firefox 
    -webkit-animation: cssAnimation 0s ease-in .5s forwards;
     Safari and Chrome 
    -o-animation: cssAnimation 0s ease-in .5s forwards;
     Opera 
    animation: cssAnimation 0s ease-in .5s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes cssAnimation {
    to {
        width:0;
        height:0;
        overflow:hidden;
    }
}
@-webkit-keyframes cssAnimation {
    to {
        width:0;
        height:0;
        visibility:hidden;
    }
}

.hover-logo svg path{
    fill: #EEFA26; 
}
@keyframes showlogo {
    to {
        width:auto;
        height:auto;
        visibility: visible;
    }
}
@-webkit-keyframes showlogo {
    to {
        width:auto;
        height:auto;
        visibility: visible;
    }
}
.mainlogo:hover .hover-logo{
    -moz-animation: showlogo 0s ease-in .5s forwards;
     Firefox 
    -webkit-animation: showlogo 0s ease-in .5s forwards;
     Safari and Chrome 
    -o-animation: showlogo 0s ease-in .5s forwards;
     Opera 
    animation: showlogo 0s ease-in .5s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;  
}*/

.footer-heading{
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
}
.footer-middle-section ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 0px;
}
.footer-middle-section ul li a{
    color: #fff !important;
    text-decoration: none;
}
.footer-middle-section ul li a:hover{
    color: #EEFA26 !important;
}
.footer-middle-section ul li{
    margin-bottom: 12px;
}
.footer-bottom-logo {
    margin-top: 50px;
}
.footer-bottom-logo > svg:hover path{
    fill: #EEFA26; 
}

/************* Home Page Css ****************/

.bg-theme-blue{
    background: #011E93;
    color: #fff;
}
.bg-theme-blue a{
    color: #fff;
}

.bg-theme-yellow{
    background: #EEFA26;  
}

.homeabout-info{
    display: flex;
    justify-content: flex-end;
}
.commonpadding{
    padding: 120px 0px;
}

.home-about-section h2{
    font-size: 70px;
    font-style: italic;
}
.home-about-section h2 strong{
    font-style: normal;
}
.section h2 span{
    color: #EEFA26;
}



a.prisa-link {
    overflow-y: hidden;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1;
}

a.prisa-link::before,
a.prisa-link::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
}
/*a.prisa-link::before {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url('');
}*/
a.prisa-link::after {
    content: attr(data-replace);
    height: 100%;
    top: 0;
    transform-origin: 50% 100%;
    transform: translate3d(0, 200%, 0);
    transition: transform .4s cubic-bezier(0.76, 0, 0.24, 1);
    /*    color: #54b3d6;*/
    font-weight: 600;
    display: flex;
    align-items: center;
}

/*a.prisa-link:hover::before {
    transform-origin: 50% 0%;
    transform: scaleX(1);
}*/
a.prisa-link:hover::after {
    transform: translate3d(0, 0, 0);
}

a.prisa-link span {
    display: inline-block;
    transition: transform .4s cubic-bezier(0.76, 0, 0.24, 1);
}

a.prisa-link:hover span {
    transform: translate3d(0, -200%, 0);
}

.homeabout-info-inner a.prisa-link {
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    color: #EEFA26 !important;
    padding-right: 10px;
    line-height: 1;
}
.icon-plussvg{
    transition: all ease-in-out .5s;
}
.icon-arrowsvg{
    opacity: 0;
    transition: all ease-in-out .5s;
}
.link-icon {
    margin-left: 18px;
    transition: all ease-in-out .4s;
}

a.prisa-link:hover .link-icon{
    transform: rotate(90deg);
}
a.prisa-link:hover .icon-plussvg{
    opacity: 0;
}
a.prisa-link:hover .icon-arrowsvg{
    opacity: 1;
}


.homeabout-info-inner .prisa-link-box{
    margin-top: 50px;
}

.thinking-heading-inner h2{
    font-size: 44px;
}
.home-thinking-inner {
    max-width: 680px;
    margin: auto;
}
.thinking-information {
    margin-top: 20px;
}
.halfwidth{
    width:50%;
}
.thinking-imgbox-inner {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}
.thinking-imgbox-outer .prisa-link-box {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}
.thinking-imgbox-outer .prisa-link-box a{
    color: #000 !important;
    font-weight: 600;
    text-transform: uppercase;
}
.thinking-imgbox-outer .prisa-link-box .link-icon {
    margin-left: 10px;
}
.thinking-imgbox-outer .prisa-link-box a.prisa-link::after{
    font-style: italic;
    font-weight: 800;
}
.yellowoverlay-img{
    position: relative;
}
.yellowoverlay-img:before{
    content: "";
    position: absolute;
    height: 200px;
    width: 100%;
    background: linear-gradient(0deg, #EEFA26 0%, rgba(238, 250, 38, 0.00) 100%);
    bottom: 0px;
    opacity: 0;
    transition: all ease-in-out .5s;
}
.thinking-imgbox-inner:hover .yellowoverlay-img:before{
    opacity: 1;
}

.home-offering{
    padding-bottom: 150px;
    padding-top: 50px;
    background: #EEEDE9;
}
.shortheading {
    font-size: 24px;
    font-weight: 400;
}
.link-offering-main {
    border-top: 1px solid #0E0E0E;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    justify-content: flex-end;
    padding-right: 7%;
    position: relative;
}
.link-offering-main:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 30px;
    background: linear-gradient(0deg, #EEFA26 0%, rgba(238, 250, 38, 0.00) 100%);
    opacity: 0;
    transition: all ease-in-out .4s;
    left: 0;
    bottom: 0;
}
.link-offering-main:hover:after{
    opacity: 1;
}

.link-offering-outer:last-of-type .link-offering-main{
    border-bottom: 1px solid #0E0E0E;
    padding-right: 18%;
}
.link-offering-outer:nth-child(2) .link-offering-main{
    padding-right: 14%;
}
.link-offering-outer:nth-child(3) .link-offering-main{
    padding-right: 10%;
}
.home-offering-heading-box {
    margin-bottom: 80px;
}

.prisa-link-div{

}
.prisa-link-div {
    overflow-y: hidden;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1;
}
.hoverbox{
    overflow-y: hidden;
    position: relative;  
    display: flex;
    align-items: center;
}

.prisa-link-div::before,
.prisa-link-div::after,
.hoverbox:after{
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
}

.prisa-link-div::after,
.hoverbox::after{
    content: attr(data-replace);
    height: 100%;
    top: 0;
    transform-origin: 50% 100%;
    transform: translate3d(0, 200%, 0);
    transition: transform .4s cubic-bezier(0.76, 0, 0.24, 1);
    font-weight: 600;
    display: flex;
    align-items: center;
}
.offer-link:hover .prisa-link-div::after,.hoverbox:hover:after {
    transform: translate3d(0, 0, 0);
}
.hoverbox span,
.prisa-link-div span {
    display: inline-block;
    transition: transform .4s cubic-bezier(0.76, 0, 0.24, 1);
}
.hoverbox:hover span,
.offer-link:hover span {
    transform: translate3d(0, -200%, 0);
}
.offer-link:hover .link-icon{
    transform: rotate(90deg);
}
.offer-link:hover .icon-plussvg{
    opacity: 0;
}
.offer-link:hover .icon-arrowsvg{
    opacity: 1;
}
.prisa-link-div{
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    color: #0E0E0E;
}
.link-offering-main .prisa-link-div::after{
    font-style: italic;
    font-weight: 800;
    color: #011E93;
}
.home-slide-inner{
    display: flex;
}
.home-slider-section{
    overflow: hidden;
}
.home-slider-section.bg-theme-yellow {
    padding-top: 100px;
}
.home-slide-info {
    padding-left: 5%;
    padding-right: 40px;
    padding-top: 40px;
}
.home-slider-nav {
    padding: 0px 5%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}
.nextnavlink,.prevnavlink {
    display: flex;
    align-items: center;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 300;
    color: #011E93;
    cursor: pointer;
}
.slider-nav-arrowbox{
    margin-left: 10px;
}
.slider-nav-arrowbox.leftarrow{
    margin-left: 0px;
    margin-right: 10px;
}
.home-slider-info-slider.swiper-fade .swiper-slide{
    opacity: 0 !important
}
.home-slider-info-slider.swiper-fade .swiper-slide-active{
    opacity: 1 !important
}
.home-slider-nav .swiper-button-disabled{
    opacity: 0;
}

.prevnavlink.hoverbox:after{
    left: 50px;
}
path.prev2ndarrow {
    transform: translateX(40px);
    transition: all ease-in-out .5s;
}
path.prevfirstarrow{
    transition: all ease-in-out .5s;   
}
.prevnavlink:hover path.prevfirstarrow{
    transform: translateX(-40px);
}
.prevnavlink:hover path.prev2ndarrow{
    transform: translateX(0px);
}
path.next2ndarrow {
    transform: translateX(-40px);
    transition: all ease-in-out .5s;
}
path.nextfirstarrow{
    transition: all ease-in-out .5s;   
}
.nextnavlink:hover path.nextfirstarrow{
    transform: translateX(40px);
}
.nextnavlink:hover path.next2ndarrow{
    transform: translateX(0px);
}
.home-slide-info-inner {
    margin-top: 30px;
}
.home-slide-heading h3 a {
    color: #000 !important;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 24px;
    display: flex;
    justify-content: space-between;
}
.home-slide-heading .hoverbox:after{
    color: #011E93 !important;
    font-weight: 700;
    font-style: italic;
}
path.tiledarrow2 {
    transform: translate3d(-70px, 70px, 70px);
    transition: all ease-in-out .35s;
}
path.tiledarrow1 {
    transition: all ease-in-out .35s;
    /*    transform: translate3d(70px, -70px, -70px);*/
}
.home-slide-heading .hoverbox:hover path.tiledarrow2{
    transform: translate3d(0px, 0px, 0px);
}
.home-slide-heading .hoverbox:hover path.tiledarrow1{
    transform: translate3d(70px, -70px, -70px);
}
.section.home-thinking-section {
    background: #FAFBFB;
}
.home-stories{
    background: #CCD2E9;
}
.home-stories-heading-box h2{
    font-size: 42px;
}
.home-stories-heading-box h2 span{
    font-style: italic;
    color: #011E93;
}
.stories-list-link{
    color: #000; 
}
.stories-list-link h3{
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;

}
.home-stories-blog-box {
    margin-top: 40px;
}

a.stories-list-link {
    padding: 35px 25px;
    display: inline-block;
    transition: all ease-in-out .4s;
    position: relative;
    z-index: 1;
}
.homestories-info {
    line-height: 1.1;
    margin-top: 15px;
}
a.stories-list-link:before{
    content: "";
    position: absolute;
    background: #011E93;
    color: #fff !important;
    height: 0px;
    width: 100%;
    bottom: 0px;
    left: 0px;
    transition: all ease-in-out .4s;
    z-index: -1;
}
a.stories-list-link:after{
    content: "";
    background: url(/wp-content/uploads/2024/07/uptiledarrow.svg);
    height: 27px;
    width: 27px;
    background-size: cover;
    position: absolute;
    top: 60px;
    right: 60px;
    opacity: 0;
    transition: all ease-in .4s;
}
a.stories-list-link:hover{
    color: #fff;
}
a.stories-list-link:hover:before{
    height: 100%;
}
a.stories-list-link:hover:after{
    opacity: 1; 
    top: 25px;
    right: 25px;
}
.home-stories-blog-box > .row:nth-child(2n) {
    padding-left: 130px;
    border-top: 1px solid #000;
    padding-top: 10px;
    padding-bottom: 10px;
}
.home-stories-blog-box > .row:nth-child(2n + 1) {
    padding-right: 130px;
    border-top: 1px solid #000;
    padding-top: 10px;
    padding-bottom: 10px;
}
.home-stories-blog-box > .row:last-of-type {
    border-bottom: 1px solid #000;
}

.homestory-prisalinkbox .prisa-link{
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 500;
}
.homestory-prisalinkbox .prisa-link:after{
    font-weight: 700;
}
.prisa-link-box {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}
.footer-contact-section .homeabout-info-inner .prisa-link-box {
    margin-top: 30px;
    justify-content: flex-start;
}
.footer-contact-section .homeabout-info-inner{
    margin-top: 30px;
}

/*************** Member Page Css ***************/


.prisamember-banner{
    display: flex;
    align-items: center;
    background-position: bottom center;
}
.page-banner-box{
    min-height: 100vh;
    padding-top: 100px;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding-bottom: 130px;
    z-index: 1;
    position: relative;
}
.prisa-member-banner-content-inner {
    max-width: 610px;
    text-align: right;
}
.prisa-member-banner-content {
    display: flex;
    justify-content: flex-end;
}

.prisa-member-banner-content-inner h2{
    font-size: 76px;
    font-weight: 700;

}
.prisa-member-banner-content-inner h2 span{
    font-style: italic;
    color: #011E93;
    font-weight: 600;
}

/*.tableFixHead          { overflow: auto; height: 100px; width: 100%; }
.tableFixHead thead th { 
    position: sticky;
    top: 98px;
    z-index: 1;
    background: #011E93;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 600;
}
.tableFixHead tbody th { position: sticky; left: 0; }*/
.agency-member-tablebox thead th { 
    background: #011E93;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 600;
}
.agency-member-tablebox .table tr th{
    min-width: 200px;
}
.member-table-section table{
    font-size: 16px;
}
.table-tab-label {
    color: #011E93;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    margin: 0px 7px;
    padding: 2px 15px;
}
.table-tab-label.active{
    color: #EEFA26;
    background: #011E93;
    font-weight: 700;
    font-style: italic;
}
.table-tab-box {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 30px;
    position: sticky;
    top: 85px;
    background: #F9F9F9 !important;
}


.table-tab-label {
    overflow-y: hidden;
    position: relative;
}

.table-tab-label::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
}

.table-tab-label::after {
    content: attr(data-replace);
    height: 100%;
    top: 0;
    transform-origin: 50% 100%;
    transform: translate3d(0, 200%, 0);
    transition: transform .4s cubic-bezier(0.76, 0, 0.24, 1);
    font-weight: 600;
    display: flex;
    align-items: center;
    left: 15px;
}
.table-tab-label:hover::after {
    transform: translate3d(0, 0, 0);
}

.table-tab-label span {
    display: inline-block;
    transition: transform .4s cubic-bezier(0.76, 0, 0.24, 1);
}

.table-tab-label:hover span {
    transform: translate3d(0, -200%, 0);
}
.table-tab-label.active:after{
    transform: translate3d(0, 200%, 0) !important;
}
.table-tab-label.active:hover span{
    transform: none;
}
.member-table-section {
    background: #F9F9F9;
    padding-bottom: 100px;
}
.agencymembertable.table>thead{
    position: sticky;
    top: 190px;
}
.page-id-30 header#main-header.memberheaderbg{
    background: #F9F9F9; 
}
.page-banner-content-inner {
    max-width: 650px;
}
.page-banner-content-inner h1{
    font-size: 76px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: .9;
}

.programmes-banner h1{
    font-size: 76px;
    font-weight: 700;
    color: #011E93;
    text-transform: uppercase;
}
.programmes-banner:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 90%;
    background: linear-gradient(0deg, #EEFA26 0%, rgba(238, 250, 38, 0.00) 100%);
    opacity: 1;
    transition: all ease-in-out .4s;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.programe-tab-link {
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    padding: 3px 0px;
    margin-bottom: 10px;
    cursor: pointer;
    overflow-y: hidden;
    position: relative;
}
.programe-tab-link.active {
    color: #EEFA26;
    background: #011E93;
    font-weight: 700;
    font-style: italic;
}

.programe-tab-link::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
}

.programe-tab-link::after {
    content: attr(data-replace);
    height: 100%;
    top: 0;
    transform-origin: 50% 100%;
    transform: translate3d(0, 200%, 0);
    transition: transform .4s cubic-bezier(0.76, 0, 0.24, 1);
    font-weight: 600;
    display: flex;
    align-items: center;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    text-align: center;
    display: block;
}
.programe-tab-link:hover::after {
    transform: translate3d(0, 0, 0);
}

.programe-tab-link span {
    display: inline-block;
    transition: transform .4s cubic-bezier(0.76, 0, 0.24, 1);
}

.programe-tab-link:hover span {
    transform: translate3d(0, -200%, 0);
}
.programe-tab-link.active:after{
    transform: translate3d(0, 200%, 0) !important;
}
.programe-tab-link.active:hover span{
    transform: none;
}
.programe-tab-information-inner h2{
    text-transform: uppercase;
    color: #011E93;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
}
.tablink-box .prisa-link-box {
    display: flex;
    justify-content: flex-start;
    margin-top: 15px;

}
.tablink-box {
    margin-top: 30px;
}
.tablink-box .prisa-link-box a.prisa-link{
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}


.stories-banner h1 span{
    color: #011E93;
    font-style: italic;
    font-weight: 800;
}
.stories-banner{
    background-position: bottom right;
}
.stories-banner:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, #CCD2E9 0%, rgba(238, 250, 38, 0.00) 100%);
    opacity: 1;
    transition: all ease-in-out .4s;
    left: 0;
    bottom: 0;
    z-index: -1;
}

#stories-main {
    padding: 50px 0px 90px;
    background: #CCD2E9;
}
#stories-main .home-stories-blog-box{
    margin-top: 0px;
}
.single-banner:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, rgba(1, 30, 147, .7) 0%, rgba(1, 30, 147, 0.00) 100%);
    bottom: 0px;
    left: 0;
    opacity: 1;
    z-index: -1;
}
.single-banner h1{
    color:#fff;
}
.single-banner h1 span{
    color: #EEFA26;
    font-style: italic;
}
.post-info {
    display: flex;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 30px;
}
.post-user span{
    font-weight: 600;
}
.post-date {
    padding: 0px 25px;
    border-left: 2px solid #EEFA26;
    border-right: 2px solid #EEFA26;
    margin: 0px 25px;
}

.page-banner-box.single-banner{
    padding-bottom: 170px;
}
#singlepost-main {
    padding: 100px 0px;
    background: #CCD2E9;
}
.post-inner h2{
    text-transform: none;
    color: #011E93;
    font-weight: 600;
    font-size: 32px;
}
.post-inner {
    max-width:910px;
    margin: auto;
    font-size: 16px;
}
.post-inner h3{
    font-size: 24px;
    font-weight: 600;
}
.post-inner a{
    text-decoration: underline;
}

.realted-blog-area{
    margin-top: 60px;
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
    padding: 20px 0px;
}
.realted-blog-area .homestories-outer{
    padding: 0px 40px;
}
.post-next-prev-link-box {
    display: flex;
    justify-content: space-between;
    padding: 25px 0px;
}

.post-next-prev-link-box .slider-nav-arrowbox{
    margin-left: 0px;
    margin-right: 10px;
}

.post-next-prev-link-box .nextnavlink .slider-nav-arrowbox{
    margin-right: 0px;
    margin-left: 10px;
}

.prisaboard-banner:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, #EEEDE9 0%, rgba(238, 250, 38, 0.00) 100%);
    opacity: 1;
    transition: all ease-in-out .4s;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.prisaboard-banner h1{
    color: #fff;
}
.prisaboard-banner h1 span{
    color: #011E93;
    font-style: italic;
}
.section.prisaboard-middle {
    background: #EEEDE9;
    padding-top: 60px;
    padding-bottom: 60px;
}
.mid-content-width {
    max-width: 910px;
    margin: auto;
}
.section.prisaboard-middle h3{
    text-transform: uppercase;
    color: #011E93;
    font-size: 20px;
}
.link-offering-main .prisa-link-box{
    margin-top: 0px;
}

.prisa-board-members-listbox{
    background: #EEEDE9;
    padding-bottom: 120px;
    padding-top: 40px;
}
.error404 .mainarea {
    padding-top: 140px;
}
.error-404 h2 span{
    color: #011E93;
}
.error404 .page-heading-section {
    text-align: center;
}
.error404 .page-heading-section h1{
    font-weight: bold;
}

.prisa-btn{
    background: #011E93 !important;
    color: #fff !important;
    height: 40px;
    display: inline-block;
    padding: 0px 15px;
    line-height: 40px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600
}

.prisateam-banner h1{
    color: #000;
}
.prisateam-banner h1 span{
    color: #011E93;
    font-style: italic;
}

.prisateam-banner:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 70%;
    background: linear-gradient(0deg, #EEEDE9 0%, rgba(238, 250, 38, 0.00) 100%);
    opacity: 1;
    transition: all ease-in-out .4s;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.page-banner-box.prisateam-banner{
    padding-bottom: 100px;
}
.team-member-listinner {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}
.team-member-box{
    width: calc(20% - 12px);
}
.section.team-member-list {
    background: #EEEDE9;
    padding-bottom: 100px;
    padding-top: 50px;
}
.team-member-list-outer {
    background: #011E93;
    color: #fff;
    padding: 50px 30px;
    position: relative;
}
.team-member-info {
    padding-top: 10px;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
}
.team-designation{
    font-weight: 600;
}

.teammember-heading-label span {
    color: #011E93;
    background: #fff;
}
h2.teammember-heading-label {
    position: absolute;
    top: -27px;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #011E93;
}
h2.teammember-heading-label span {
    color: #011E93;
    padding: 12px 20px;
}


.about-us-banner-section{
    min-height: 100vh !important;
}

.page-id-194 .mainarea{
    padding-top: 70px;
}

.page-template-default main.mainarea {
    padding-top: 150px;
}
.page-template-default #page-content{
    padding: 60px 0px;
}

:root {
    scroll-behavior: inherit !important;
}

.banner-section.homebanner {
    height: 100vh;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


div.prisa-popup {
    position: fixed;
    top: 0px;
    height: 100%;
    overflow: scroll;
    width: 100%;
    background: #fff;
    z-index: 999;
    padding: 100px 0px;
    display: none;
    background: #EEEDE9;
}
.prisa-popup.active{
    display: block !important;
}
.close-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 99;
}
.popup-inner-content {
    height: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.prisa-benefits-offer-link{
    cursor: pointer;
}

.popup-bannerarea {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    padding-bottom: 100px;
    background-size: cover;
}

.popup-bannerarea:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 80%;
    background: linear-gradient(90deg, rgba(1, 30, 147, .75) 0%, rgba(1, 30, 147, 0.00) 100%);
    bottom: 0px;
    left: 0;
    opacity: 1;
    z-index: -1;
}
.popup-banner-contentarea {
    color: #fff;
}
.popup-banner-contentarea p{
    max-width: 610px;
}
.popup-bannerarea h2{
    font-weight: 700;
    font-size: 76px;
    text-transform: uppercase;
}
.popup-bannerarea h2 span{
    color: #EEFA26;
    font-style: italic;
    font-weight: 600;
}
.prisa-benefits-popupinfo {
    background: #CCD2E9;
    padding: 70px 0px;
}

.prisa-benefits-popupinfo .post-inner h3{
    text-transform: none;
    color: #011E93;
    font-weight: 600;
    font-size: 32px;
}


.page-template-prisa-benefits div.prisa-popup{
   padding-top: 0px; 
}

