/* Header CSS Start of New Website */
.header, .footer {display: none !important;}
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap');


/* ---------- GENERAL RESET ---------- */
h1,h2,h3,h4,h5,h6,a,p,span { font-family: "Montserrat", sans-serif !important; margin:0 !important; }
header { display:block; box-sizing:border-box; }
.header-transition { transition: all 0.3s ease; }
header section { margin:0; padding:0.25% 6% 0.25% 6%; }

.container-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    flex-wrap: wrap;
}

/* ---------- LOGO ---------- */
.logo { width: 6.394rem !important; max-width:100%; }
.logo img { width: 100%; height:auto; display:inline-block; vertical-align:middle; }

/* ---------- BURGER ---------- */
.burger-menu { display: none; font-size:28px; cursor:pointer; color:#3d4955; }

/* ---------- MAIN MENU ---------- */
.menu .menu-container nav ul.main-menu { display:flex; gap:2.25rem; list-style:none; padding:0; margin:0; }
.menu .menu-container nav ul.main-menu > li > a {
    font-size: 1.5rem; font-weight: bold; color:#3d4955; text-decoration:none;
    display:flex; align-items:center; padding:12px 0; line-height:1.2; transition: color 0.3s;
}
.menu .menu-container nav ul.main-menu > li > a:hover { color:#2eb24c; }

/* ---------- SUBMENU ---------- */
.menu-parent nav ul.main-menu > li.menu-item-has-children { position:relative; }

/* ---------- DESKTOP ---------- */
@media(min-width:992px){
    .menu-parent nav ul.main-menu > li.menu-item-has-children > .sub-menu {
        position:absolute; top:100%; left:0; display:flex; flex-direction:column;
        min-width:300px; padding:10px 0; list-style:none; background:#fff;
        box-shadow:0 0 20px rgba(0,0,0,0.1); opacity:0; pointer-events:none; transition:opacity 0.4s ease; z-index:9999;
        /* min-width:300px; */
        width: 32rem;
    }
    .menu-parent nav ul.main-menu > li.menu-item-has-children:hover > .sub-menu {
        opacity:1; pointer-events:auto;
    }
    .menu-parent nav ul.main-menu li.menu-item-has-children > .sub-menu li.menu-item-has-children {
        position: relative;
    }

    .menu-parent nav ul.main-menu li.menu-item-has-children > .sub-menu li.menu-item-has-children > .sub-menu {
        position:absolute; top:0; left:100%; padding:10px 0;
        background:#fff; box-shadow:0 0 20px rgba(0,0,0,0.1); opacity:0; pointer-events:none; transition:opacity 0.4s ease;
        list-style: none;
        /* min-width:300px; */
        width: 32rem;
    }
    .menu-parent nav ul.main-menu li.menu-item-has-children > .sub-menu li.menu-item-has-children:hover > .sub-menu {
        opacity:1; pointer-events:auto;
    }

    .menu-parent nav ul.main-menu li a { font-size:1.4rem; line-height:1.4; padding:8px 15px;
        color:#3d4955; font-weight:bold; text-decoration:none; display:flex; justify-content:space-between; align-items:center; transition:color 0.3s;
    }
    .menu-parent nav ul.main-menu li a:hover { color:#2eb24c; }

    /* Arrow icons desktop */
    .menu-parent nav ul.main-menu li.menu-item-has-children > a .wpr-sub-icon { font-size:1.5rem; margin-left:5px; display:inline-flex; align-items:center; transition:0.3s; margin-left: 9px; text-indent: 0; margin-top: -1px;}
    /* Second-level arrow right */
    .menu-parent nav ul.main-menu li.menu-item-has-children > .sub-menu li.menu-item-has-children > a .wpr-sub-icon { transform: rotate(270deg); }
}

/* ---------- LOGIN ---------- */
.login_box { padding:0; display:flex; align-items:center; }
.login_wrapper { display:flex; flex-direction:row; align-items:center; gap:8px; transition:all 0.3s; }
.login-box-icon svg { width:15px; height:auto; transition: all 0.3s ease;}
.login-box-title {font-size: 1.125rem;}
.login-box-title a { font-size:1.5rem; font-weight:700; color:#3d4955; text-decoration:none; transition: all 0.3s ease; }
.login_wrapper:hover .login-box-title a { color:#2eb24c !important; }
.login_wrapper:hover svg path { fill:#2eb24c !important; }

/* ---------- MOBILE ---------- */
@media(max-width:991px){
    .login_menu { display:none !important; }
    .burger-menu { display:block; }
    .container-new { justify-content:space-between; }
    .container-new .menu {width:100%;}
    .menu .menu-container nav ul.main-menu {gap: 0rem;}
    /* .menu .menu-container nav ul.main-menu .menu-item ul .menu-item {padding: 5px; margin-bottom: 1rem !important;} */
    .menu-container { width:100%; overflow:hidden; max-height:0; transition:max-height 0.5s ease; }
    .menu-container.active { max-height:2000px; } /* enough for nested menus */

    .menu .menu-container nav ul.main-menu > li > a, .sub-menu li > a {font-size: 2.2rem !important; padding: 20px 0 !important;}

    ul.main-menu { flex-direction:column; gap:0; width:100%; }
    ul.main-menu > li > a {
        display:flex; justify-content:space-between; align-items:center;
        font-size:1.5rem; font-weight:bold; color:#3d4955; padding:10px; border-bottom:1px solid #e5e5e5;
    }
    ul.main-menu > li > a:hover { color:#2eb24c; }

    .sub-menu { list-style:none; padding-left:0; max-height:0; overflow:hidden; transition:max-height 0.5s ease; }
    .menu-item-has-children.open > .sub-menu { max-height: none; }
    .menu-item-has-children > a .wpr-sub-icon { margin-left:auto; transition: transform 0.3s; }
    .menu-item-has-children.open > a .wpr-sub-icon { transform: rotate(180deg); }

    /* Submenu links same style as parent */
    .sub-menu li > a { font-size:1.5rem; font-weight:bold; color:#3d4955; padding:10px; border:none; padding-left: 0px; display:flex;}
    .sub-menu li > a:hover { color:#2eb24c; }

    /* All submenus inside a menu-item-has-children */
    .menu-item-has-children > .sub-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.9s ease;
    }

    /* When parent li has 'open' class, expand its submenu */
    .menu-item-has-children.open > .sub-menu {
        max-height: 1000px; /* large enough for all nested links */
    }
}

@media (max-width: 450px) {
    .menu .menu-container nav ul.main-menu > li > a, .sub-menu li > a {
        font-size: 1.5rem !important;
        padding: 15px 0 !important;
    }
}

/* ---------- FADE IN ---------- */
.fadeIn { animation: fadeIn 0.4s ease-in-out; }
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
/* Header CSS End of New Website */

/* HomePage CSS Start */
/* HomePage Video CSS Start */
.home-wrapper {box-sizing: border-box;}
.homevideo {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    position: relative;
    /* background-color: #3D4B56; */
    box-sizing: border-box;
}
.homevideo .background-video-container {
    pointer-events: none;
    transition: opacity 1s;
    direction: ltr;
    inset: 0;
    overflow: hidden;
    position: absolute;
    z-index: 0;
    box-sizing: border-box;
}
.homevideo .background-video-container video {
    -o-object-fit: cover;
    object-fit: cover;
    inset-block-start: 50%;
    inset-inline-start: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    border: none;
    line-height: 1;
    margin: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    display: inline-block;
    object-fit: contain;
    overflow-clip-margin: content-box;
    overflow: clip;
}
.homevideo .background-overlay {
    opacity: 0.6;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    inset: 0;
    position: absolute;
    box-sizing: border-box;
}
.homevideo .video-container{
    min-height: 64rem;
    align-items: center;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    box-sizing: border-box;
}
.homevideo .video-container .text-wrapper{
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 0 !important;
    display: flex;
    align-content: flex-start;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
.homevideo .video-container .text-wrapper .content{
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
    position: absolute !important;
    z-index: 2;
    right: 12.5rem;
    width: 66.125rem !important;
    background: #ffffffe5;
    padding: 5.7rem 6.75rem;
    transform: translateY(-50%);
}
.homevideo .video-container .text-wrapper .content .section{
    margin-left: auto;
    margin-right: auto;
    position: relative;
    box-sizing: border-box;
}
.homevideo .video-container .text-wrapper .content .section .heading-title {
    margin-bottom: 1.5rem !important;
    font-size: 3rem;
    font-weight: 500 !important;
    color: #3d4955 !important;
    text-align: center;
    line-height: 4rem;
    font-family: "Montserrat", sans-serif !important;
    padding: 0 10px;
    box-sizing: border-box;
}
.homevideo .video-container .text-wrapper .content .section .heading-title strong {
    font-weight: bolder;
}
.homevideo .video-container .text-wrapper .content .section p {
    margin-bottom: 1.5rem !important;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 100;
    text-align: center;
    line-height: 150%;
    color: #5c6773
}
.homevideo .video-container .text-wrapper .content .section .main-login-div {
    text-align: center;
}
.homevideo .video-container .text-wrapper .content .section .main-login-div .main-login-button {
    padding: 1.063rem 5.219rem;
    background: #0774b7;
    color: #fff;
    border-radius: 0;
    font-size: 1.5rem;
    display: inline-block;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}
.homevideo .video-container .text-wrapper .content .section .main-login-div .main-login-button:hover {
    background: #2eb24c !important;
    color: white !important;
}

/* ---------- MOBILE ---------- */
@media(max-width:991px){
    .homevideo .video-container .text-wrapper .content{
        width: 60% !important;
        padding: 30px;
    }
    .homevideo .video-container .text-wrapper .content .section .heading-title {
        font-size: 2.5rem;
    }
    .homevideo .video-container .text-wrapper .content .section p {
        font-size: 1.3rem;
    }
    .homevideo .video-container .text-wrapper .content .section .main-login-div .main-login-button {
        font-size: 1.2rem;
    }
    .homevideo .video-container {
        min-height: 54rem;
    }
}

@media(max-width:780px){
    .homevideo .video-container .text-wrapper .content{
        width: 90% !important;
        padding: 15px;
        right: 4.5rem;
    }
    .homevideo .video-container {
        min-height: 44rem;
    }
}

@media(max-width:600px){
    .homevideo .background-video-container video {
        width: 2188.02px;
        height: 1230.76px;
        object-fit: cover;
    }
    .homevideo .video-container {
        min-height: 84rem;
    }
    .homevideo .video-container .text-wrapper .content{
        padding: 30px 30px 30px 30px;
        right: 2.5rem;
    }
    .homevideo .video-container .text-wrapper .content .section .heading-title {
        font-size: 4rem;
        line-height: 4.5rem;
    }
    .homevideo .video-container .text-wrapper .content .section p {
        font-size: 2.3rem;
    }
    .homevideo .video-container .text-wrapper .content .section .main-login-div .main-login-button {
        font-size: 2.2rem;
    }
}

@media(max-width:450px){
    .homevideo .background-video-container video {
        width: 1488.02px;
        height: 730.76px;
        object-fit: cover;
    }
    .homevideo .video-container {
        min-height: 64rem;
    }
    .homevideo .video-container .text-wrapper .content{
        padding: 25px;
        right: 1.5rem;
    }
    .homevideo .video-container .text-wrapper .content .section .heading-title {
        font-size: 3rem;
        line-height: 3.5rem;
    }
    .homevideo .video-container .text-wrapper .content .section p {
        font-size: 1.8rem;
    }
    .homevideo .video-container .text-wrapper .content .section .main-login-div .main-login-button {
        font-size: 1.7rem;
    }
}
@media(max-width:370px){
    .homevideo .video-container .text-wrapper .content .section .heading-title {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    .homevideo .video-container .text-wrapper .content .section p {
        font-size: 1.3rem;
    }
    .homevideo .video-container .text-wrapper .content .section .main-login-div .main-login-button {
        font-size: 1.2rem;
    }
}
/* HomePage Video CSS End */

/* Find a Chartered Accountant Start */
.find-ca {
    position: relative;
    margin-top: -7.5rem;
    z-index: 2;
    padding-left: 11.8rem;
    padding-right: 11.8rem;
    display: block;
}
.find-ca-wrapper {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 3.656rem 4.438rem;
    box-shadow: 0px 0px 36.6px 0px #0000001a;
    background: white;
    box-sizing: border-box;
}
.find-ca-wrapper .main{
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
    width: 100%;
    display: flex;
    min-height: 1px;
    position: relative;
}
.find-ca-wrapper .main .content {
    padding: 0 !important;
    align-content: flex-start;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
.find-ca-wrapper .main .content .section_title {
    margin-bottom: 1.5rem !important;
    text-align: center;
}
.find-ca-wrapper .main .content .section_title .heading-title {
    line-height: 1;
    box-sizing: border-box;
    font-size: 3.875rem !important;
    color: #3d4955 !important;
    font-weight: 700 !important;
    text-align: center;
}
.find-ca-wrapper .main .content .section_form {
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
    width: 100%;
    position: relative;
    box-sizing: border-box;
}
.find-ca-wrapper .main .content .section_form .form_parent{
    box-sizing: border-box;
}
.find-ca-wrapper .main .content .section_form .form_parent form{
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: flex-end;
    margin-top: 1rem;
    box-sizing: border-box;
}
.columnForm label {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.3rem;
    box-sizing: border-box;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}
.radios {
    display: flex;
    gap: 1.3rem;
    box-sizing: border-box;
}
.radioRow {
    padding: 1rem 2.25rem;
    border: 0.063rem solid #d9d9d9;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 4.813rem;
}
.radioRow input {
    width: 1.45rem;
    height: 1.45rem;
    border: 0.063rem solid #3d4955;
    box-sizing: border-box;
    padding: 0;
    outline: 0;
    margin: 0px;
}
.columnForm .radios label {
    margin: 0;
}
.columnForm input[type="text"] {
    padding: 1rem 2.25rem;
    border-radius: 0;
    border: 0.063rem solid #d9d9d9;
    height: 4.813rem;
    transition: all .3s;
    width: 100%;
}
.columnForm ::placeholder {
  color: #cdcacaff;
  opacity: 1; /* Firefox */
  font-weight:100;
}
.columnForm ::-ms-input-placeholder { /* Edge 12 -18 */
  color: #cdcacaff;
  font-weight:100;
}
.columnSubmit button {
    padding: 1.063rem 5.219rem;
    border-radius: 0;
    background: #0774b7 !important;
    font-size: 1.5rem;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 500 !important;
    transition: all 0.4s ease-out;
    color: white;
    border: none;
    height: 4.813rem;
    cursor: pointer;
}
.columnSubmit button:hover {
    background: #2eb24c !important;
}

/* ---------- MOBILE ---------- */
@media(max-width:991px){
    .find-ca-wrapper .main .content .section_title .heading-title{font-size: 2.875rem !important;}
    .columnForm label {font-size: 1.2rem;}
    .radioRow {padding: 1rem 1.5rem; height: 3.813rem;}
    .columnForm input[type="text"] {padding: 1rem 1.5rem; height: 3.813rem;}
    .columnSubmit button {padding: 1.063rem 3.219rem; height: 3.813rem;}
    .columnForm ::placeholder {font-size: 1.2rem;}
}
@media(max-width:600px){
    .find-ca-wrapper .main .content .section_form .form_parent form, .radios {
        flex-direction: column;
        gap: 2rem;
    }
    .find-ca {
        padding-top: 7rem;
        margin-top: 0rem;
        padding-left: 3.5rem;
        padding-right: 3.5rem;
    }
    .find-ca-wrapper .main .content .section_title .heading-title {
        font-size: 3.575rem !important;
        line-height: 5rem;
        margin-bottom: 5rem !important;
    }
    .columnForm {
        width: 100%;
    }
    .columnForm label, .columnForm input[type="text"]::placeholder {
        font-size: 2.2rem;
        margin-bottom: 2.2rem;
    }
    .radioRow {
        padding: 2rem 2.5rem;
        height: 6.813rem;
    }
    .radioRow input {
        width: 2.45rem;
        height: 2.45rem;
    }
    .columnForm input[type="text"] {
        padding: 4rem 2.5rem;
        height: 5.813rem;
    }
    .columnSubmit {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }
    .columnSubmit button {
        padding: 1rem 8rem;
        font-size: 2rem;
        height: 6rem;
    }
}
@media(max-width:450px){
    .find-ca-wrapper .main .content .section_form .form_parent form, .radios {
        flex-direction: column;
        gap: 1rem;
    }
    .find-ca {
        padding-top: 5rem;
        margin-top: 0rem;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    .find-ca-wrapper .main .content .section_title .heading-title {
        font-size: 2.575rem !important;
        line-height: 3rem;
        margin-bottom: 3rem !important;
    }
    .columnForm {
        width: 100%;
    }
    .columnForm label, .columnForm input[type="text"]::placeholder {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    .radioRow {
        padding: 1rem 1.3rem;
        height: 4.813rem;
    }
    .radioRow input {
        width: 1.45rem;
        height: 1.45rem;
    }
    .columnForm input[type="text"] {
        padding: 2rem 1.5rem;
        height: 3.813rem;
    }
    .columnSubmit {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }
    .columnSubmit button {
        padding: 0.8rem 4rem;
        font-size: 1.3rem;
        height: 4rem;
    }
}

@media(max-width:370px){
    .find-ca {
        padding-top: 3rem;
        margin-top: 0rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .find-ca-wrapper {
        padding: 2.656rem 1.438rem;
    }
    .find-ca-wrapper .main .content .section_title .heading-title {
        font-size: 1.575rem !important;
        line-height: 1.8rem;
        margin-bottom: 1.8rem !important;
    }
    .columnForm label, .columnForm input[type="text"]::placeholder {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    .radioRow {
        padding: 1.2rem 1rem;
        height: 4.113rem;
    }
}
/* Find a Chartered Accountant End */


/* Events section start */


.event-section{
    padding-bottom: 60px;
}

.eventsSec {
  padding: 60px 0;
}

.event-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.event-image,
.event-content {
  flex: 0 0 50%;
  max-width: 50%;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px;
}

.event-content h3 {
    margin-bottom: 10px;
    font-size: 3.25rem;
    font-weight: 700;
    margin-bottom: 6.25rem !important;
    width: 90%;
    position: relative;
}

.event-content h3::before {
    content: "";
    height: 0.125rem;
    width: 6.938rem;
    background: #000;
    display: block;
    position: absolute;
    left: 0;
    bottom: -3.75rem;
    transform: translateY(-50%);
}


.event-content p {
    color: #777;
}


/* pagination ko image se neeche lao */
.tec-events-carousel {
  position: relative;
  padding-bottom: 40px; /* dots ke liye space */
}

.tec-events-carousel .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

/* dots base style */
.tec-events-carousel .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.5);
  opacity: 1;
  margin: 0 6px !important;
}

/* active dot */
.tec-events-carousel .swiper-pagination-bullet-active {
  background: #000;
  border-color: #000;
}




@media (max-width: 768px) {
  .event-inner {
    flex-direction: column;
  }

  .event-image,
  .event-content {
    max-width: 100%;
    flex: 0 0 100%;
  }
}


/* Event Section End */




/* Home sections start */

.home-section{
    padding-left: 11.8rem;
    padding-right: 11.8rem;
}

.grey-section{
    background: #f8f8f8;
}

.bottom-pad{
    padding-bottom: 20.8rem;
}

.home-headings h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-weight: 700;
    margin: 40px 0;
    text-align: center;
    padding-top: 8.25rem;
    padding-bottom: 4.25rem;
    font-size: 36px;
  }

  .home-headings h2::before,
  .home-headings h2::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: #000000ff;
    max-width: 75px;
  }


.heading-title-para {
    text-align: center;
    margin-bottom: 30px;
}

.heading-title-para p {
    margin-top: -26px !important;
}


  /* Mobile optimization */
  @media (max-width: 480px) {

    .home-headings h2::before,
    .home-headings h2::after {
      max-width: 60px;
    }

    .home-section{
        padding-left: 10px;
        padding-right: 10px;
    }

    .home-card-content{
        padding: 20px;
        position: relative;
        width: 100% !important;
        margin-bottom: 26px;
    }

    .bottom-pad{
        padding-bottom: 60px;
    }
  }



    @media(max-width:991px){
        
        
    .inner-page-width {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.sidebar {
    padding: 0 20px !important;
}


    
    .home-section{
        padding-left: 10px;
        padding-right: 10px;
    }

    .home-card-content {
        padding: 20px !important;
        position: relative !important;
        bottom: 0 !important;
        width: 100% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .bottom-pad{
        padding-bottom: 60px;
    }

    .resource-box {
        padding-bottom: 20px;
    }

    .home-headings h2,
    .event-content h3,
    h3.home-card-title{
        font-size: 26px !important;
    }

    .resource-title h3{
        font-size: 22px;
    }

  }


    /* Mobile optimization */
  @media (max-width: 480px) {

    .home-headings h2::before,
    .home-headings h2::after {
      max-width: 60px;
    }
}
/* Home sections END */

/* Home Card */
.home-card-content {
    padding: 2.625rem 8.406rem;
    background: #ffffffe5;
    box-shadow: 0px 0px 18.5px 0px #00000014;
    position: absolute;
    bottom: -10rem;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    height: 36rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

img.home-card-image {
    width: 100%;
    filter: brightness(100%) contrast(100%) saturate(53%) blur(0px) hue-rotate(0deg);
}

img.home-card-image:hover {
    filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
    transition: all 0.3s ease;
}

h3.home-card-title{
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem !important;
    position: relative;
}

h3.home-card-title::before {
    content: "";
    width: 9.976rem;
    height: 0.150rem;
    background: #121212;
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

p.home-card-description {
    font-size: 15px;
    line-height: 150%;
    text-align: center;
    padding: 15px 30px;
    color: #00000085;
}

.home-card-benefits-title h4 {
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    padding:10px;
    text-underline-offset: 5px;
}


.home-card-btn {
    padding: 1.063rem 5.219rem;
    background:  #2eb24c;
    color: #fff;
    border-radius: 0;
    font-size: 1.5rem;
    display: inline-block;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}
.home-card-btn:hover {
    background: #0774b7 !important;
    color: white !important;
}


.home-card-btn-div {
    margin-top: 20px;
}

@media screen and (min-width: 991px) and (max-width: 1200px) {
  .home-card-content{
    padding: 2.625rem 2.406rem !important;
    bottom: -18rem !important;
  }
}

/* 
.spacer {
    height: 160px;
} */


/* ICAP Resources */

.resources {
    padding-bottom: 60px;
}


.resource-image img {
    width: 100%;
}


.resource-title h3 {
    font-size: 24px;
    padding: 20px 0;
    font-weight: 600;
    color: #3d4955;
}

.resource-description p {
    font-size: 15px;
    color: #777;
}


.resource-btn-div {
    margin: 20px 0;
}

.resource-btn {
    padding: 1.063rem 5.219rem;
    background: #0774b7;
    font-size: 1.5rem;
    color: #fff;
    border-radius: 0;
    display: inline-block;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}

.resource-btn:hover {
    background: #2eb24c !important;
    color: white !important;
}


@media (max-width: 1200px) and (min-width: 992px) {
  .resources .row > [class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
  }
}




/* VIDEO BANNER FOR PAGES*/


.video-banner{
    margin-bottom: 50px;
}

.video-banner.with-title {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.video-banner.with-title video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}


.video-banner.with-title::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #00000042 !important;
    z-index: 1 !important;
}

.video-banner-content{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    text-align: center;
    padding: 0 20px;
}


.video-banner-title {
    color: white;
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}


/* VIDEO BANNER END */


/* INNER PAGE CSS */

.inner-page-width {
    padding-left: 11.8rem;
    padding-right: 11.8rem;
}


.content-div {
    border-left: 1px solid #ccc;
    padding: 50px;
    width: 70%;
}


.content-div .entry-title {
    margin: 30px 0px; 
    padding-bottom: 10px; 
    font-family: "Montserrat", sans-serif !important;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #333c4e;
    font-size: 36px;
    line-height: 46px;
}
.content-div p {
    font-size: 15px;
    color: #3a3a3a;
    line-height: 36px;
    margin-bottom: 25px;
}

.content-div .img {
    margin:20px 0px;
}

.content-div img{
    max-width: 100%;
}

.content-div ul, .content-div ol {
    margin-bottom: 20px;
}

.content-div ul li, .content-div ol li{
    font-size: 16px;
    color: #3a3a3a; 
    line-height: 30px;
}


/* Internal Pages CSS */


.inner-pages p {
    font-size: 15px;
    font-family: "Montserrat", sans-serif !important;
    color: #3d4955d9;
    line-height: 28px;
    margin-bottom: 25px;
}

.inner-pages p > strong {
    font-weight: 700;
    color: #000;
}


.inner-pages ul, .post-con ol {
    margin-bottom: 20px;
}
.inner-pages ul li, .post-con ol li{
    font-size: 15px;
    color: #3a3a3a;
    line-height: 20px;
}



/* INNER PAGE CSS END */



/* Sidebar Pages CSS */

.sidebar {
    border-top: 1px solid #DDD;
    width: 30%;
    height: auto;
    overflow-y: scroll;
    padding: 0;
}

.sidebar ul {list-style: none; padding: 0px;}
.sidebar ul li {border-bottom: 1px solid #DDD;}
.sidebar ul li a {color: #58595b; font-size: 12px; display: block; letter-spacing: .8px; position: relative; padding: 15px 10px 12px 15px; font-family: "Montserrat", sans-serif !important;
 font-weight: 600;}


.sidebar ul li a:hover {
    text-decoration: none;
    background: #A4F2C0;
    color: #000 !important;
}


 .sidebar .current_page_item > a, .sidebar .current_page_item > a:hover {
    background: #2eb24c; 
    color: #FFFFFF !important; 
    transition: all 0.4s ease-out;
 }

 /*
.sidebar a::before {
    content: "";
}

.sidebar a::before {
    position: absolute;
    height: 5px;
    background: #0db14b;
    left: 0;
    bottom: 0;
    width: 0;
    transition: width .3s;
}
.sidebar a:focus::before, html:not(.d-ios) .sidebar a:hover::before {
    width: 100%;
} */

.sidebar .page_item_has_children {}
.sidebar .page_item_has_children ul {margin-bottom: 0px;}
.sidebar .page_item_has_children ul li {}
.sidebar .page_item_has_children ul li:last-child{border-bottom: none;}
.sidebar .page_item_has_children ul li a {padding-left: 30px;}
/* .sidebar .current_page_ancestor .page_item_has_children ul li {border-bottom:0px;} */
/* .sidebar .current_page_ancestor .page_item_has_children ul {background: #f3f2f2;} */
.sidebar .current_page_ancestor .page_item_has_children ul li a {padding-left: 45px;}

.sidebar .current_page_ancestor .page_item_has_children .page_item_has_children ul {background: #e0dfdf;}
.sidebar .current_page_ancestor .page_item_has_children .page_item_has_children ul li a {padding-left: 60px;}

.sidebar .current_page_ancestor .page_item_has_children .page_item_has_children .page_item_has_children ul {background: #b3b3b3;}
.sidebar .current_page_ancestor .page_item_has_children .page_item_has_children .page_item_has_children ul li a {padding-left: 75px;}

.sidebar .current_page_ancestor .page_item_has_children .page_item_has_children .page_item_has_children .page_item_has_children ul {background: #e0dfdf;}
.sidebar .current_page_ancestor .page_item_has_children .page_item_has_children .page_item_has_children .page_item_has_children ul li a {padding-left: 90px;}




/* Internal Single Post CSS */
.post-con {}
.bg-padding {background: #f5f5f5; padding: 40px 20px !important;}
.main-content {background: #fff; border: 1px solid #e1e1e1; padding: 30px 40px;}
.main-content2 {background: #fff;border: 1px solid #e1e1e1;padding: 0px 5px;}
.post-con .entry-title {margin: 0px; border-bottom: 1px solid #ccc; padding-bottom: 10px; font-family: "Montserrat", sans-serif !important; font-weight: 700; letter-spacing: 2px; color: #333c4e; font-size: 36px; line-height: 46px;}
.post-con .entry-meta{border-bottom: 1px solid #ccc; padding: 10px 0px; font-size: 14px; color: #999999;}
.post-con .entry-content {margin-top: 20px;}

.post-con p {
    font-size: 15px;
    color: #3d4955d9;
    line-height: 28px;
    margin-bottom: 25px;
    font-family: "Montserrat", sans-serif !important;
}
.post-con img{max-width: 100%;}
.entry-content h2, .entry-content h3{font-family: "Montserrat", sans-serif !important; font-weight: 700;}
.entry-content h2 {font-size: 28px;}
.entry-content h3 {font-size: 24px;}



/* IMAGE BANNER FOR POSTS*/

.featured-image-banner.with-title {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.featured-image-banner.with-title img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}


.featured-image-banner.with-title::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #00000042 !important;
    z-index: 1 !important;
}

.featured-image-banner .banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    text-align: center;
    padding: 0 20px;
}


.featured-image-banner .banner-title {
    color: white;
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}



/* Category Page CSS */
.post-cat article{margin-bottom: 30px;}
.post-cat .page-title{font-family: "Montserrat", sans-serif !important; font-weight: bold;}
.post-cat .entry-title{font-size: 26px; line-height: 36px;}
.post-cat .entry-title a{color: #333c4e; font-family: "Montserrat", sans-serif !important;}
.post-cat .entry-title a:hover{color: #001a33;}
.post-cat .entry-content{margin: 10px 0px;}
.post-cat .entry-footer{border-bottom: 1px solid #eee; padding: 10px 0px; font-size: 14px; color: #999999;}





table {
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: .9em;
    margin-block-end:15px;width: 100%
}

table td,table th {
    border: 1px solid hsla(0,0%,50%,.502);
    line-height: 1.5;
    padding: 15px;
    vertical-align: top
}

table th {
    font-weight: 700
}

table tfoot th,table thead th {
    font-size: 1em
}

table caption+thead tr:first-child td,table caption+thead tr:first-child th,table colgroup+thead tr:first-child td,table colgroup+thead tr:first-child th,table thead:first-child tr:first-child td,table thead:first-child tr:first-child th {
    border-block-start:1px solid hsla(0,0%,50%,.502)}

table tbody>tr:nth-child(odd)>td,table tbody>tr:nth-child(odd)>th {
    background-color: hsla(0,0%,50%,.071)
}

table tbody tr:hover>td,table tbody tr:hover>th {
    background-color: hsla(0,0%,50%,.102)
}

table tbody+tbody {
    border-block-start:2px solid hsla(0,0%,50%,.502)}

@media(max-width: 767px) {
    table table {
        font-size:.8em
    }

    table table td,table table th {
        line-height: 1.3;
        padding: 7px
    }

    table table th {
        font-weight: 400
    }
}



i.fa-regular.fa-file-pdf {
    font-size: 20px;
}



@media (max-width: 991px) {

    .sidebar,
    .content-div {
      width: 100%;
    }

  }



/* EVENT CALENDAR */


.tribe-events-c-subscribe-dropdown {
    display: none !important;
}


.epta-countdown-timer {
    display: none !important;
}











  

/* Footer Start */
footer {color: #626262;}
footer .icapfooter {width: 1310px; border-top: 1px solid #d7d7d7;}
footer .container .footer-logo {background: none; padding: 50px 0px 20px 0px;}
footer .container .footer-logo .logo-img{ margin-bottom: 1.5rem !important;}
footer .container .footer-logo p{color: #626262; padding-bottom: 1.5rem; letter-spacing: 0.1rem; font-size: 14px;}
footer .container .footer-logo .elementor-icon-list-items{padding: 0; display: flex; flex-direction: row; gap: 1.5rem; list-style-type: none; margin: 0; box-sizing: border-box;}
footer .container .footer-logo .elementor-icon-list-items .elementor-icon-list-item{display: flex; padding: 0; position: relative; background: transparent; border: 0; outline: 0; vertical-align: baseline;}
/* footer .container .footer-logo .elementor-icon-list-items .elementor-icon-list-item svg{ */
footer .footer-social .elementor-icon-list-item svg {
    fill: #3D4955;
    transition: fill 0.4s;
    height: 1.5rem;
    width: 1.5rem;
}

 ul li a:hover {
    color: #2eb24c !important;
}

/* On hover */
footer .footer-social .elementor-icon-list-item a:hover svg {
    fill: #2eb24c;
}

.footer-widget-column .head_office {padding-bottom: 1.5rem !important;}
.footer-widget-column .head_office p {padding-bottom: 0rem !important; color: #3d4955 !important;}
.footer-widget-column .head_office p strong {font-weight: bolder;}
.footer-widget-column .head_office .address{font-size: 14px;}


.footer-widget-column .regional_office {padding-bottom: 1.5rem !important;}
.footer-widget-column .regional_office p {padding-bottom: 0rem !important; color: #3d4955 !important;}
.footer-widget-column .regional_office p strong {font-weight: bolder;}
.footer-widget-column .regional_office p a
{
    font-size: 14px;
    letter-spacing: 0.1rem;
    color: #626262;
}

.footer-widget-column .contact_details {padding-bottom: 1.5rem !important;}
.footer-widget-column .contact_details p {padding-bottom: 0rem !important; color: #3d4955 !important;}
.footer-widget-column .contact_details p strong {font-weight: bolder;}
.footer-widget-column .contact_details p a {
    letter-spacing: 0.1rem;
    color: #626262;
}

footer .container .footer-logo h4{
    font-size: 1.8rem !important;
    color: #626262 !important;
    line-height: 150%;
    margin-bottom: 1.125rem !important;
    font-weight: 700;
}
footer .container .footer-logo ul li a{
    color: #626262 !important;
    font-family: "Montserrat", sans-serif !important;
    font-size: 1.5rem !important;
    line-height: 2.688rem;
    font-weight: 400 !important;
    display: flex;
    box-shadow: none;
    text-decoration: none;
    box-sizing: border-box;
    background-color: transparent;
    margin: 0 !important;
    letter-spacing: 0.03rem;
}
footer .container .footer-logo ul li a:hover {
    color: #2eb24c !important;
}

footer .container .copyright {padding: 30px 0px 50px 0px; border-top: 1px solid #d7d7d7;}
footer .container .copyright p {font-family: "Montserrat", sans-serif !important; color: #626262; font-weight: 400 !important; line-height: 1.6; letter-spacing: 0.4px;}

@media(max-width:1395px){
footer .icapfooter {width: 1070px;}
}

@media(max-width:1100px){
footer .icapfooter {width: 970px;}
}

/* ---------- MOBILE ---------- */
@media(max-width:991px){
footer .icapfooter {width: 770px;}
}
@media(max-width:768px){
    footer .icapfooter {width: 90%;}
    .footer-widget-column {margin-bottom: 2.5rem;}
}
@media(max-width:600px){
    footer .container .footer-logo p {
        font-size: 2.89rem;
        line-height: 4.5rem;
        padding-bottom: 2.5rem !important;
    }
    footer .container .footer-logo .elementor-icon-list-items {
        gap: 2.5rem;
    }
    footer .container .footer-logo .elementor-icon-list-items .elementor-icon-list-item svg {
        height: 3rem;
        width: 3rem;
    }
    footer .container .footer-logo h4 {
        font-size: 3.3rem !important;
        margin-bottom: 2.5rem !important;
    }
    footer .container .footer-logo ul li a {
        font-size: 2.5rem !important;
        line-height: 5.688rem;
        letter-spacing: 0.01rem;
    }
    .footer-widget-column {
        margin-bottom: 60px;
    }
    .footer-widget-column .head_office p {
        padding-bottom: 0rem !important;
    }
    .footer-widget-column .head_office .address {
        font-size: 3rem;
    }
    .footer-widget-column .regional_office p a{
        font-size: 3rem;
    }
    footer .container .copyright p {
        font-size: 2.5rem;
    }
}
@media(max-width:450px){
    footer .container .footer-logo p {
        font-size: 1.89rem;
        line-height: 2.5rem;
        padding-bottom: 1.5rem !important;
    }
    footer .container .footer-logo .elementor-icon-list-items .elementor-icon-list-item svg {
        height: 2rem;
        width: 2rem;
    }
    footer .container .footer-logo ul li a {
        font-size: 1.5rem !important;
        line-height: 3.688rem;
        letter-spacing: 0.01rem;
    }
    .footer-widget-column {
        margin-bottom: 30px;
    }
    footer .container .footer-logo h4 {
        font-size: 2.3rem !important;
        margin-bottom: 1.5rem !important;
    }
    .footer-widget-column .head_office .address {
        font-size: 1.5rem;
    }
    .footer-widget-column .regional_office p a {
        font-size: 1.5rem;
    }
    /* footer .container .footer-logo p {
        font-size: 1.5rem;
        line-height: 2rem;
        padding-bottom: 1rem !important;
    } */
    footer .container .copyright p {
        font-size: 1.5rem;
    }
}
@media(max-width:370px){

}
/* Footer End */

/* HomePage CSS End */