body {
    font-size: 1rem;
    font-family: "Poppins", sans-serif !important;
    font-weight: 400;
    color: #1e70ba;
    background-color: #0098dc12;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.ovhidden {
    overflow: hidden;
}


a {
    color: #00923f;
    text-decoration: none !important;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    font-weight: 500;
}

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

/* .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: 600;
    color: #121f34;
}

.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: #231F20;
    font-size: 0.875rem;
    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: 20px 20px 20px 0px;
}

.mybtn-primary {
    position: relative;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 400;
    padding: 10px 15px;
    background: #016795;
    overflow: hidden;
    min-width: 128px;
    z-index: 1;
}

.mybtn-primary::before {
    content: "";
    height: 300px;
    width: 300px;
    background: #f1bb00;
    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-primary:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}



.mybtn-secondary {
    position: relative;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 400;
    padding: 10px 15px;
    background: #f1bb00;
    overflow: hidden;
    min-width: 128px;
    z-index: 1;
    height: 41px;
}

.mybtn-secondary::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-secondary:hover {
    color: #fff;
}

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



.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: #016795;

    font-size: 0.875rem;

}

.morebtn:hover {
    color: #024868;
}

.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 {
    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: #016795;
    border-bottom: 0px solid transparent;
}

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

header.sticky .headmain .logocol {
    width: 200px;
    padding: 5px 0;
    -webkit-transition: all .3s linear;
}


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

header .hedtop-full {
    background: #42BEED;
}

header .headtop {
    height: 30px;
    display: flex;
    border-bottom: none;
    background: #12296c;
}

.sticky .headtop {
    display: none !important;
    height: 0;
}

header .headtop .hedtop1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

header .headtop .topmenu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-weight: 500;
    align-content: center;
}

header .headtop .topmenu li a {
    color: #fff;
    cursor: pointer;
    font-size: 0.875rem;
}

header .headtop .topmenu li a:hover {
    color: #d2fbf4;
}

header .headtop .topmenu li a img {
    width: 20px;
    display: inline-block;
    margin-right: 10px;
}

header .headtop .topmenu .topmenumail {
    padding-right: 10px;
    border-right: 1px solid #ffffff17;
}

header .topmenuli {
    padding-right: 15px;
    border-right: 1px solid #ffffff29;
}

header .headtop .topsocial {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-content: center;
}

header .headtop .topsocial a {
    width: 22px;
    height: 22px;
    display: flex;
    background: #69bae7;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

header .headtop .topsocial a:hover {
    background: #d2ffe7;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

header .headtop .topsocial a img {
    max-height: 11px;
}

header .headtop .jobprtl {
    padding: 10px 15px;
    background: #fff;
    color: #42beed;
}

header .headtop .jobprtl a {
    color: #42BEED;
    font-weight: 400;
}

header .headtop .jobprtl a:hover {
    color: #000080;
}

header.sticky .hedtop-full {
    margin-top: 0px;
    height: 0;
    -webkit-transition: all .3s linear;
}

header.sticky .hedtop-full .jobprtl {
    display: none;
}

header .headmain {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    background: #016795;

    padding: 10px;
    border-radius: 15px;
}

header .headmain .logocol {
    width: 210px;

    display: flex;
    align-items: center;
    z-index: 1;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
}

/* header.sticky .headmain .logocol{
    width: 200px;
    margin-top: 0;
} */
header .headmain .logocol a {
    display: flex;
    width: 100%;
}

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

/* header.sticky .headmain .logocol a img{
    height: 50px;
} */
header .headmain .menucol {
    flex: 1 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;

}

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

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

header .megamenudonate {
    margin: 0;
}

header .normalmenu {
    position: relative;
}

header .megamenu a.mainli {
    display: flex;
    align-items: center;
    font-weight: 400;
    position: relative;
    color: #fff;
    padding: 7px 0;

}

.mainmenu .megamenu.active a.mainli {
    color: white;
}

header .megamenu-sp button.mainli {
    color: #fff !important;
    position: relative;
    font-size: 0.875rem;
    font-weight: 400;
    padding: 6px 15px;
    background: #f1bb00;
    overflow: hidden;
    z-index: 1;
}

header .megamenu-sp button.mainli img {
    width: 18px;
    margin-right: 5px;
}

header .megamenu-sp button.mainli::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;
}

header .megamenu-sp button.mainli:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}

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


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

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

header .megamenu-content {
    display: flex;
    align-items: center;
    position: absolute;
    background-color: #fff;
    width: 100%;
    max-width: 855px;
    right: -10px;

    border: none;
    z-index: 99;
    height: 0;
    padding: 0 15px;
    overflow: hidden;
    box-shadow: 1px 5px 20px 0px #43b1733d;
    line-height: 1.4;
    border-radius: .3rem;
}

header .normalmenu .megamenu-content {
    width: max-content;
    max-width: 800px;
}

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: 5px;
    min-height: auto;
    height: auto;
}

header .normalmenu .normlist {
    display: flex;
    flex-flow: column;
    font-size: .9rem;
    width: 100%;
}

header .normalmenu .normlist li a {
    color: #4f6b78;
    display: flex;
    padding: 8px 10px;
    border-bottom: 1px solid #0000000d;
}

header .normalmenu .normlist li a:hover {
    color: #000050;
}

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%;
}




.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;
}

@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: 44px;
    }

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

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

    header .headmain .menucol .menutop {
        width: 452px;
    }

    header .headmain .menucol .menutop {
        width: 452px;
    }
}

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

    header .headtop {
        justify-content: center;
    }

    header .headmain .menucol .menutop {
        display: none;
    }
}

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

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

    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;
}

.cd-dropdown .hdtop .menuadmin {
    display: flex;
    width: 100%;
    height: 75px;
    background: #016795;
}

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

.cd-dropdown>.cd-dropdown-content {
    width: 70%;
    right: 30%;
    background-color: #00567d;
    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: #00567d;
}

.cd-dropdown-content a,
.cd-dropdown-content ul a {
    color: #016795;
    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;
    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(1 103 149);
}

.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: #016795;
    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 img {
    width: 25px;
    background-color: transparent;
}


@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 .cmpad {
        padding-left: 15px;
        padding-right: 15px;
    }

    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 {
    display: flex;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: relative;
    top: 0;
}

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

.sliderban .mainSwiper {
    height: 100%;
}

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

.slidecon {
    display: flex;
    flex-direction: column;
    width: 50%;
    position: relative;
    height: 100%;
}

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

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

.slide-img2::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 40%;
    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: 3rem;
    z-index: 11;
}

.bnr-para {
    color: #fff;
}

.sldr-butn {
    display: flex;
    gap: 15px;
    flex-direction: row;
    z-index: 11;
}

.slidericon {
    position: absolute;
    bottom: 8%;
    width: 170px;
    left: -19px;
    opacity: 10%;
}

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


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

    50% {
        transform: scale(1.08) rotate(1deg);
    }

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


.animate_pulse {
    animation: pulse 5s infinite;
}

@keyframes pulse {
    from {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

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

    to {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

.sliderlove2 {
    position: absolute;
    top: 0;
    opacity: 10%;
}

.pulsezoom {
    animation: pulsezoom 6s infinite;
}

@keyframes pulsezoom {
    from {
        -webkit-transform: scale3d(.50, .50, .50);
        transform: scale3d(.50, .50, .50);
    }

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

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

@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;
    }
}



.slider .mainpagination {
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    left: auto;
    right: 1rem;
    bottom: 70px;
    width: auto;
}

.slider .mainpagination .swiper-pagination-bullet {
    background-color: #fdbc25;
    opacity: .75;
    margin: 4px 0;
    width: 10px;
    height: 6px;
    border-radius: .3rem;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
}

.slider .mainpagination .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #feb000;
    width: 25px;
}




/* slidersocial */

.slider-social {
    position: absolute;
    /* bottom: 50%; */
    /* top: 50%; */
    transform: translateY(-50%, -50%);
    z-index: 2;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
}

.social-list {
    display: flex;
    align-items: center;
    /* gap: 8px; */
}

.slider-social .social-list {
    flex-flow: column;
    gap: 5px;
}

.slider-social .social-list li a {
    color: white;
    font-size: .8rem;
    background-color: #f1bb00;
    height: 28px;
    width: 28px;
}

.slider-social .social-list li a:hover {
    transform: unset;
    background-color: #016695;
    scale: 1.1;
    color: #7f1517;
}

.social-list li a {
    padding: 0;
    font-size: .7rem;
    transition: .3s;
    color: #f1f1f1;
    background: #ffffff33;
    height: 23px;
    width: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.social-list li a img {
    width: 13px;
    height: 13px;
}

.slidebottom {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: -46px;
    z-index: 10;
}


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

.updatemain .hdcol {

    color: #fff;
    padding: 0 15px;
    display: flex;
    gap: 10px;
    min-width: 162px;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    height: 46px;
    line-height: normal;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(45deg, #dfad00, #ffcb17, #c39700);
    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 0 0;
    font-size: 0.83rem;
    padding: 11px 16px;
    border: 1px solid #eeeeee4a;
    width: calc(100% - 162px);

}

.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 {
    background: linear-gradient(45deg, #016795, #1a97cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.85rem;
    margin-right: 6px;
    font-weight: 800;
}

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

.gradient {
    background: linear-gradient(45deg, #016795, #1a97cf);
}

.grtxt {
    background: linear-gradient(45deg, #016795, #1a97cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*---------------------------------------*/
/*:::::::::::::::::ABOUT:::::::::::::::::*/
/*---------------------------------------*/
.main-sub {
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(45deg, #016795, #1a97cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.motto {
    font-family: "Playfair Display", serif !important;
    color: #016795;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.motoimg1 {
    width: 26px;
    transform: rotateY(180deg);
    margin-left: 5px;
    margin-bottom: -5px;
}

/* .motocard{
    align-items: center!important;
    text-align: center;
} */


.main-sub2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0070a3;
}

.main-sub3 {
    font-size: 1.5rem;
}

.about {
    position: relative;
}

.abtcontfull {
    position: relative;
    z-index: 1;
        width: 100%;
}

.abtcontfull p {
    text-align: justify;
}

.mainhed {
    font-size: 1.7rem;
    color: #383838;
}

.mainhed2 {
    font-size: 1.9rem;
    color: #383838;
}


.abt-img {
    position: relative;
    z-index: 1;
}

.abt-img img {
    max-width: 100%;
    width: 520px;
    margin-left: auto;
}

.abt-patern {
    height: 120px;
    width: 120px;
    position: absolute;
    top: -35px;
    left: -49px;
    z-index: -1;
}

.abt-patern img {
    border-radius: 50%;
    height: 120px;
    opacity: 55%;
}

.mision-full {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(45deg, #016795, #003f5b);
    border-radius: 15px 15px 15px 0;
    padding: 15px;
    width: 100%;
}

.misioncard {
    border-radius: 10px 10px 10px 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    flex: 1 0;
    padding: 10px 0;
    border-bottom: 1px solid #0075aa8a;
    width: 100%;
}

.misioncard .imgsec {
    background-color: #1e96fc61;
    padding: 8px;
    border-radius: 50%;
}

.misioncard .imgsec img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.misioncard .cont {
    flex: 1 0;
}

.misioncard .cont .cont-hed {
    font-weight: 500;
    color: #f1bb00;
    margin-bottom: 0;
    font-size: 1rem;
}

.misioncard .cont .cont-desc {
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #ffffff;
    text-align: left;
}



.abtundr-ptrn {
    position: absolute;
    /* top: 0; */
    right: 0;
    width: 130px;
    bottom: 0;
    opacity: 0.3;
}

.about-under {
    position: relative;
    background: url(../img/images/about-under.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.about-under::before {
    content: '';
    background: #003b4eed;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.abt-undr {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}

.abt-undr .abt-part {
    width: 410px;
    position: relative;
    margin-top: -37px;
    bottom: -1px;

}

.abt-undr .abt-part img {
    z-index: 11;
    position: relative;
}

.abt-partt {
    display: flex;
    flex-direction: row;
    flex: 1 0 auto;
    gap: 15px;

}

.abt-card {
    padding: 15px 10px;
    border-radius: 25px 25px 25px 0;
    border: 1px solid #0098dc29;
    background: #01679524;
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    flex: 1 0;
}

.abt-card .imgsec {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.abt-card:hover .imgsec {
    box-shadow: 0px 0px 0px #14377000;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.abt-card .imgsec img {
    width: 45px;
    height: 45px;
}

.abt-card .cont .cont-hed {
    font-weight: 700;
    color: #f1bb00;
    margin-bottom: 0;
    font-size: 1.4rem;
}

.abt-card .cont .cont-desc {
    margin-bottom: 0px;
    color: #fff;
}

.abt-patern2 {
    height: 120px;
    width: 120px;
    position: absolute;
    top: 68px;
    right: 31px;
    z-index: 1;
}

.abt-patern2 img {
    width: 120px;
    border-radius: 50%;
}

.abt-part-full {
    width: 100%;
}





/*--------------------------------------------------------*/
/*:::::::::::::::::patrons:::::::::::::::::*/
/*--------------------------------------------------------*/
.patronsslide .patronsSwiper {
    padding-top: 30px;
    padding-bottom: 25px;
}

.patrons-card {
    display: flex;
    flex-direction: row;
    gap: 15px;
    border: 1px solid #0098dc29;
    border-radius: 15px;
    padding: 15px;
    height: 270px;
}

.patrons-card .imgbox {
    flex: 1 0 180px;
    max-width: 180px;
    height: 220px;
    background: linear-gradient(45deg, #0070a3, #002c40);
    border-radius: 20px 20px 20px 0;
}

.patrons-card .imgbox img {
    max-width: 100%;
    border-radius: 20px 20px 20px 0;
}

.patrons-card .imgcont {
    padding: 10px;
    position: relative;
    z-index: 111;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    padding-bottom: 0px;
}

.patrons-card .imgcont .head {
    font-weight: 400;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3sease;
    -webkit-transition: all .3sease;
    margin-bottom: 5px;
}

.patrons-card .imgcont .imghed {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 6px;
}

.patrons-card .imgcont .name {
    font-weight: 700;
    color: #0070a3;
}


.patronsslide .patronspagination {
    display: flex;
    flex-flow: row;
    align-items: flex-end;
    left: auto;
    right: 0;
    bottom: 10px;
    width: 100%;
    justify-content: center;
}

.patronsslide .patronspagination .swiper-pagination-bullet {
    background: #004f73;
    opacity: .75;
    margin: 0 4px;
    width: 10px;
    height: 6px;
    border-radius: .3rem;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
}

.patronsslide .patronspagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: linear-gradient(45deg, #0070a3, #004f73);
    width: 25px;
}




/*--------------------------------------------------------*/
/*:::::::::::::::::SERVICES:::::::::::::::::*/
/*--------------------------------------------------------*/

.news-full {
    display: flex;
    justify-content: space-between;
}

.imgcard {
    display: flex;
    flex-flow: column;
    position: relative;
    /* padding: 10px; */
    height: 100%;
    /* background: #121f34; */
    cursor: pointer;
    border-radius: 25px 15px 15px 0px;
    /* backdrop-filter: blur(5px); */
    border: 1px solid #1d91f340;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.imgcard .stretched-link::after {
    z-index: 1111;
}

.imgcard .imgbox {
    position: relative;
    border-radius: 20px 10px 10px 0;
    overflow: hidden;
}

.imgcard .imgbox .date {
    background: linear-gradient(45deg, #1d91f3, #094b83);
    border-radius: 7px 7px 7px 0;
    position: absolute;
    bottom: 5px;
    left: 5px;
    z-index: 1;
    font-size: 0.8rem;
    color: #fff;
    padding: 4px 5px;
}

.imgcard .imgbox img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    margin: auto;
    position: relative;
    z-index: 1;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.imgcard .imgcont {
    padding: 10px;
    position: relative;
    z-index: 111;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.imgcard .imgcont .head {
    font-weight: 400;

    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    margin-bottom: 5px;
}

.imgcard .imgcont .imghed {
    font-size: 0.9rem;
    font-weight: 500;
    color: #0e0e0e;
    margin-bottom: 6px;
}

.imgcard:hover {
    border: 1px solid #1d93f38e;
    background: #edf8fd;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.imgcard:hover .imgbox img {
    scale: 1.1;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.imgcard:hover .morebtn {
    color: #003e5a;
}

.imgcard:hover .imgbox .date {
    animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}



.newslide .newsSwiper {
    padding-top: 0;
    padding-bottom: 0;
}

.newsSwiper .navibtn {
    top: 0;
}

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

.navibtn .slidebtn {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    background: transparent;
    border: 1px solid #016795;

    margin: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.navibtn .slidebtn:hover {
    background: #016795;
    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: 16px;
    color: #016795;
    font-weight: 600;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

@media(max-width:768px) {
    .serviceshed-full {
        flex-direction: column;
        gap: 0;
    }

    .serviceshed-full p {
        width: 100%;
        margin-bottom: 0px;
    }
}

@media(max-width:575px) {
    .services {
        border-radius: 60px 0 0 0;
    }

    .services::after {
        border-radius: 60px 0 0 0;
    }
}

.newsbutn {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}


/* principal */
.principla-msg {
    border-radius: 20px 20px 0 20px;
    gap: 15px;
    /* border: 1px solid #0070a31f; */
    padding: 20px;
    display: flex;
    flex-direction: row;
    box-shadow: 0px -1px 19px 2px #0070a31a;
}

.princi-cont {
    flex: 1 0;
}

.princi-cont .para {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.princi {
    width: 290px;
    margin-right: 15px;
    margin-top: -35px;
}

.princi img {
    border-radius: 15px 15px 0 15px;
}

/* .aff-bx2{
    background: transparent!important;
} */

.affilition-bx {
    border-radius: 15px 15px 15px 0;
}

.aff-card {
    background: #fff;
    position: relative;
    border-radius: 10px 10px 10px 0;
    display: flex;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    border: 1px solid #0070a31f;
    /* box-shadow: -1px 0px 10px #0070a31f; */
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.aff-card p {
    color: #383838;
}

.aff-card img {
    max-height: 40px;
}

.aff-card:hover {
    /* box-shadow: -1px 0px 12px 4px #0070a31f; */
    border: 1px solid #0070a3ab;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

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




.dep-card {
    background: #fff;
    position: relative;
    border-radius: 10px 10px 10px 0;
    display: flex;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    border: 1px solid #0070a31f;
    /* box-shadow: -1px 0px 10px #0070a31f; */
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    height: 100%;
}

.dep-card p {
    color: #383838;
    text-align: center;
}

.dep-card .icon {
    background: #000050;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.colorlist>*:nth-child(4n+1) .icon,
.colorlist.reverse>*:nth-child(4n+4) .icon {
    background: linear-gradient(120deg, #FF595E 0%, #D70006 100%);
}

.colorlist>*:nth-child(4n+2) .icon,
.colorlist.reverse>*:nth-child(4n+3) .icon {
    background: linear-gradient(120deg, #FF924C 0%, #CC5000 100%);
}

.colorlist>*:nth-child(4n+3) .icon,
.colorlist.reverse>*:nth-child(4n+2) .icon {
    background: linear-gradient(120deg, #8AC926 0%, #5A9300 100%);
}

.colorlist>*:nth-child(4n+4) .icon,
.colorlist.reverse>*:nth-child(4n+1) .icon {
    background: linear-gradient(120deg, #1982C4 0%, #005A93 100%);
}





.dep-card img {
    filter: brightness(0) invert(1);
}

.dep-card:hover {
    /* box-shadow: -1px 0px 12px 4px #0070a31f; */
    border: 1px solid #0070a3ab;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    background: #eaf9ff;
}

.department-full {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

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

/*---------------------------------------*/
/*::::::::::::::::::ALUMNI::::::::::::::*/
/*---------------------------------------*/
.alumnicard {
    display: flex;
    flex-flow: column;
    position: relative;
    /* padding: 10px; */
    height: 100%;

    border-radius: 25px 15px 15px 0px;
    /* backdrop-filter: blur(5px); */
}

.alumnicard .stretched-link::after {
    z-index: 1111;
}

.alumnicard .imgbox {
    position: relative;
    border-radius: 20px 10px 10px 0;
    overflow: hidden;
}

.alumnicard .imgbox .date {
    background: linear-gradient(45deg, #072AC8, #1E96FC);
    border-radius: 7px 7px 7px 0;
    position: absolute;
    bottom: 5px;
    left: 5px;
    z-index: 1;
    font-size: 0.8rem;
    color: #fff;
    padding: 4px 5px;
}

.alumnicard .imgbox img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin: auto;
    position: relative;
    z-index: 1;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.alumnicard .imgcont {
    padding: 10px;
    position: relative;
    z-index: 111;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    margin: -20px 10px 0;
    background: linear-gradient(to right, #016795, #1a97cf, #016795, #1a97cf);
    border-radius: 10px 10px 10px 0;
    background-size: 300% 100%;
    overflow: hidden;
}

.alumnicard .imgcont .head {
    font-weight: 400;

    font-size: 0.9rem;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    margin-bottom: 0px;
    color: #d1f1ff;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.alumnicard .imgcont .imghed {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.alumnicard:hover {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.alumnicard:hover .imgcont {
    background-position: 100% 0;
}

.alumnislide .alumniSwiper {
    padding-top: 0;
    padding-bottom: 0px;
}

.alumniline {
    position: absolute;
    bottom: 0;
    height: 4px;
    width: 93%;
    border-radius: 0 25px 25px 0;
    left: 0;
    background: #f1bb00;
}

.alumninav {
    top: 0;
}


.callto {
    background: url(../img/images/about-under.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 15px 15px 15px 0;
    height: 100%;
    background-position: center;
    position: relative;
    padding: 20px;
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.callto h2 {
    position: relative;
}

.callto::before {
    content: '';
    background: #003b4eed;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 15px 15px 15px 0;
}


/*--------------------------------------------------------*/
/*:::::::::::::::::EVENT:::::::::::::::::*/
/*--------------------------------------------------------*/
.eventsslide {
    height: 207px;
}

.events-bx {
    padding: 20px;
    border-radius: 15px 15px 15px 0;
    background: linear-gradient(45deg, #016795, #003f5b);
    /* border: 1px solid #0070a31f;
    box-shadow: 0px -2px 19px 2px #0070a336; */
}

.eventcard {
    /* padding: 15px; */
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    position: relative;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.eventcard .cont {
    display: flex;
    flex-flow: wrap;
    margin-bottom: 0;
        align-items: center;
}

.eventcard .cont .date {
    width: 60px;
    height: 54px;
    background-color: #ffffff3d;
    color: #ffffff;
    border-radius: .5rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
    text-align: center;
    font-size: 0.7rem;
    line-height: normal;
    margin-right: 10px;
}

.eventcard .cont .evncont {
    flex: 1 0;
}

.eventcard .cont .evncont p {
    color: #fff;
        margin-bottom: 0px;
}

.eventcard:hover .cont .date {
    background-color: #FFC600;
    color: #000000;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

/*--------------------------------------------------------*/
/*:::::::::::::::::gallery:::::::::::::::::*/
/*--------------------------------------------------------*/
.galcard {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    cursor: zoom-in;
    height: 200px;
}

.galcard::after {
    content: '';
    position: absolute;
    height: 94%;
    width: 96%;

    left: 2%;
    right: auto;
    /* margin: auto; */
    /* display: block; */
    top: 3%;
    border-radius: 12px;
}

.galcard .galimg {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    width: 100%;
}

.galcard .galimg .coverimg {
    width: 100%;
    height: 200px;
    /* min-height: 190px; */
    object-fit: cover;
    border-radius: 15px;
}

.galcard:hover .galimg .coverimg {
    scale: 1.1;
}

.galcard:hover::after {
    height: 94%;
    top: 3%;
    width: 96%;
    left: 2%;

    background: linear-gradient(45deg, #0098dc3d, #31369585);
    backdrop-filter: blur(2px);
}

.galcard .galimg .proicon {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin: auto;
    opacity: 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

.galcard .galcont {
    position: absolute;
    bottom: 3%;
    background: linear-gradient(45deg, #0070a3, #313695);
    text-align: center;
    left: 2%;
    backdrop-filter: blur(4px);
    padding: 7px;
    width: 96%;
    border-radius: 5px 5px 15px 15px;
    opacity: 1;
    transition: all 0.5sease;
    -webkit-transition: all 0.5sease;
    z-index: 11;
}

.galcard .galcont .head {
    font-weight: 400;
    color: #e0ecff;
    font-size: 0.875rem;
    margin-bottom: 0px;
}

.galcard:hover .galcont {

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

.galcard:hover .galimg .proicon {
    opacity: 1;
    -webkit-transition: all 0.5s ease;
}

.galcard .galimg .proicon img {
    width: 44px;
    height: 44px;
    padding: 9px;
    border-radius: 50%;
}

.galcard:hover .galimg .proicon img {
    background: linear-gradient(45deg, #0098dc, #313695);
}


.galeryslide .galerypagination {
    display: flex;
    flex-flow: row;
    align-items: flex-end;
    left: auto;
    right: 0;
    bottom: 1px;
    width: 100%;
    justify-content: center;
}

.galeryslide .galerypagination .swiper-pagination-bullet {
    background: #0098dc;
    opacity: .75;
    margin: 0 4px;
    width: 10px;
    height: 6px;
    border-radius: .3rem;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
}

.galeryslide .galerypagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: linear-gradient(45deg, #0098dc, #313695);
    width: 25px;
}

.galeryslide .galerySwiper {
    padding-top: 0;
    padding-bottom: 25px;
}

/*---------------------------------------*/
/*::::::::::::::TESTIMONIALS:::::::::::::::*/
/*---------------------------------------*/
.testimonialsfull {
    background: #121F34;
    padding-top: 150px;
    margin-top: -100px;
    position: relative;
}

.tetimonialslide {
    padding-left: 30px;
}

.testimonialsfull::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: url(../img/icons/patern.svg);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 4%;
    top: 0;
}


.tetimonialslide .testimonialsSwiper {
    padding-top: 57px;
    padding-bottom: 20px;
}

.testmonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    gap: .5rem;
    padding: 20px;
    border-radius: 15px;
    background: #bb7701;
    height: 100%;

    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.testmonial-card:hover {}

.testmonial-card .profile {
    display: flex;
    position: relative;
    align-items: center;
}

.testmonial-card .profile img {
    border-radius: 50%;
    width: 50px;
    z-index: 1;
}



.testmonial-card .cardcont {
    margin-top: 5px;
}

.testmonial-card .desc {
    margin: 0;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testmonial-card .descttl {
    color: #fff;
    font-weight: 400;
    padding: 5px 23px;
    border-radius: 0 5px 5px 0;
    left: -11px;
    position: relative;
    /* border: 1px solid #121f3426; */
    /* background: linear-gradient(90deg, #121f3466, transparent); */
}

.quote {
    margin-top: -51px;
}

.quote img {
    width: 75px;
}

.testmonial-card .profilefull {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
}



/*---------------------------------------*/
/*::::::::::::::::::GALLERY::::::::::::::*/
/*---------------------------------------*/

.galbox {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
    border: 1px solid #eee;
    cursor: zoom-in;
    height: 190px;
}

.galbox .galimg {
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    width: 100%;
}

.galbox .galimg .coverimg {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
}

.galbox:hover .galimg .coverimg {
    filter: brightness(0.5);
}

.galbox .galimg .galicon {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin: auto;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

.galbox:hover .galimg .galicon {
    opacity: 1;
    -webkit-transition: all 0.5s ease;
}

.galbox .galimg .galicon img {
    width: 44px;
    height: 44px;
    padding: 9px;
    background-color: rgb(0 0 0 / 20%);
    border-radius: 50%;
}

.galbox:hover .galimg .galicon img {
    background: rgb(0 145 63 / 65%);
}

.galbox .galcont {
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #00913f9e;
    display: flex;
    align-items: flex-end;
    color: #fff;
    backdrop-filter: blur(2px);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
}

.galbox:hover .galcont {
    opacity: 1;
}

.galbox .galcont span {
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: var(--font14);
}

.galvideo {
    height: 220px;
}

.galeryfrst {
    display: flex;
    gap: 10px;
    flex-direction: column;
}



/*---------------------------------------*/
/*::::::::::::::::::FOOTER::::::::::::::*/
/*---------------------------------------*/
footer {
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;

    background-image: url(../img/images/footerbac.jpg);
}

footer::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(45deg, #0070a3, #012c40);
    opacity: 100%;
    top: 0;
}


.ftlogo {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 30px;
    height: 100%;
    align-items: center;
    border-bottom: 1px solid #ffffff26;
}

.ftlogo a {
    width: 210px;
    flex: 1 0 270px;
    padding-right: 25px;
    border-right: 1px solid #ffffff26;
}

.ftlogo p {
    color: #fff;
}

.ftlogo .ftcall {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.ftlogo .ftcall a {
    font-size: 0.875rem;
    color: #fff;
    font-weight: 400;
}

.ftlogo .ftcall img {
    background: #121f34b8;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}



.ftlinks ul li {
    margin-bottom: 5px;
}

.ftlinks ul li a {
    font-size: 0.875rem;
    color: #ffffffb8;
    font-weight: 400;
}

.ftlinks ul li a:hover {
    color: #fff;
}

.ftlinksfull {
    position: relative;
    z-index: 1;
}

.ftlinks .ftdesc {
    font-size: 0.875rem;
    color: #ffffffb8;
    line-height: 22px;
}

.menuhed {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
}

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

.ft-social a span {
    width: 30px;
    height: 30px;
    display: flex;
    background: #034f70;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.ft-social a:hover span {
    background: #003d58;
}

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

.ft-copy-full {
    background: #009340b8;
    backdrop-filter: blur(2px);
    padding: 10px 0;
    z-index: 1;
    position: relative;
}

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

.ftcopy p,
.ftcopy a {
    color: #fff;
    font-weight: 400;
    font-size: 0.875rem;
}

.ft-con {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 5px;

}

.ftlogo p a {
    color: #ffffff;
}

.visitor {
    display: flex;
    justify-content: center;
}

.visitor p {
    padding: 1px 37px;
    background: #034f72;
    border-radius: 10px 10px 0 0;
    color: #ffffff9e;
}

.visitor p span {

    color: #fff;
}

@media(max-width:767px) {}

@media(max-width:575px) {

    .ftcopy {

        flex-direction: column;
    }

}








/*modal*/
.close {
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: none !important;
    outline: none;
    color: #220f3c;
}

.modal-dialog {
    max-width: 1000px !important;
}

.modal-header {
    border-bottom: none !important;
    padding: 0;
}

.modal-content,
.modal {
    height: 100% !important;
    padding: .5rem;
}

.i-flex {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #cec0a8;
    padding: 10px;
}

.sign {
    display: none;
}

.loginimg {
    border-radius: 15px;
}

.modal-sucess {
    width: 300px;
    height: auto !important;
    background: #fff !important;
    text-align: center;
}

#successModal .modal-dialog {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sucessimg {
    width: 65px;
    margin: auto;
}


@media(max-width:991px) {
    .abt-img {
        margin-top: 35px;

    }

    .abt-img img {
        margin-left: 0;
        height: auto;
        margin-bottom: 15px;
    }

    .mision-full {
        margin-top: 10px;
    }

    .events-bx {
        margin-bottom: 15px;
    }

    .newsbutn .btn {
        display: none;
    }

    .callto {
        margin-top: 30px;
    }

    .ftmobb {
        display: none;
    }



}

@media(max-width:767px) {
    .ftlogo {
        flex-direction: column;
        text-align: center;
    }

    .ftlogo a {
        width: 210px;
        flex: none;
        padding-right: 0;
        border-right: none;
    }
    .slider{
        height: 70vh;
    }
    .sliderban{
        height: 70vh;
    }
    .slide-img{
        height: 70vh;
    }
    .slider-social{
        top: 145px;
    }
    .abt-img{
        margin-top: 0px
    }
}

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

    .principla-msg {
        flex-direction: column;
    }

    .abt-card {
        flex: 1 1 calc(50% - 10px);
    }

    .abt-partt {
        flex-wrap: wrap;
    }

    .princi {
        max-width: 290px;
        width: 100%;
    }
 .slider{
        height: 400px;
    }
    .sliderban{
        height: 400px;
    }
    .slide-img{
        height:400px;
    }

}

@media(max-width:400px){
    .slider{
        height: 360px;
    }
    .sliderban{
        height: 360px;
    }
    .slide-img{
        height:360px;
    }
}
@media(max-width:360px){
    .alumnicard .imgbox img{
        height: 250px;
    }
}



.swiper-scrollbar {
  height: 5px;
  background: #01679545;
  border-radius: 5px;
  margin-top: 10px;
}

.swiper-scrollbar-drag {
  background: #016795;
  border-radius: 5px;
}


