body {
    font-size: 1rem;
    font-family: "Noto Sans", sans-serif !important;
    font-weight: 400;
    color: #000000;
    background-color: #f5fffe;
    overflow-x: hidden;
    padding-top: 33px;
}

html {
    overflow-x: hidden;
}

.ovhidden {
    overflow: hidden;
}


a {
    color: #1A1A1A;
    text-decoration: none !important;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    font-weight: 400;
}

a:hover {
    text-decoration: none !important;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.bg-white {
    background: #fff;
}

.bg-primary {
    background-color: #006F65 !important;
}

/* .fa, .fa-brands, .fa-classic, .fa-regular, .fa-sharp, .fa-solid, .fab, .far, .fas{
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
} */
ul {
    padding-left: 0px;
    list-style-type: none;
    margin: 0;
}

img {
    display: block;
    max-width: 100%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

img.loadimg {
    opacity: 0;
    transform: scale(.95);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

img.loadimg.fade {
    opacity: 1.0;
    width: 100%;
    transform: scale(1);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

button {
    border: none;
    cursor: pointer;
    outline: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
    font-weight: 700;
    color: #1e1e1e;
}

.h4,
.h5,
.h6,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.4;
    color: #0098dc;
}

/*
input{
    font-family: "Poppins", sans-serif;
}
   */

.text-justify {
    text-align: justify;
}

@media(min-width: 1366px) {
    .cmpad {
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media(max-width: 1366px) {
    .cmpad {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media(max-width: 991px) {
    .cmpad {
        padding-left: 40px;
        padding-right: 40px;
    }

}

@media(max-width: 767px) {
    .cmpad {
        padding-left: 15px;
        padding-right: 15px;
    }

}

@media(max-width: 575px) {
    html {
        font-size: 90%;
    }
}





@media(max-width: 767px) {

    .h1,
    h1 {
        font-size: 2.2rem;
    }

    .h2,
    h2 {
        font-size: 1.75rem;
    }
}

@media(max-width: 575px) {

    .h2,
    h2 {
        font-size: 1.5rem;
    }

    .h1,
    h1 {
        font-size: 2rem;
    }
}



@media(min-width:768px) {
    ::-webkit-scrollbar {
        width: 10px;
        height: 6px
    }

    ::-webkit-scrollbar-track {
        background-color: #eee
    }

    ::-webkit-scrollbar-thumb {
        background-color: #3a3a3a
    }

    ::-webkit-scrollbar-thumb:hover {
        background-color: #444
    }
}

.custscroll::-webkit-scrollbar,
.custscroll::-webkit-scrollbar-thumb {
    border-radius: 13px;
    width: 6px;
    height: 6px;
    background-clip: padding-box;
    background: transparent
}

.custscroll::-webkit-scrollbar-track {
    background: transparent
}

.custscroll:hover::-webkit-scrollbar-thumb {
    background-color: #ccc
}

.custscroll::-webkit-scrollbar-thumb:hover {
    background-color: #999
}


.custscrollA::-webkit-scrollbar {
    border-radius: 13px;
    width: 6px;
    height: 6px;
    background-clip: padding-box;
    background: transparent
}

.custscrollA::-webkit-scrollbar-track {
    background: transparent
}

.custscrollA::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 6px;
}

.custscrollA::-webkit-scrollbar-thumb:hover {
    background-color: #999
}


ul.social {
    display: flex;
    gap: 10px;
}

ul.social li {
    display: block;
}

ul.social li:last-child {
    margin-right: 0;
}

ul.social li a {
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    font-size: 0.875rem;
}

ul.social li a i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    font-size: .9rem;
    color: #fff;
    background-color: rgb(228 29 36 / 30%);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

ul.social li a:hover i {
    color: #fff;
    background-color: #e41d22;
}

p {
    margin-top: 0;
    color: #1e1e1e;
    font-size: 0.9rem;
    font-weight: 400;
}


.flexVcenter {
    display: flex;
    flex-flow: wrap;
    align-content: center;
}



@keyframes moveRight {
    0% {
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
    }

    50% {
        transform: translateX(5px);
        -webkit-transform: translateX(5px);
    }

    100% {
        transform: translate(0px);
        -webkit-transform: translate(0px);
    }
}

@keyframes moveLeft {
    0% {
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
    }

    50% {
        transform: translateX(-5px);
        -webkit-transform: translateX(-5px);
    }

    100% {
        transform: translate(0px);
        -webkit-transform: translate(0px);
    }
}

@keyframes moveDown {
    0% {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
    }

    50% {
        transform: translateY(5px);
        -webkit-transform: translateY(5px);
    }

    100% {
        transform: translate(0px);
        -webkit-transform: translate(0px);
    }
}

@keyframes moveUp {
    0% {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
    }
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/*PULSE*/
@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}



.btn {
    padding: 10px 15px;
    display: inline-block;
    font-weight: 500;
    text-align: center;
    border-radius: 6px;
    justify-content: center;

}

.mybtn-primary {
    position: relative;
    color: #006F65;
    font-size: 0.9rem;
    padding: 9px 15px;
    background: #FFC857;
    overflow: hidden;
    min-width: 124px;
    z-index: 1;
}

.mybtn-primary:hover {
    background: #006F65;
    color: #FFC857;
}



.mybtn-secondary {
    position: relative;
    color: #006F65;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 9px 15px;
    background: transparent;
    border: 1px solid #006F65;
    overflow: hidden;
    min-width: 137px;
    z-index: 1;
}

.mybtn-secondary:hover {
    color: #006F65;
    background: #FFC857;
    border: 1px solid #FFC857;
}



.mybtn-third {
    position: relative;
    color: #016795;
    font-size: 0.875rem;
    font-weight: 400;
    padding: 10px 15px;
    background: #ffffff;

    overflow: hidden;
    min-width: 128px;
    z-index: 1;
    height: 41px;
}

.mybtn-third::before {
    content: "";
    height: 300px;
    width: 300px;
    background: #016795;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.mybtn-third:hover {
    color: #fff;
}

.mybtn-third:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.clr-gld {
    color: #f9a91e;
    font-size: 1.3rem;
    font-weight: 600;
}

.morebtn {
    color: #000000;
    background: linear-gradient(#006f6500 59%, #009c8d73 0%);
    font-size: 0.85rem;
    padding: 0 3px;
    border-radius: 5px;
}

.morebtn:hover {
    color: #024868;
    background: linear-gradient(#006f6500 59%, #009c8d 0%);
}

.morebtn2 {
    background: linear-gradient(to right, #f5a720, #ffa200, #ce8200, #f5a720);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.875rem;
    background-size: 400% 400%;
    animation: gradient 5s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.outlinebtn:hover {
    color: #1d70bb;
    border: 1px solid #1d70bb;
}

.outlinebtn2 {
    color: #1D75BD;
    background: linear-gradient(to right, #fff, #fff, #1D75BD, #0EB3C1);
    background-size: 300% 100%;
    width: 135px;
}

.outlinebtn2:hover {
    color: #fff;
    background-position: 100% 0;
}

.mybtn-outline {
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
}

.btn.center {
    display: table;
    margin: auto;
}

.mybtn-group {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    margin: -5px;
}

.mybtn-group .mybtn-primary,
.mybtn-group .mybtn-secondary,
.mybtn-group .mybtn-third,
.mybtn-group .white-outline {
    margin: 5px;
}

.white-outline {
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    opacity: .75;
}

.white-outline:hover {
    opacity: 1;
    background: #fff;
}


.posrel {
    position: relative;
}

@media(max-width:575px) {
    .btn {
        font-size: .875rem;
    }
}


/*---------------------------------------*/
/*::::::::::::::::HEADER:::::::::::::::::*/
/*---------------------------------------*/
header {
    background-color: #e2fffccf;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
}

header.sticky {
    /* box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    background: #e3ffe8; */
    border-bottom: 0px solid transparent;
    height: 66px;
    display: flex;
    background: #ffffff;
    /* align-items: center; */
}

header.sticky .headmain {
    box-shadow: none;
    margin-top: 0;
}

header.sticky .menutop-full {
    display: none !important;
}

header.sticky .megamenu a.mainli {
    color: #000000;
}

header.sticky .headmain .logocol {
    width: 250px;
    -webkit-transition: all .3s linear;
}

header.sticky .headmain .logocol a img {
    max-width: 250px;
    width: 250px;
}

header.sticky .headmain .menucol {
    margin-top: 0px;
    align-items: center;
}

header .headmain {
    display: flex;
    justify-content: space-between;
    gap: 0;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    padding: 8px 0;
    border-radius: 0 0 15px 15px;
    margin-top: 0;
    position: relative;
    align-items: center;

}

header .headmain .logocol {
    width: 300px;
    /* padding: 9px 10px;
    background: #fff;
    display: flex;
    align-items: center; */
    z-index: 1;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
}

header .headmain .logocol a {
    display: flex;
    width: 100%;
}

header .headmain .logocol a img {
    width: 300px;
    max-width: 300px;
}

header .headmain .menucol {
    flex: 1 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    /* align-items: center; */
    position: relative;
    gap: 20px;

}

header .headmain .menucol .mainmenu {
    display: flex;
    align-items: center;
    height: 100%;
}

header .megamenu {
    height: 100%;
    flex: 1 0 auto;
    margin: 0 6px;
}

header .normalmenu {
    position: relative;
}

header .megamenu a.mainli {
    display: flex;
    align-items: center;
    position: relative;
    color: #1A1A1A;
    padding: 7px 0;
    font-size: 1rem;
    font-weight: 500;
}

/*header .megamenu .megalist{*/
/*padding: 0 7px;*/
/*}*/

header .megamenu .megalist li a {
    display: flex;
    padding: 8px 10px;
    color: #1A1A1A;
    font-size: 1rem;
    border-bottom: 1px solid #009c8d1c;
    font-weight: 500;
    align-items: center;
    gap: 7px;
}

header .megamenu button.mainli {
    display: flex;
    align-items: center;
    font-weight: 400;
    position: relative;
}

header .megamenu:hover a.mainli {
    color: #009c8d;
}

header .megamenu.active a.mainli {
    color: #ffc857;
}

header .megamenu-content {
    display: flex;
    align-items: center;
    position: absolute;
    background-color: #fff;
    width: 100%;
    max-width: 800px;
    left: 0;
    border: none;
    z-index: 99;
    height: 0;
    padding: 0 15px;
    overflow: hidden;
    box-shadow: 1px 5px 20px 0px #00726729;
    line-height: 1.4;
    border-radius: .3rem;
}


header .normalmenu .megamenu-content {
    width: max-content;
    max-width: 463px;
    min-width: 200px;
}

header .megamenu:hover .megamenu-content {
    min-height: 280px;
    height: auto;
    align-items: flex-start;
    padding-top: 15px;
    animation-name: zoomIn;
    animation-duration: .4s;
    animation-iteration-count: 1;
}

header .normalmenu:hover .megamenu-content {
    padding: 0;
    padding-bottom: 0;
    min-height: auto;
    height: auto;
    overflow: visible;
}

header .megamenu .megalist li a:hover {
    color: #006f65;
    padding-left: 7px;
}




header .iconmenulist li a {
    display: flex;
    gap: 10px;
    padding: 10px 10px;
    flex-direction: column;
    text-align: center;
}

header .iconmenulist li a img {
    opacity: 0.6;
    width: 24px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

header .iconmenulist li a:hover img {
    scale: 0.9;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}



header .iconmenulist {
    display: flex;
    flex-flow: wrap;
    margin: 0;
    width: 100%;
}

.iconmenulist li {
    padding: 5px;
}

.iconmenulist li a {
    display: flex;
    color: #000000ad;
    font-size: .875rem;
    align-items: center;
    transition: .3s;
    /* justify-content: center; */
    border: 1px solid #0166952d;
    padding: 8px 15px;
    border-radius: 0.3rem;
}

.iconmenulist li a:hover {
    border: 1px solid #0167957a;
    color: #016795;
}


.headertab {
    display: flex;
    gap: 1rem;
    width: 100%;
    height: 100%;
}

.headertab .sec2 {
    width: 230px;
}

.headertab .sec1 {
    width: calc(100% - 230px);
}

.headertab .nav-link {
    font-size: 0.9rem;
    color: #333;
    position: relative;
}

.headertab .nav-link:hover {
    color: #016795;
}

.headertab .nav-pills .nav-link:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #f1bb00;
    left: -7px;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    transition: 0.3s;
}

.headertab .nav-pills .nav-link.active:after {
    opacity: 1;
}

.headertab .nav {
    border-left: 1px solid #eee;
    padding-left: 10px;
    min-height: 285px;
}

.headertab .nav-pills .nav-link.active {
    background-color: #f1bb00;
    color: #fff;
    border-radius: 0.3rem;
}

.headertab .megalist li {
    flex: 1 0 33.33%;
    max-width: 33.33%;
}

.menuend {
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
}

.menuend a {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.menu-lng {
    display: flex;
    height: 48px;
    align-items: center;
    margin-left: -5px;
}

.menu-lng button {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    border: 1px solid #1a1a1a;
    font-size: 1rem;
    font-weight: 400;
    color: #1a1a1a;
    background: transparent;
}




.has-submenu {
    position: relative;
}

.has-submenu .submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 4px 6px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    min-width: 300px;
    max-width: 660px;
    padding: 0 0px;
    padding-bottom: 0;
}

.has-submenu:hover .submenu {
    display: block;
    align-items: flex-start;
    padding-top: 0px;
    overflow: visible;
    padding-bottom: 0px;
    animation-name: fadeIn;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
}

.submenu li a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--textclr);
    padding: 12px 0;
}





.sizeUp {
    font-size: 110% !important;
}

.sizeNormal {
    font-size: 100% !important;
}

.sizeDown {
    font-size: 90% !important;
}

.themebtn.active {
    background-color: #2a2a2a !important;
    color: #fff !important;
    border-color: #2a2a2a !important;
}

.bottom-nav {
    border-bottom: none !important;
}

.enquiry {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    min-width: 140px;
}

.enquiry img {
    width: 20px;
    display: inline-block;
    margin-right: 10px;
}

.menuall {
    /* padding: 10px 0; */
    width: 100%;
}

.menutop-full {
    background: #009c8d;
}

.menutop {
    padding: 7px 0;

}

.menutop p {
    font-size: 0.9rem;
    color: #fff;
}






@media(max-width:1200px) {
    header .headmain .menucol .mainmenu {
        gap: 0;
    }

    header .megamenu {
        margin: 0 6px;
    }

    header .headmain .logocol {
        width: 150px;
    }
}

@media(max-width:991px) {
    header .headtop {
        height: 36px;

    }

    header .megamenu button {
        background-color: transparent;
    }

    header .megamenu button img {
        width: 35px;
    }

    header.sticky .headtop {
        margin-top: 0px;
    }

    header .headmain .menucol {
        max-width: auto;
        gap: 30px;
    }

    header .megamenu {
        display: flex;
        align-items: center;
    }

    header.sticky .headmain .logocol {
        width: 150px;
    }

}

@media(max-width:767px) {
    header .headtop .topmenu {
        display: none;
    }

    header .headtop {
        justify-content: center;
    }
}

@media(max-width:575px) {
    header .headmain .logocol {
        width: 125px;
    }

    header.sticky .headmain .logocol {
        width: 125px;
    }

    header .headtop .topsocial {
        display: none;
    }

}



/*@media(min-width:992px){
    .sidenav{display: none!important;}
}*/
/* side nav */


@media (min-width: 992px) {
    .header_resp {
        display: none;
    }
}

.header_resp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.cd-dropdown-trigger {
    padding: 0;
    border-radius: 0;
}

.cd-dropdown-trigger .fa {
    font-size: 22px;
    color: #069548;
}

.cd-dropdown .hdtop {
    background-color: #fff;
    border-color: #069548;
    width: 100%;
    position: relative;
    z-index: 1;
    height: 75px;
    padding: 0;
    display: flex;
    flex-flow: wrap;
    border-bottom: 1px solid #f1f1f1;
    border-radius: 0 0 15px 15px;
    margin-bottom: 20px;
}

.cd-dropdown .hdtop .menuadmin {
    display: flex;
    width: 100%;
    height: 75px;
    background: #ffffff;
    border-radius: 0 0 15px 15px;
}

.cd-dropdown {
    background-color: rgba(0, 0, 0, 0.7);
}

.cd-dropdown>.cd-dropdown-content {
    width: 70%;
    right: 30%;
    background-color: #00a395;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
}

.cd-dropdown-content {
    padding-top: 0;
}

.cd-dropdown-content ul {
    padding-top: 80px;
    background-color: #00a395;
}

.cd-dropdown-content a,
.cd-dropdown-content ul a {
    color: #039123;
    border: none;
    border-bottom: 1px solid #ddd;
}

.cd-dropdown .cd-close {
    right: 1rem;
    top: 18px;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 9;
    box-shadow: 6px 4px 15px rgba(0, 0, 0, 0.1);
    display: none;
}

.closebarz {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    left: 70%;
    cursor: zoom-out;
}

@media (max-width: 575px) {
    .cd-dropdown>.cd-dropdown-content {
        width: 80%;
        right: 20%;
    }

    .closebarz {
        left: 80%;
    }
}

@media (max-width: 360px) {
    .closebarz {
        display: none;
    }

    .cd-dropdown>.cd-dropdown-content {
        width: 100%;
        right: 0;
    }

    .cd-dropdown .cd-close {
        display: block;
    }
}

.cd-dropdown .logo {
    max-width: 150px;
    margin: 5px auto;
}

.cd-dropdown h2,
.cd-dropdown-content a,
.cd-dropdown-content ul a,
.cd-dropdown-content .cd-divider {
    padding: 0 15px;
}

.cd-dropdown-content a,
.cd-dropdown-content ul a {
    height: 38px;
    line-height: 38px;
    font-size: 0.875rem;
    border: none;
    margin: 8px;
    background-color: #fff;
    color: #13365a;
    border-radius: 0.3rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.cd-dropdown-content a:hover,
.cd-dropdown-content ul a:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: rgb(2 126 116);
}

.cd-dropdown-content a:hover img {
    filter: brightness(0) invert(1);
}

.cd-dropdown-content ul a:hover img {
    filter: brightness(0) invert(1);
}


.has-children>a::before,
.has-children>a::after,
.go-back a::before,
.go-back a::after {
    background: #00a395;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.has-children>a:hover::before,
.has-children>a:hover::after,
.go-back a:hover::before,
.go-back a:hover::after {
    background-color: #ffffff;
}

.cd-dropdown-content a img {
    width: 22px;
    margin-right: 8px;
}

.cd-dropdown .cd-close::after,
.cd-dropdown .cd-close::before {
    background: #60606a;
    width: 1px;
    height: 15px;
}

.has-children>a::before,
.has-children>a::after,
.go-back a::before,
.go-back a::after {
    height: 1px;
}

.has-children>a img.img-menu {
    max-width: 20px;
    margin-right: 10px;
}

.hdtop .upic {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    flex: 1 0 180px;
    max-width: 180px;
}

.hdtop .upic a {
    height: 100%;
    margin: 0;
    border-radius: 0;
    padding: 0;
}

.hdtop .upic a:hover {
    background-color: transparent;
}

.hdtop .upic img {
    display: block;
    width: 180px;
}

.menu-user {
    flex: 1 0;
    color: #f7f7f7;
    display: flex;
    flex-flow: column;
    justify-content: center;
    height: 100%;
    background-color: #094ca0;
    padding-left: 15px;
}

.menu-user .uname {
    font-size: 14px;
}

.menu-user span {
    display: block;
    line-height: 20px;
    font-size: 12px;
}

.menubtn {
    background-color: rgb(0 156 141);
    border: unset;
    padding: 8px;
    border-radius: 5px;
}

.menubtn img {
    width: 25px;
    background-color: transparent;
}


.srcbtn.active img {
    display: none;
}

.srcbtn.active:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/icons/close.svg);
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.searchbox {
    position: absolute;
    right: 100%;
    top: 43px;
    width: 350px;
    background: #fff;
    border-radius: 0.3rem;
    display: none;
}

.searchbox input {
    background-color: #fff !important;
}


header .menubtn {

    width: 44px;
    height: 44px;
}


@media (max-width: 480px) {
    .menu-acc p {
        line-height: 5px;
        font-size: 10px;
    }

    .menu-user {
        width: calc(100% - 70px);
    }

    .menu-acc a {
        font-size: 0.65rem;
    }
}







@media(max-width:767px) {
    header .headtop {
        display: none;
    }
}


@media (min-width: 992px) and (max-width: 1199px) {

    header .megamenu {
        margin: 0 6px;
    }

    header .megamenu.active a.mainli {
        font-family: 0.800rem;
    }

    .megamenudonate a {
        min-width: 121px;
        max-width: 121px;
    }

    header .headmain {
        gap: 10px;

    }

}


/*---------------------------------------*/
/*:::::::::::::::::SLIDER::::::::::::::::*/
/*---------------------------------------*/
/*---------------------------------------*/
/*:::::::::::::::::SLIDER::::::::::::::::*/
/*---------------------------------------*/
.slider {
    display: flex;
    align-items: center;
    height: 90vh;
    width: 100%;
    position: relative;
    top: 0;
}

.sliderban {
    position: relative;
    width: 100%;
    height: 90vh;
    background: #ffffff;
}

.sliderban .mainSwiper {
    height: 100%;
}

.slidermain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    text-align: left;
    z-index: 1111;
    padding-bottom: 90px;
}

.slidecon {
    display: flex;
    flex-direction: column;
    width: 40%;
    position: relative;
    height: 100%;
    align-items: flex-start;
    text-align: left;
}

.slidecon h3 {
    position: relative;
    z-index: 1;
}

.slide-con2 {
    position: absolute;
    bottom: 15px;
    z-index: 1;
    width: 75px;
    left: 15px;
}

.slide-con2 img {
    border-radius: 6px;
}

.slide-img {
    position: relative;
    width: 100%;
    height: 90vh;
    object-fit: cover;
    margin-left: auto;
}

/* .slide-img::after{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
     background: #00000069 ;
     background-size: cover;
    z-index: 1;
    top: 0;
 } */

.slide-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: relative;
}

.bnr-ttl {
    font-size: 1.1rem;
}

.slidecon h4 {
    opacity: 80%;
}

.slidecon h4 span {
    width: 20px;
    height: 2px;
    background: #287f51;
    margin: 0 8px;
    display: inline-block;
    bottom: 5px;
    position: relative;
    opacity: 80%;
}

.bnr-hed {
    color: #fff;
    font-size: 2.5rem;
    z-index: 11;

}

.bnr-para {
    color: #fff;
}

.sliderban .mainSwiper .swiper-slide .slidecon {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.sliderban .mainSwiper .swiper-slide-active .slidecon {
    opacity: 1;
    transform: translateY(0);
}

.sliderban .mainSwiper .swiper-slide.swiper-slide-active .slide-img {
    animation: slde 10s 1;
}


@keyframes slde {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}




.slider .mainpagination {
    display: flex;
    flex-flow: column;
    right: 30px;
    bottom: 0;
    width: 15px;
    text-align: right;
    margin-left: auto;
    gap: 20px;
    border-right: 1px solid #ffffff4d;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

.slider .mainpagination .swiper-pagination-bullet {
    background-color: #ffffff52;
    opacity: 1;
    width: 14px;
    height: 14px;
    margin-right: -7px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
}

.slider .mainpagination .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #ffffff;
    box-shadow: 0 0 0px 4px #006F65;
}


.navibtn {
    display: flex;
    justify-content: center;
    display: flex;
    position: relative;
    top: 0;
    right: 0;
    gap: 8px;
    padding-top: 20px;
}

.navibtn .slidebtn {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    background: #ffc857;
    margin: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.navibtn .slidebtn:hover {
    background: #006F65;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.navibtn .slidebtn:hover:after {
    color: #fff;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.navibtn .slidebtn:after {
    font-size: 14px;
    color: #006f65;
    font-weight: 600;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}


.bnr-point {
    background: #ffffffb3;
    backdrop-filter: blur(5px);

    flex-flow: wrap;
    /* border-radius: 10px; */
    width: 100%;
    box-shadow: inset -1px -1px 10px #009c8d03;
    margin-left: auto;
    width: 45%;
    margin-top: -60px;
    position: relative;
    z-index: 1;
}

.bnr-point .point {
    flex: 1 0 33.33%;
    position: relative;
    padding: 15px;
    align-items: center;
    text-align: center;
    border-right: 1px solid #009c8d40;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;

}

.bnr-point .point2 {
    border: none !important;
}

.bnr-point .point img {
    width: 34px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.bnr-point .point p {
    font-size: 1rem;
    font-weight: 500;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.bnr-point .point::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(357deg, #006F65, #33B8A9);
    height: 100%;
    width: 100%;
    opacity: 0;
    z-index: -1;

}

.bnr-point .point:hover img {
    filter: brightness(0) invert(1);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.bnr-point .point:hover p {
    color: #fff;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.bnr-point .point:hover::after {
    opacity: 1;
    transform: scaleY(1.1);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}





.slide-con {
    position: absolute;
    z-index: 1;
    left: 1rem;
    top: 56%;
    transform: translateY(-56%);
    /* bottom: 25%; */
    border-radius: 0.5rem;
    text-align: center;
    /* overflow: hidden; */
}

.slide-con li {
    line-height: 13px;
    border-bottom: 1px solid #ffffff38;
    background-color: #009c8d7a;
    /* backdrop-filter: blur(4px); */
    transition: 0.3s;
    cursor: pointer;
    position: relative;
}

.slide-con li:hover {
    background-color: #00a395;
}

.slide-con li:hover img {
    animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}

.slide-con li:nth-child(5) {
    border-bottom: none;
}

.slide-con li a {
    font-size: 0.75rem;
    color: white;
    font-weight: 500;
    /* padding: 10px 8px; */
    width: 40px;
    height: 40px;
    display: flex;
}

.slide-con li img {
    width: 20px;
    margin: auto;
    filter: brightness(0) invert(1);
}

.slide-con li:first-child {
    border-radius: 5px 5px 0 0;
}

.slide-con li:last-child {
    border-radius: 0 0 5px 5px;
}





.slidebottom {
    position: relative;
    z-index: 1;
    width: 40%;
    margin-top: -64px;
    z-index: 10;
    margin-left: 15px;
}


.updatemain {
    display: flex;
    gap: 0;
    align-items: center;
}

.updatemain .hdcol {

    color: #006F65;
    padding: 0 15px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    min-width: 126px;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    height: 46px;
    line-height: normal;
    border-radius: 6px;
    background: linear-gradient(45deg, #ffbc32, #FFEB3B, #d7a02d);
    background-size: 400% 400%;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}



.upslidemain {
    background-color: #fff;
    height: 40px;
    border-radius: 0px 6px 6px 0;
    font-size: 0.875rem;
    padding: 10px 16px;
    border: 1px solid #eeeeee4a;
    width: calc(100% - 126px);
    margin-left: -1px;

}

.updateslide .swiper-slide {
    width: auto !important;
}

.updateslide a {
    color: #000;
    position: relative;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    line-height: normal;
    font-weight: 500;
}

.updateslide a:before {
    content: "";
    display: inline-block;
    background-image: url(../img/icons/anglert.svg);
    width: 14px;
    height: 14px;
    background-size: 14px;
    margin-right: 6px;
    position: relative;
    top: 2px;
}

.updateslide a:hover {
    color: #000;
}


.updateslide a .date {
    color: #006F65;
    font-size: 0.85rem;
    margin-right: 6px;
    font-weight: 800;
}

.updateslide .swiper-wrapper {
    transition-timing-function: linear !important;
}


/*---------------------------------------*/
/*:::::::::::::::::about:::::::::::::::::*/
/*---------------------------------------*/
.about {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    justify-content: center;
    padding-left: 35px;
    border-left: 1px solid #009c8d1f;
    position: relative;
}

.bac-trn {
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 398px;
    height: 100%;
    background: #00a39514;
    /* background-blend-mode: unset; */
    /* opacity: 9%; */
    z-index: -1;
    border-radius: 0px 30px 0px 0;
}

.bac-trn2 {
    position: relative;
    left: 0;
    margin-top: -33%;
    left: -15px;
    width: 90%;
    height: 227px;
    background: #ffc8578c;
    /* background-blend-mode: unset; */
    /* opacity: 9%; */
    z-index: 0;
    border-radius: 25px;
}

.about::after {
    content: "";
    display: block;
    position: absolute;
    height: 35px;
    width: 2px;
    top: 0;
    left: -2px;
    background-color: #009c8d;
    animation: moveLeftBounces-two 50s linear infinite;
    overflow: hidden;
}

@keyframes moveLeftBounces-two {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(367px);
        transform: translateY(367px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.abt-hed {
    font-size: 2rem;
    font-weight: 600;
}

.abt-hed span {
    color: #006F65;
}

.sub-hed {
    flex-direction: row;
    gap: 10px;
}

.sub-hed p {
    font-size: 1rem;
    color: #006f65 !important;
    font-weight: 600;
    letter-spacing: 4px;
}

.sub-hed img {
    width: 22px;
}

.abt-img {
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding-right: 15px;
}

.abt-img img {
    max-width: 570px;
    width: 100%;
    border-radius: 20px;
    position: relative;
}

.justify {
    text-align: justify;
}

.abt-crad {
    padding: 15px;
    border-radius: 10px;
    background: #F7FCFB;
    align-items: center;
    position: relative;
}

.abt-crad p {
    font-size: 0.875rem;
}

.years {
    background-color: #ffc857;
    height: 110px;
    width: 120px;
    display: flex;
    text-align: center;
    border-radius: 0px 0px 30px 30px;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    z-index: 1;
    left: 15px;
    box-shadow: inset -5px -7px 0px #f7b939;
}

.years span {
    font-size: 2.2rem;
    font-weight: 700;
}

.abt-visin {
    display: flex;
    gap: 15px;
}

.abt-visin .visnbx {
    padding: 10px;
    box-shadow: 0 0 0px 1px #006f652b;
    border-radius: 7px;
}




.mylist,
.sublist,
.genlist {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #626467;
}

.mylist li,
.sublist li,
.genlist li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.mylist li:before,
.sublist li:before,
.genlist li:before {
    content: "";
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    background-image: url(../img/icons/list-ic.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 3px;
}

.genlist li:before {
    background-image: url(../img/icons/list-ic.svg);
}

.mylist li>ul,
.genlist li>ul {
    margin: 0.5rem 0;
}

.mylist li>ul>li,
.genlist li>ul>li,
.sublist li {
    padding-left: 15px;
}

.mylist li>ul>li:before,
.genlist li>ul>li:before,
.sublist li:before {
    background-color: var(--primary);
    border-radius: 3px;
    width: 8px;
    height: 8px;
    margin-top: 9px;
}

/*---------------------------------------*/
/*::::::::::::::::::FACILITIES::::::::::::::*/
/*---------------------------------------*/
.fac-card {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 0px 1px #006f652b;
    gap: 10px;
    /* height: 100%; */
}

.fac-card .icon {
    background: linear-gradient(357deg, #006F65, #33B8A9);
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    margin-top: -41px;
    box-shadow: 0 0 0px 9px #ffffff;
}

.fac-card .icon img {
    width: 24px;
}

.fac-card .con .hed {
    font-weight: 500;
    font-size: 1.1rem;
    color: #1A1A1A;
}

.fac-card:hover img {
    animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}


@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}



/*---------------------------------------*/
/*::::::::::::::::::MESSAGE::::::::::::::*/
/*---------------------------------------*/
.msg-card {
    display: flex;
    align-items: center;
    position: relative;
}

.msg-card .icon {
    width: 240px;
    position: relative;
    z-index: 1;
    padding: 12px 0;
}

.msg-card .icon::after {
    content: '';
    background-color: #FFC857;
    height: 100%;
    border-radius: 40px;
    width: 100%;
    position: absolute;
    z-index: -1;
    right: -15px;
    top: 0;
}

.msg-card .icon img {
    width: 100%;
    border-radius: 15px 30px 30px 15px;
    box-shadow: 0px 0px 0px 3px #006F65;
}

.msg-card .con {
    padding: 15px;
    background: #f7fcfb;
    border-radius: 10px;
    padding-left: 155px;
    margin-left: -120px;
    /* min-height: 240px; */
    display: flex;
    align-items: center;
    flex: 1 0;
    box-shadow: 0px 0px 0px 1px #33b8a929;
}

.msg-card .con .hed {
    font-weight: 600;
    font-size: 1.1rem;
    color: #006F65;
}

.msg-card .con .des {
    font-weight: 400;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



/*---------------------------------------*/
/*::::::::::::::::::LOANS::::::::::::::*/
/*---------------------------------------*/

.loans-full .swiper {
    width: 100%;
    height: 289px;
    perspective: 1200px;
}

.loanSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: transform 0.6s ease;
}

.depositSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: transform 0.6s ease;
}





.loans-section {
    background: url(../img/images/loans-bac.jpg);
    /* background: #faffff; */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 11;
    padding: 25px;
    border-radius: 20px;
    /* box-shadow: 0 -3px 8px 1px #00000014; */
}

.loans-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #005850d6;
    z-index: -1;
    border-radius: 20px;
}


.loans-bx {
    padding: 15px;
    /* background: #ffffff2e; */
    background: linear-gradient(45deg, #00a395, #007b70);
    /* backdrop-filter: blur(5px); */
    border-radius: 10px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.loans-full {
    padding-right: 15px;
}

.loanbdy {
    flex-direction: row;
    height: 100%;
    justify-content: space-between;
    padding-right: 15px;
}

.loanbdy p {
    color: #fff;

}

.sub-hed2 {
    flex-direction: row;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 4px;
}

.sub-hed2 .hed {
    font-size: 1rem;
    color: #ffffff !important;
    font-weight: 500;
}

.sub-hed2 img {
    width: 22px;
    filter: brightness(0) invert(1);
}

.loans-bx .card-img {
    position: relative;
}

.loans-bx .card-img img {
    border-radius: 10px;
    clip-path: polygon(0 0, 100% 0, 100% 63%, 72% 100%, 0 100%);
}

.loans-bx .card-img span {
    width: 30px;
    height: 30px;
    background-color: #006F65;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding: 3px;
    justify-content: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;

}

.loans-bx .card-img span img {
    border-radius: 0px;
    width: 14px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.loans-bx .card-con .hed {
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.loans-bx .card-con .des {
    color: #ffffff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.loans-bx:hover {
    background: linear-gradient(45deg, #008176, #008176);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.loans-bx:hover .card-img span {
    background-color: #FFC857;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.loans-bx:hover .card-img span img {
    animation-name: zoomIn;
    transform: rotate(45deg);
    border-radius: none !important;
    animation-duration: .5s;
    animation-iteration-count: 1;
}



/* DEPOSIT */
.announcements {
    padding: 15px;
    border: 1px solid #00908342;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
}

.announcements p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #006f65;
}

.announcements span {
    width: 40px;
    height: 40px;
    background: #FFC857;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accordion {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 360px;
}

.accordion .tabs {
    flex: 1;
    background: url(../img/images/fixed-deposit.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 25px;
    display: flex;
    overflow: hidden;
    position: relative;
    transition: all 0.5s;
    border-radius: 20px;
    width: 96%;
    margin: 0px 2%;
}

.accordion .tabs::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(2deg, #000000a6, transparent);
}

.accordion .tabs2 {
    background: url(../img/images/re-investment.jpg);
    background-position: center;
}

.accordion .tabs3 {
    background: url(../img/images/recurring-deposit.jpg);
    background-position: center;
}

.accordion .tabs:hover {
    cursor: pointer;
}

.accordion .tabs .tab-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: black;
    width: 100%;
    visibility: visible;
    opacity: 1;
    z-index: 11;
}

.accordion .tabs .tab-header .text>div {
    position: absolute;
    transform: rotate(-90deg);
    transform-origin: left top;
    width: 254px;
    bottom: 0px;
    font-weight: 600;
    font-size: 24px;
    color: white;
    line-height: 28px;
}

.accordion .tabs .tab-content {
    visibility: hidden;
    opacity: 0;
    color: white;
    position: relative;
    width: 100%;
}

.accordion .tabs .tab-content .tab-content-wrapper {
    position: absolute;
    z-index: 3;
    bottom: 10px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s 0.3s;
}

.accordion .tabs .tab-content .title-time {
    font-weight: bold;
    font-size: 5.4rem;
    text-transform: uppercase;
    margin: 2rem 0 10rem;
}

.accordion .tabs .tab-content .tab-img {
    position: absolute;
    top: -3rem;
    left: -3rem;
    right: -3rem;
    height: auto;
    width: auto;
    min-width: 100%;
    min-height: 100%;
    z-index: 2;
}

.accordion .tabs .tab-content .tab-img img {
    width: 100%;
    height: 491px;
    object-fit: cover;
}

.accordion .tabs.is-active {
    flex: 5;
    flex-shrink: 0;
    border-radius: 20px;
}

.accordion .tabs.is-active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.5);*/
    z-index: 2;
    border-radius: 20px;
}

.accordion .tabs.is-active .tab-header {
    width: 0;
    visibility: hidden;
    opacity: 0;
}

.accordion .tabs.is-active .tab-content {
    visibility: visible;
    opacity: 1;
}

.accordion .tabs.is-active .tab-content .tab-content-wrapper {
    visibility: visible;
    opacity: 1;
}

.accordion .tabs.is-active .tab-para-btn {
    visibility: visible;
    opacity: 1;
    width: 60px;
    height: 60px;
}

.tab-para1 {
    font-weight: 600;
    font-size: 25px;
    color: white;

}

.tab-para {
    padding-right: 75px;
    font-weight: normal;
    font-size: 14px;
    color: white;
    line-height: 25px;
    margin-bottom: 0px;
}

.tab-para-btn {
    float: right;

    background: #009c8d;
    border-radius: 35px;
    margin-top: -81px;
    padding: 18px 0px;
    visibility: hidden;
    opacity: 0;
    width: 0;
}

.tab-para-btn:hover img {
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.tab-para-btn img {
    width: 24px;
    margin: auto;
    display: block;
    transition: all 0.3s ease;
}



/*---------------------------------------*/
/*::::::::::::::::::News::::::::::::::*/
/*---------------------------------------*/
.news-full {
    padding-right: 20px;
}

.news-bx {
    padding: 15px;
    background: #006f65;
    backdrop-filter: blur(5px);
    border-radius: 10px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.news-bx .card-img {
    position: relative;
}

.news-bx .card-img img {
    border-radius: 10px;
    clip-path: polygon(0 0, 100% 0, 100% 63%, 72% 100%, 0 100%);
}

.news-bx .card-img span {
    width: 36px;
    height: 36px;
    background-color: #ffc857;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding: 11px;
    justify-content: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.news-bx .card-img span img {
    border-radius: 0px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.news-bx .card-con .hed {
    font-weight: 500;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #ffffff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.news-bx:hover {
    background: #02645c;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.news-bx:hover .card-img span {
    background-color: #FFC857;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.news-bx:hover .card-img span img {
    animation-name: zoomIn;
    transform: rotate(45deg);
    border-radius: none !important;
    animation-duration: .5s;
    animation-iteration-count: 1;
}

.news-bx:hover .card-con .hed {

    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}




.table-responsive {
    position: relative;
}

.table-responsive::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 1px;
    background-image: url(../img/images/table-hedl.svg);
    background-size: contain;
    width: 11px;
    height: 51px;
}

.table-responsive::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 1px;
    background-image: url(../img/images/table-hedr.svg);
    background-size: contain;
    width: 11px;
    height: 51px;
}

.mytable {
    width: 100%;
    margin-bottom: 1rem;
    border-spacing: 0;
    border-collapse: collapse;
    /* border-radius: 0.3rem; */
    overflow: hidden;
    font-size: .9rem;
}

.mytable thead th {
    font-weight: 600;
    color: #2d2d2d;
    background-color: #ffc857;
    overflow: hidden;
    font-size: 0.875rem;
}

.mytable td,
.mytable th {
    border: 1px solid #EDEDED;
    padding: 10px;
    overflow: hidden;
    transition: .3s;
    font-size: 0.9rem;
    color: #000000;
}

.mytable td {
    font-weight: 400;
}

.mytable tr {
    transition: .3s;
}

.tabler2 {
    background: #ffe5af;
}





/*---------------------------------------*/
/*::::::::::::::::FORM:::::::::::::::*/
/*---------------------------------------*/
.myform .inpbox {
    flex: 1 0 auto;
    text-align: left;
    max-width: 100%;
    position: relative;
}

.myform label {
    font-size: var(--font14);
    margin-bottom: 5px;
    color: var(--textclr);
    font-weight: 500;
}

.myform label span {
    color: red;
}

.myform .form-check {
    display: flex;
    gap: 3px;
    align-items: center;
}

.myform .textlink {
    width: 100%;
}

.myform .textlink button {
    font-weight: 600;
    border: none;
    background-color: transparent;
    outline: 0;
    padding: 0;
    color: var(--blue);
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}

.myform .textlink button:hover {
    color: var(--primary);
}

.myform input,
.myform textarea,
.myform select {
    width: 100%;
    margin-bottom: 1rem;
    padding: 8px 15px;
    border-radius: 0.3rem;
    box-shadow: none;
    border: 1px solid #eee;
    border: none !important;
    background-color: transparent;
    outline: 0;

    color: #000;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}

.myform input:focus,
.myform textarea:focus,
.myform select:focus {
    border-color: var(--primary);
}

.myform input[readonly]:focus,
.myform textarea[readonly]:focus,
.myform select[readonly]:focus {
    border-color: #ddd;
}

.myform input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.myform textarea {
    height: 66px;
}

.myform .btn {
    padding: 10px 25px;
    height: 50px;
    min-width: auto;
}

.myform select {
    color: var(--textclr);
}

.myform ::-webkit-input-placeholder {
    color: var(--textclr);
    opacity: 0.5;
}

/* Hide HTML5 Up and Down arrows. */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 42px;
    opacity: 0;
    -webkit-appearance: none;
}

.myform.hasicon input,
.myform.hasicon textarea,
.myform.hasicon select {
    padding-left: 40px;
}

.myform.hasicon .frmicon {
    position: absolute;
    top: 10px;
    left: 12px;
    pointer-events: none;
}




/*---------------------------------------*/
/*::::::::::::::::::FOOTER::::::::::::::*/
/*---------------------------------------*/
.tollfree {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid #ffffff17;
    margin-bottom: 30px;
}

.tollfree p {
    color: #ffffff;
}

.tollfree .con {
    font-weight: 400;
    font-size: 1.1rem;
    color: #ffffff;
    flex: 1 0;
    width: calc(100% - 55px);
}

.tollfree .con span {
    font-size: 1.1rem;
    font-weight: 600;
}

.hlpbx .icon {
    background: #006F65;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;

}

.hlpbx .icon .fa-solid {
    color: #ffc857;
}

.tollfree h2 {
    color: #ffffff;
}

.tllbx {
    flex-direction: row;
    gap: 20px;
    flex: 1 0 auto;
    max-width: 680px;
}

.hlpbx {
    padding: 15px;
    border-radius: 10px;
    background: #ffffff4d;
    backdrop-filter: blur(4px);
    width: 50%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.hlpbx:hover .icon .fa-solid {
    animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}

footer {
    position: relative;
    background: #004c45;
    z-index: 1;
}

footer::after {
    content: '';
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/images/ft-bac.svg);
    z-index: -1;
    opacity: 35%;
}

.ftr-logo {
    width: 230px;
}

.ftlogo {
    display: flex;
    flex-direction: row;
    gap: 80px;
}

.ft-cont {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ft-cont2 {
    padding: 15px;
    border-radius: 10px;
    background: #ffffff;
    backdrop-filter: blur(5px);
    width: 340px;
}

.ft-cont1 {
    flex: 1 0;
}

.ft-cont .cont-hed {
    font-weight: 700;
}

.ft-cont .cont-des {
    font-size: 0.9rem;

}

.ft-social {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.ft-social a {
    width: 35px;
    height: 35px;
    background-color: #009c8d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ft-social a span img {
    height: 17px;
    width: 17px;
}


.ft-links {
    padding-top: 15px;
}

.ft-links h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffc857;
}

.ft-links li a {
    margin-right: 20px;
    font-size: 0.875rem;
    color: #ffffff;
}

.ft-links li a:hover {
    color: #d0f9f5;
}


.ft-social a:hover span img {
    animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}


@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}


.ftcopy {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px;
    border-top: 1px solid #ffffff17;
    position: relative;
}

.ftcopy p,
a {
    color: #ffffff;
}

.menu-contact a {
    background: #60d669;
    padding: 10px;
    height: 46px;
    width: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulsing 3s infinite;
}

@keyframes pulsing {


    from {
        box-shadow: 0 0 0 8px #25d36621;
    }

    50% {
        box-shadow: 0 0 0 0 #25d36621;
    }

    to {
        box-shadow: 0 0 0 8px #25d36621;
    }
}


.cd-dropdown .side-adress {
    /* background-color: #fff; */
    padding: 15px;
    padding-top: 0px;

}

.cd-dropdown .side-adress .side-adresscon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 0;
    /* background: linear-gradient(0deg, #051b30, #19457269); */
    height: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #ffffff54;
}

.cd-dropdown .side-adress .side-adresscon .imgcrd {
    background: #082139;
    padding: 5px;
    border-radius: 7px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cd-dropdown .side-adress .side-adresscon p {
    color: #fff;
}

.cd-dropdown .side-adress .side-adresscon h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0px;
}

.contact-nme {
    color: #13365a;
    font-weight: 500;
}



.latest-full {

    padding-left: 15px;
}

.updatedslide {
    height: 378px;
    /* Limit the height of the entire swiper container */
    overflow: hidden;
    /* Prevent overflow issues */
}

.updatedslide .swiper-wrapper {
    height: auto !important;
    /* Remove forced 400px height */
}

.updatedslide .swiper-slide {
    height: auto !important;
    /* Allow dynamic height */
    display: flex;
    align-items: center;
    /* Optional: Align content properly */
}

.updatedslide .item {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    position: relative;
    flex-direction: column;
    border-left: 2px solid #00916d73;
    padding-left: 9px;
}

.updatedslide .item .date {
    background-color: #ffc857;
    color: #007c5e;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5px;
    padding: 3px 10px;
    align-items: center;
    text-transform: uppercase;
    font-size: 0.875rem;
    line-height: normal;
    border-radius: 0.5rem;
}

.updatedslide .item .date .dd {
    font-size: 0.875rem;
    font-weight: 600;
}

.updatedslide .item .title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #000000;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;

}

/* .updatedslide .item:hover {
    background: #f1fffb;
} */




.mytabnav {
    border-bottom: 1px solid #006f6542;
    /* padding-bottom: 2px; */
    /*justify-content: center;*/
}

.mytabnav li.nav-item {
    padding-right: 5px;
    flex: none;
}

.mytabnav li.nav-item button {
    padding: 8px 20px;
    border-radius: 8px 8px 0 0;
    color: #006f65;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    background-color: #01679500;
}

.mytabnav li.nav-item button:hover {
    border: none;
    background-color: #006f6526;
    color: #006f65;
}

.mytabnav li.nav-item button:focus {
    box-shadow: none;
}

.mytabnav li.nav-item button.active {
    color: #fff;
    background: #006f65;
}

.tab-pane {
    border-radius: 0.3rem;
    margin-top: 10px;
}

.mytabnav .nav-link {
    position: relative;
}

/* .mytabnav .nav-link.active:after {
    content: "";
    position: absolute;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #01577d;
    left: 0;
    right: 0;
    max-width: 10px;
    margin: auto;
    bottom: -7px;
} */


@media(max-width:1199px) {
    .ft-cont2 {
        width: 240px;
    }

    .ftlogo {
        gap: 20px;
    }
}


@media (min-width: 992px) and (max-width: 1199px) {
    .mobcmpd {
        padding-left: 20px;
        padding-right: 20px;
    }

    header .headmain .logocol {
        width: 200px;
    }

    header .headmain .logocol a img {
        width: 200px;
        max-width: 200px;
    }

    header .megamenu a.mainli {
        font-size: 0.875rem;
    }

    header .megamenu {
        margin: 0 4px;
    }

    .menutop p {
        font-size: 0.875rem;
        color: #fff;
    }

    header.sticky .headmain .logocol {
        width: 200px;
    }

    header.sticky .headmain .logocol a img {
        max-width: 200px;
        width: 200px;
    }

    header.sticky {
        height: 60px;
    }
}

@media (min-width: 1200px) and (max-width: 1300px) {
    header .headmain .logocol {
        width: 200px;
    }

    header .headmain .logocol a img {
        width: 200px;
        max-width: 200px;
    }

    header .megamenu a.mainli {
        font-size: 0.9rem;
    }
}


@media(max-width:1024px) {
    .latest-full {
        padding-left: 0px;
    }

    .loans-full .swiper {
        height: auto;
    }

    .announcements {
        padding: 11px;
    }
}


@media(max-width:991px) {

    .slider {
        height: 60vh;
    }

    .sliderban {
        height: 60vh;
    }

    .slidermain {
        padding-top: 77px;
    }

    .slide-img {
        height: 100%;
    }

    .abt-img {
        justify-content: center;
        margin-top: 20px;
    }

    .abt-bx {
        height: 60%;
    }

    .products-bx .card-con .con-hed {
        font-size: 1.2rem;
    }

    .products-bx {
        padding: 10px;
    }

    .values-full {
        padding-left: 0;
        padding-top: 20px;
    }

    .abt-bx2 {
        height: 50%;
    }

    .ftr-logo {
        width: 200px;
    }

    .ft-social {
        gap: 6px;
    }

    .ftlogo {
        gap: 20px;
    }

    .ft-cont1 {
        flex: 1 0 calc(200px - 100%);
    }

    .menuend {
        display: none;
    }

    .latest-full {
        padding-top: 25px;
    }

    .fac-card {
        height: 100%;
    }

    .announcements {
        padding: 11px;
        width: 48%;
    }

    .news-full {
        padding-right: 0px;
    }

    .bac-trn2 {
        position: absolute;
        margin-top: 0px;
        top: 50%;
        height: 54%;
    }

    .depositrate {
        margin-top: 25px;
    }

    .tollfree {
        flex-direction: column;
    }

    .tllbx {
        margin-top: 20px;
    }

}

@media(max-width:767px) {
    .bnr-hed {
        font-size: 2rem;
    }

    .slidecon {
        width: 100%;
    }

    .abt-hed {
        font-size: 1.8rem;
    }

    .products-hed {
        flex-direction: column;
        align-items: flex-start;
    }

    .hedspan {
        font-size: 1rem;
    }

    .products-bx .card-con .con-hed {
        font-size: 1.1rem;
    }

    .test-hed {
        font-size: 3rem;
    }

    .ft-cont1 {
        display: none;
    }

    header .headmain .logocol {
        width: 220px;
    }

    header .headmain .logocol a img {
        width: 220px;
        max-width: 220px;
    }

    header.sticky .headmain .logocol {
        width: 220px;
    }

    header.sticky .headmain .logocol a img {
        width: 220px;
        max-width: 220px;
    }

    .bnr-point {
        width: 100%;
        margin-top: 0;
    }

    .loans-full {
        padding-right: 0px;
    }

    .ft-cont2 {
        width: 360px;
    }

}

@media(max-width:575px) {
    .slider {
        height: 650px;
    }

    .sliderban {
        height: 650px;
    }

    .ftcopy {
        flex-direction: column;
    }

    .menu-contact a {
        padding: 8px;
        height: 34px;
        width: 34px;
    }

    .menutop-full {
        display: none;
    }

    body {
        padding-top: 0;
    }

    .loans-bx {
        padding: 8px;
    }

    .loans-bx .card-con .hed {
        font-size: 1rem;
    }

    .table-responsive::before {
        display: none;
    }

    .table-responsive::after {
        display: none;
    }

    .tllbx {
        flex-direction: column;
    }

    .hlpbx {
        width: 100%;
    }

    .ft-cont2 {
        width: 100%;
        max-width: 400px;
    }

    header.sticky {
        height: 60px;
    }

    .iner-banner {
        height: 218px !important;
    }

    .slider .mainpagination {
        right: 15px;
    }

    .about {
        padding-left: 0px;
        border-left: none;
    }

    .about::after {
        display: none !important;
    }

    .table-responsive {
        overflow-x: auto;
    }

}


@media(max-width:440px) {
    .abt-visin {
        flex-direction: column;
    }

    .announcements {
        width: 100%;
    }
}


@media(max-width:330px) {
    header .headmain .logocol {
        width: 180px;
    }

    header .headmain .logocol a img {
        width: 180px;
        max-width: 180px;
    }

    header.sticky .headmain .logocol {
        width: 180px;
    }

    header.sticky .headmain .logocol a img {
        width: 180px;
        max-width: 180px;
    }

    .test-hed {
        font-size: 2rem;
    }

    header .menubtn {
        width: 35px;
        height: 35px;
    }
}

.header_resp .cd-dropdown-content li span {
    display: none;
}

.header_resp .cd-dropdown-content li .upic {
    display: flex !important;
}

.error {
    width: 100%;
    /* margin-top: .25rem; */
    font-size: 0.85rem;
    color: #ff2a2a;
    /* text-shadow: 1px 1px 4px #ffffff; */
    text-align: right;
    display: block;
    letter-spacing: 1px;
}


/* \\\\\\\\\\\\\\MODAL////////////// */
.modal-content {
    border-radius: 1rem;
    border: none;
    box-shadow: 6px 8px 20px rgb(0 0 0 / 10%);
    background-color: #e8fff2;
}

.modal-backdrop {
    background-color: var(--primary50);
    background: linear-gradient(90deg,
            #6cbc7f 0%,
            #1c4454 100%);
}

.myModal .modal-body {
    padding: 50px;
    border-radius: 10px;
    overflow: hidden;
    /* background: url(../img/icons/circle2.svg); */
    background-size: 78px;
    background-repeat: no-repeat;
    background-position-x: 103%;
    background-position-y: 96%;
}

.myModal .btn-close {
    position: absolute;
    right: 3px;
    top: 3px;
    font-size: 14px;
    background-color: #000000;
    z-index: 9;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    opacity: 1;
    color: white;
    border: none;
}

.myModal .btn-close img {
    filter: brightness(0) invert(1);
}

.myModal .modal-dialog {
    top: 30%;
}

@media (min-width: 576px) {
    .myModal .modal-dialog {
        max-width: 500px;
        margin-right: auto;
        margin-left: auto;

    }
}

.inq-logo img {
    width: 75px;
    margin: auto;
}

.inq-logo h2 {
    color: #0f6e38;
    font-weight: 700;
}


/**** select2 ****/
.select2-container {
    width: 100% !important;
}

/* Set min height for the Select2 selection box */
#enq_branch+.select2-container .select2-selection {
    min-height: 46px;
    height: 46px;
    /* Fixes alignment */
    line-height: 46px;
    /* Vertically center the text */
}

/* Optional: vertically center placeholder and selected text */
#enq_branch+.select2-container .select2-selection__rendered {
    line-height: 46px;
    padding-left: 10px;
    /* Adjust padding if needed */
}


/* search bar suggestions */

#searchForm {
    position: relative;
}

.suggestion-list {
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 9999;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    width: 100%;
    border-radius: 10px;
    top: 100%;
    /* Show below the input */
    margin-top: 4px;
}

/* For Chrome, Edge, Safari */
.suggestion-list::-webkit-scrollbar {
    width: 8px;
}

.suggestion-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.suggestion-list::-webkit-scrollbar-thumb {
    background-color: #009C8D;
    border-radius: 10px;
}

.suggestion-list::-webkit-scrollbar-thumb:hover {
    background-color: #009C8D;
}

.suggestion-item {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #009C8D;
    font-size: 15px;
}

.suggestion-item:hover {
    background-color: #f2f2f2;
}

.suggestion-item::after {
    content: "";
    background-image: url(../img/icons/bold-arrow.svg);
    /* Replace with your bold arrow path */
    background-repeat: no-repeat;
    background-size: contain;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
}
