:root {
    --red: #6d8710;
    --red_dark: #546809;
    --red_light: #9db64263;
    --red10: #8fa739;
    --orange: #204a73;
    --white: #fff;
    --orange_light: #ffc5d8;
    --black: #303030;
    --textclr: #555555;
    --lightgrad: linear-gradient(120deg, #214b74, #061a2e);
   
    
    --purple_gradient: linear-gradient(45deg, #214B74, #500073);
    
    --trans30: all 0.3s ease;
    --font12: 0.75rem;
    --font13: 0.813rem;
    --font14: 0.875rem;
    --font16: 1rem;
    --font18: 1.125rem;
    --font20: 1.25rem;
    --font30: 1.875rem;
    --font32: 2rem;
}
html {
    scroll-behavior: smooth;
}
body {
    font-size: var(--font16);
    font-family: "Mulish", sans-serif;
    color: var(--black);
    font-weight: 500;
    padding-top: 130px;
    background:linear-gradient(177deg, #f9eaff, #e6f2ff 25%);
   
}
.mal {
    font-family: "Anek Malayalam", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
body.mal {
    font-size: var(--font14);
    font-weight: 450;
}

a {
    color: #ffffff;
    text-decoration: none !important;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
p {
    color: var(--textclr);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #2c3e50;
}
ul {
    padding-left: 0px;
    list-style-type: none;
    margin: 0;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}

@media (min-width: 1366px) {
    .cmpad {
        max-width: 1460px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 80px;
        padding-right: 80px;
    }
}
@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 (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: rgb(0 0 0 / 5%);
    }
    .custscrollA::-webkit-scrollbar-track {
        background: transparent;
    }
    .custscrollA::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 6px;
    }
    .custscrollA::-webkit-scrollbar-thumb:hover {
        background-color: #999;
    }
}

.btn {
    padding: 8px 15px;
    min-height: 40px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    border: none;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}

.btn-primary {
    background-color: #214b74;
    color: #fff;
}
.btn-primary:hover {
    background-color: #500072;
}

.btn-red {
    background-color: #D91656;
    color: #fff;
}
.btn-red:hover {
    background-color: #500072;
}

.btn-secondary {
    color: var(--red);
    border: 1px solid var(--red);
}
.btn-white {
    background-color: #d91656;
    color: var(--white);
}
.btn-secondary:hover,
.btn-white:hover {
    background-color: #e5306c;
    color: #fff;
}

.btn-white img{
     filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.btn-outline {
    color: var(--white);
    border: 1px solid var(--white);
}
.btn-outline:hover {
    background-color: var(--orange);
    color: #fff;
}
.btn-outline img{
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.btn-secondary:hover img,
.btn-white:hover img,
.btn-outline:hover img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    color: #fff;
}

.social {
    display: flex;
    flex-flow: wrap;
    gap: 5px;
}
.social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.social a:hover {
    background-color: #d91656;
}
.social a img {
    width: 16px;
    max-height: 16px;
}
.social a:hover img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.morebtn {
    display: inline-flex;
    gap: 3px;
    align-items: center;
    color: var(--black);
    font-weight: 600;
    cursor: pointer;
}
.morebtn:after {
    content: "";
    display: flex;
    width: 14px;
    height: 1.5px;
    background-color: var(--orange);
}
.morebtn:hover:after {
    animation: moveRight 1s infinite;
}

h2.mainhead {
    font-weight: 900;
    font-size: 2.25rem;
}

.posrel {
    position: relative !important;
}

@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);
    }
}

/*---------------------------------------*/
/*::::::::::::::::HEADER:::::::::::::::::*/
/*---------------------------------------*/
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
    display: flex;
    align-items: flex-end;
}

header:before {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, #500073, #C62300);
    width: 100%;
    inset: 0;
    height: 108px;
}

header.active {
    margin-top: -130px;
    transition: var(--trans30);
}

header .hdmainrow {
    display: flex;
    position: relative;
}
header .headmain {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 10px;
    transition: var(--trans30);
    position: relative;
}
header .hdmainrow .strip {
    flex: 1 0;
    position: absolute;
    width: 65px;
    right: 0;
    bottom: 0;
    border-radius: 6px 0 0 6px;
}
header .mainstrip,
header .hdmainrow .strip {
    height: 40px;
    background-color: #d91656;
}
header .mainstrip {
    z-index: 1;
    position: relative;
}

header.active .headmain {
    padding: 5px 0;
    transition: var(--trans30);
}
header .headmain .logocol {
    width: 560px;
    transition: var(--trans30);
}
header .headmain .logocol img {
    height: 70px;
    width: 100%;
    object-fit: contain;
}

header .headmain .menucol {
    flex: 1 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.head-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.head-right .info {
    margin-bottom: 10px;
    font-size: 0.825rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}
.head-right .item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    height: 40px;
    width: max-content;
}
.head-right .langbtn {
    padding: 0 10px;
    font-weight: 500;
}

.head-right .head-btns {
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.head-right .head-btns li {
    position: relative;
    display: flex;
    align-items: center;
}
.head-right .head-btns li:after {
    content: "";
    width: 18px;
    height: 1px;
    background-color: var(--black);
    opacity: 0.2;
    margin: 0 8px;
    display: none;
}
.head-right .head-btns li:last-child::after {
    display: none;
}

.head-right .head-btns .access {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFB200;
    background-color: #ffffff;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.head-right .head-btns .access:hover,
.head-right .head-btns .access.active {
    background-color: #FFB200;
    border: 1px solid #FFB200;
}
.head-right .head-btns .access:hover img,
.head-right .head-btns .access.active img {
    filter: brightness(0) invert(1);
}

.head-right .logo img {
    height: 70px;
    width: 100%;
    object-fit: contain;
}
.head-right .logoscdd img {
    height: 40px;
 
}

.menu-sec {
    width: 100%;
    display: flex;
    gap: 16px;
}

.menu-sec .menu-sec-right {
    width: 300px;
    position: relative;
}

.menu-sec .menu-sec-right input {
    width: 100%;
    background-color: white;
    border: none;
    padding: 0 15px;
    height: 40px;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: var(--trans30);
    border: 1px solid #eee;
}
.menu-sec .menu-sec-right input:focus {
    border: 1px solid #ffd2d4;
    outline: none;
}
.menu-sec .menu-sec-right .srchbtn {
    position: absolute;
    width: 40px;
    right: 0;
    top: 0;
    height: 100%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: transparent;
    padding: 0;
}

.menu-sec .menu-sec-left {
    flex: 1 0;
}
.dropmain .dropdownmenu {
    top: 100%;
    right: 0;
    min-width: 280px;
    position: absolute;
    z-index: 9;
    display: none;
    background-color: #fff;
    border-radius: 6px;
    padding: 10px;
}
.dropmain:hover .dropdownmenu {
    display: block;
}
.dropmain:hover .dropdown-btn {
    background-color: #e5306c;
    color: #fff;
}
.dropmain:hover .dropdown-btn img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.accosmall {
    font-size: var(--font14);
    display: flex;
    flex-flow: column;
    row-gap: 8px;
}
.accosmall .accordion-item {
    border: 1px solid #eee;
    border-radius: 6px;
    background-color: var(--orange_light);
}
.accosmall .accordion-button {
    box-shadow: none;
    color: var(--textclr);
    padding: 10px 15px;
    font-size: var(--font14);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    border-radius: 6px;
}
.accosmall .accordion-button:hover {
    background-color: #f9f9f9;
    color: #d91656;
}
.accosmall .accordion-button:not(.collapsed),
.accosmall .accordion-button:not(.collapsed):hover {
    background-color: #d91656;
    color: var(--white);
}
.accosmall .accordion-button:after {
    background-size: 10px;
    background-position: center;
    position: absolute;
    right: 10px;
}
.accosmall .accordion-button img {
    opacity: 0.5;
    width: 20px;
}
.accosmall .accordion-button:hover img,
.accosmall .accordion-button:not(.collapsed) img {
    opacity: 1;
    
}

.accosmall .accordion-button:not(.collapsed) img {
    opacity: 1;
    filter: brightness(0) invert(1);
}
.accosmall .loginlist {
    display: flex;
    flex-flow: column;
    gap: 10px;
    padding: 10px;
}
.accosmall .loginlist a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border: 1px solid var(--orange_light);
    background-color: rgb(255 255 255 / 75%);
    border-radius: 6px;
    color: var(--textclr);
    position: relative;
    font-size: var(--font13);
}
.accosmall .loginlist a:hover {
    color: #d91656;
    border-color: #ff73a1;
    background-color: rgb(255 255 255 / 80%);
}
.accosmall .loginlist a:after {
    content: "";
    display: inline-block;
    opacity: 0.25;
    border-left: 5px solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
.accosmall .loginlist a:hover:after {
    animation: moveRight 1s infinite;
    opacity: 1;
}
.mainmenulist {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #D91656;
    padding: 0 20px;
    height: 100%;
    border-radius: 6px;
    position: relative;
}

header .normalmenu {
    position: relative;
}
header .megamenu a.mainli {
    display: flex;
    height: 40px;
    align-items: center;
    position: relative;
}
header .megamenu:hover a.mainli,
header .megamenu.active a.mainli,
header .megamenu.active:hover a.mainli {
    color: #FFB200;
}
header .megamenu-content {
    display: flex;
    align-items: center;
    position: absolute;
    background-color: #fff;
    min-width: 300px;
    max-width: 660px;
    border: none;
    z-index: 99;
    height: 0;
    /*padding: 0 15px;*/
    overflow: hidden;
    margin-left: -15px;
    box-shadow: 4px 6px 20px rgb(0 0 0 / 10%);
    line-height: 1.4;
    border-radius: 6px;
}
header .normalmenu .megamenu-content {
    left: -15px;
    width: max-content;
    max-width: none;
    min-width: 175px;
}
header .megamenu:hover .megamenu-content {
    height: auto;
    align-items: flex-start;
    padding-top: 10px;
    overflow: visible;
    padding-bottom: 10px;
    animation-name: fadeIn;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
}

.megaboxmain {
    display: flex;
    flex-flow: wrap;
    row-gap: 15px;
    width: 100%;
}
.megaboxmain .megabox {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    width: 100%;
}
header .megalist {
    display: flex;
    flex-flow: column;
}
.megalist.listfifty {
    flex-flow: wrap;
    gap: 0 15px;
}
.megalist.listfifty li {
    width: calc(50% - 8px);
}
.megalist li {
    border-bottom: 1px solid rgb(0 0 0 / 5%);
    display: flex;
    align-items: center;
    padding: 0 15px;
}
.megalist li:last-child {
    border: none;
}
header .megalist a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--textclr);
    padding: 12px 0;
}
header .megalist a:hover {
    color: #d91656;
}
header .megalist a img {
    opacity: 0.4;
    width: 20px;
    min-width: 20px;
}
header .megalist a:hover img {
    opacity: 0.8;
}

.accessbox {
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #eee;
    box-shadow: 10px 10px 20px rgb(0 0 0 / 5%);
    position: absolute;
    z-index: 1;
    width: 300px;
    /* left: 0; */
    right: 2%;
    /* margin: auto; */
    padding: 20px;
    display: none;
    top: 62%;
}
.accessbox .hdbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.accessbox .hdbox .head {
    font-weight: 700;
    font-size: var(--font16);
    color: var(--black);
    margin: 0;
}
.accessbox .hdbox button {
    width: 13px;
    height: 13px;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}
.accessbox .acclist {
    display: flex;
    flex-flow: wrap;
    font-size: 0.9rem;
    gap: 15px;
}
.accessbox .accbtn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #f9f9f9;
    color: var(--textclr);
    font-weight: 600;
    border-radius: 6px;
    padding: 15px 0;
    gap: 10px;
    width: 120px;
    cursor: pointer;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.accessbox .accbtn:hover {
    background-color: var(--red10);
}
.acclink {
    display: flex;
    flex-direction: column;
    font-size: var(--font13);
    margin-top: 15px;
}
.acclink li {
    border-top: 1px solid rgb(0 0 0 / 5%);
}
.acclink li a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--textclr);
    height: 40px;
    position: relative;
}
.acclink li a:hover {
    color: var(--red);
}
.acclink li a:after {
    content: "";
    position: absolute;
    right: 0;
    right: 0;
    border-left: 5px solid var(--black);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    opacity: 0.5;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.acclink li a:hover:after {
    opacity: 1;
}

/*---------------------------------------*/
/*::::::::::::::::SLIDER:::::::::::::::::*/
/*---------------------------------------*/

.slider {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: -22px;
}
.slider-con {
    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: flex-start;
    flex-flow: column;
    justify-content: center;
    width: 100%;
    left: 0;
    right: 0;
    color: #fff;
}
.slider .mainslider,
.slider .mainslider .swiper-slide,
.slider .mainslider .slideimg {
    height: 100%;
}

.slider .mainslider .slideimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider h1 {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: #fff;
}
.slider h1 span {
    width: 100%;
    font-weight: 400;
    font-size: 1.25rem;
    text-transform: uppercase;
}
.slider .btn {
    height: 50px;
    padding: 0 25px;
    background-color: #d91656;
}
.slider .btn:hover{
     background-color: #500073;
}
.slider .social {
    position: absolute;
    bottom: 30px;
    left: 25px;
    z-index: 1;
    flex-flow: column;
}
.slider .social a img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.slidebottom {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: -15px;
}
.mainpagination {
    position: relative;
    text-align: left;
    display: flex;
    gap: 10px;
    bottom: auto !important;
    top: auto !important;
    margin-bottom: 15px;
}
.mainpagination .swiper-pagination-bullet {
    background-color: var(--black);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 !important;
    border: 1px solid rgb(255 255 255 / 20%);
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.mainpagination .swiper-pagination-bullet-active {
    background-color: #d91656;
    box-shadow: 0 0 0 2px rgb(255 255 255 / 25%);
}

.updatemain {
    display: flex;
    gap: 10px;
}
.updatemain .hdcol {
    background-color: var(--red_light);
    color: white;
    min-width: 138px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font16);
    height: 46px;
    font-weight: 600;
    line-height: normal;
    border-radius: 6px;
    z-index:12;
}
.upslidemain {
    background-color: #fff;
    height: 46px;
    border-radius: 6px;
    font-size: var(--font14);
    padding: 11px 16px;
    border: 1px solid #eee;
    width: calc(100% - 135px);
}
.updateslide .swiper-slide {
    width: auto !important;
}
.updateslide a {
    color: var(--textclr);
    position: relative;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    line-height: normal;
    font-weight: 500;
    font-size: var(--font18);
}
.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: var(--black);
}

.iconcard {
    display: flex;
    flex-flow: column;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #25457438;
    gap: 15px;
    border-radius: 6px;
    line-height: 20px;
        flex-direction: row;
        height: 100%;
        position:relative;
}
.iconcard .icon {
    width: 50px;
    height: 50px;
    display: flex;
    /*margin-top: -50px;*/
}
.iconcard .cardhead {
    font-size: var(--font16);
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
    flex: 1 0;
}
.iconcard .desc {
    font-size: var(--font14);
    margin: 0;
}

.countlist {
    display: flex;
    flex-flow: wrap;
    /*justify-content: space-between;*/
    /*gap: 5px;*/
    margin: -5px;
}
.countlist li {
    flex: 1 0 25%;
    max-width: 25%;
    padding: 5px;

}
.countlist .value {
    font-size: var(--font30);
    font-weight: 900;
    color: #214B74;
    width: 65px;
}
.countlist .name {
    font-size: var(--font14);
    line-height: 16px;
    font-weight: 700;
    flex: 1 0;
}
.countlist .count{
    border: 1px solid #4f037329;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    transition: .3s;
}
.countlist .count:hover{
    border: 1px solid #4f037385;
    background: #fdf8ff82;
}
    


.scimg {
    position: absolute;
    width: 200px;
    left: auto;
    right: 7rem;
    z-index: -1;
    top: 5px;
}
.empimg {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

.overview::after {
    content: "";
    position: absolute;
    left: 0;
    width: 80%;
    height: 260px;
    border-bottom-right-radius: 6px;
    background-color: var(--orange_light);
    background-image: var(--lightgrad);
    bottom: 1rem;
    z-index: -1;
}

/* IMAGE CARD */
.imgcard {
    display: flex;
    flex-flow: column;
    position: relative;
}
.imgcard .date {
    position: absolute;
    z-index: 2;
    top: 5px;
    left: 25px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 5px;
    font-size: 0.7rem;
    background-color: #fff;
    border-radius: 5px;
    color: var(--textclr);
    font-weight: 600;
}
.imgcard .imgbox {
    position: relative;
    margin: 15px 20px 0 20px;
    height: 260px;
    overflow: hidden;
}
.imgcard .imgbox img {
    border-radius: 6px 6px 0 0;
    border: 1px solid #eee;
    width: 300px;
    margin: auto;
    position: relative;
    z-index: 1;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.imgcard:hover .imgbox img {
    transform: scale(1.05) translateY(-5px);
}
.imgcard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 50%;
    border-radius: 6px;
    background: var(--purple_gradient);
}
.imgcard .imgbox::after {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: 0;
    right: -10px;
    height: 25%;
    width: 25%;
    border-radius: 6px;
    border-bottom-right-radius: 0;
    background-color: #2a5d8f;
}
.imgcard .moreicon {
    width: 40px;
    height: 40px;
    background-color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1rem;
    right: 1.75rem;
    z-index: 2;
    opacity: 0;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
    pointer-events: none;
}
.imgcard .moreicon img {
    width: 12px;
}
.imgcard:hover .moreicon {
    opacity: 1;
    animation: moveRight 1s infinite;
}
.imgcard .imgcont {
    min-width: 210px;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #eee;
    background-color: #fff;
    position: relative;
    z-index: 1;
    margin-top: -15px;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.imgcard:hover .imgcont {
    border-color: #4f0173;
}
.imgcard .imgcont p {
    margin: 0;
}
.imgcard .imgcont .head {
    font-weight: 700;
    color: var(--black);
    font-size: var(--font14);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.imgcard:hover .imgcont .head {
    color: #214b74;
}
.imgcard .imgcont .desc {
    font-size: var(--font13);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.imgcard.grid {
    flex-flow: row;
}
.imgcard.grid .imgbox {
    width: 80px;
    flex: 1 0 80px;
    margin: 5px;
}
.imgcard.grid .imgcont {
    width: calc(100% - 80px);
    margin: 0;
    border-radius: 0;
    padding: 0 0 0 15px;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.imgcard.grid .imgcont .head {
    font-size: var(--font13);
}
.imgcard.grid .imgbox img {
    border-radius: 6px;
}
.imgcard.grid .date {
    position: unset;
    width: 100%;
    padding: 0;
}

.d-flex-end {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.element {
    background-image: url(../img/icons/round.svg);
    background-repeat: no-repeat;
    background-size: 200px;
    width: 200px;
    height: 200px;
    position: absolute;
    z-index: -1;
}
.element.lg {
    width: 300px;
    height: 300px;
    background-size: 300px;
}
.element.lg50 {
    width: 150px;
}
.element.md {
    width: 250px;
    height: 250px;
    background-size: 250px;
}
.element.md50 {
    width: 125px;
}
.element.sm {
    width: 120px;
    height: 120px;
    background-size: 120px;
}
.element.sm50 {
    width: 60px;
}
.element.rt {
    background-position: left;
    right: 0;
}
.element.lt {
    background-position: right;
    left: 0;
}

.elementoff {
    left: 15%;
    top: 15%;
    z-index: 0;
}
.eleovlt {
    top: 250px;
}
.elenewslt {
    bottom: 0;
}
.elemediamid {
    right: 40%;
    top: 0;
}
.elemediart {
    top: 20%;
}

.schememain::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 6px;
    height: 160px;
    background: #1f476e;
    opacity: 20%;
}
.swiper.h-auto .swiper-slide {
    height: auto !important;
}
.mycard {
    display: flex;
    flex-flow: column;
    background-color: var(--orange_light);
    background-image: var(--lightgrad);
    border: 1px solid #1e476e;
    border-radius: 6px;
    padding: 15px;
    height: 100%;
    position: relative;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.mycard:hover {
    border-color: #75066b4a;
}
.mycard .cardimg {
    overflow: hidden;
    border-radius: 6px;
    max-height: 180px;
}
.mycard .cardimg img {
    border-radius: 6px;
    width: 300px;
    height: 100%;
    object-fit: cover;
    margin: auto;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.mycard:hover .cardimg img {
    transform: scale(1.1);
}
.mycard .cardcont {
    display: flex;
    flex-flow: column;
    gap: 15px;
    margin-top: 20px;
}
.mycard .cardcont .infolist {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    font-size: var(--font13);
}
.mycard .cardcont .infolist .item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.mycard .cardcont .infolist .item img{
    filter: brightness(0) invert(1);
}
.mycard .cardcont .infolist .item span{
    color: #fff;
}
.mycard .cardcont p {
    margin: 0;
}
.mycard .cardcont .head {
    font-weight: 700;
    color: var(--white);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.logocard {
    display: flex
;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #214b7447;
    /*min-height: 230px;*/
}
.logocard .cardimg {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logocard .cardimg img {
    height: 100%;
    width: 160px;
    object-fit: contain;
}
.logocard ul {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    font-size: var(--font14);
    gap: 8px;
}
.logocard ul li {
    flex: 1 0 auto;
}
.logocard .desc {
    font-size: var(--font14);
}
.logocard ul a {
    border: 1px solid #eee;
    border-radius: 6px;
    display: flex
;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 0 8px;
    height: auto;
    gap: 0;
    flex-direction: column;
}
.logocard ul a:hover {
    background-color: #5b0368;
    color: var(--white);
    border-color: #5b0368;
    gap:6px;
}


.logocard ul a span{
    visibility: hidden;
    width: 0;
    height: 0;
}
.logocard ul a:hover img{
    display: none;
}
.logocard ul a:hover span{
    visibility: visible;
    width: auto;
    height: auto;
}
.headrow {
    display: flex;
}
.headrow .col {
    flex: auto;
}
.navibtn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}
.navibtn .btgroup {
    display: flex;
    align-items: center;
    gap: 5px;
}
.navibtn .btgroup .line {
    display: inline-flex;
    width: 20px;
    height: 2px;
    background-color: rgb(0 0 0 / 10%);
}
.navibtn .slidebtn {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #204a72c2;
    border: 1px solid #143d64;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.navibtn .slidebtn:hover {
    background-color: #204a72;
}
.navibtn .slidebtn:after {
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.navibtn .slidebtn:hover:after {
    color: #fff;
}

.orderscontact {
    background-image: url(../img/images/bluebac.svg);
    background-size: cover;
    background-position: center;
}
.ordermain {
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 20px;
}

.mytabs .nav-tabs {
    display: flex;
    flex-flow: nowrap;
    gap: 15px;
    border: none;
    margin-bottom: 20px;
    overflow: hidden;
    overflow-x: auto;
    padding-bottom: 1px;
}
.mytabs .nav-tabs .nav-item {
    flex: none;
}
.mytabs .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--textclr);
    border: 1px solid #eee;
    border-radius: 6px;
    font-size: var(--font14);
    font-weight: 600;
}
.mytabs .nav-link:hover {
    border-color: var(--orange);
    color: var(--black);
}
.mytabs .nav-link.active,
.mytabs .nav-link.active:hover {
    background-color: #d91656;
    background-image: var(--lightgrad);
    color: var(--white);
    border-color: #1f476f;
}
.mytabs .nav-link img {
    filter: hue-rotate(116deg);
    filter: hue-rotate(112deg) brightness(0.5);
}
.mytabs .nav-link.active img,
.mytabs .nav-link.active:hover img {
    filter: brightness(0) invert(1);
}


.tab-content {
    width: 100%;
}

.tablerowmain {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #dddff9;
    border-radius: 8px;
    padding: 15px;
}
.tablerowmain .morebtn {
    font-size: var(--font14);
}
.tablerow {
    display: flex;
    flex-wrap: wrap;
    color: var(--textclr);
    background-color: #eae7ff;
    padding: 10px 15px;
    gap: 10px;
    font-size: var(--font14);
    border-radius: 6px;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
    border-left:2px solid #500073;
}
.tablerow:hover {
    background: #edf4ff;
}
.tablerow .col {
    flex: 1 0 auto;
}
.tablerow .date {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    max-width: 102px;
    font-size: var(--font14);
    font-weight: 600;
}
.tablerow .subject {
    display: flex;
    align-items: center;
    flex: 1 0;
}
.tablerow .subject p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
    margin: 0;
}
.new {
    background: rgb(237, 26, 35);
    background: linear-gradient(
        120deg,
        rgba(237, 26, 35, 1) 0%,
        rgba(252, 185, 19, 1) 100%
    );
    background: linear-gradient(
        90deg,
        rgba(237, 26, 35, 1),
        rgba(252, 185, 19, 1),
        rgba(237, 26, 35, 1),
        rgba(252, 185, 19, 1)
    );
    background-size: 400% 400%;
    animation: gradient 3s ease infinite;
    color: #fff;
    border-radius: 3px;
    font-size: var(--font12);
    padding: 0 5px;
    display: inline-flex;
}
.tablerow .action {
    max-width: 200px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.actionbtn {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--black);
    font-weight: 600;
}
.actionbtn:hover {
    color: var(--red);
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.contactcol {
    text-align: right;
    position: relative;
    z-index: 1;
}
.contbox {
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
}
.conlist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 415px;
    overflow: hidden;
    overflow-y: auto;
}
.conlist a {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color:#303030;
    align-items: center;
    font-weight: 700;
    position: relative;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.conlist a::after {
    content: "";
    position: absolute;
    right: 15px;
    width: 15px;
    height: 2px;
    border-radius: 3px;
    background-color: #1f4870;
    animation: moveRight 1s infinite;
    opacity: 0;
}
.conlist a:hover:after {
    opacity: 1;
}
.conlist a .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 6px;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.conlist a:hover .icon {
    background-color: #214b74;
}
.conlist a .icon img{
    filter:hue-rotate(187deg) brightness(0.8);
}
.conlist a:hover .icon img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.orderscontact:after {
    content: "";
    position: absolute;
    right: 0;
    width: 30%;
    height: 440px;
    top: 40px;
    /*background-color: var(--orange_light);*/
  background: #d5e9ff;
    border-top-left-radius: 6px;
}












/*aboutnews*/
.abnewsslide {
        height: 445px; /* Limit the height of the entire swiper container */
    overflow: hidden; /* Prevent overflow issues */
}

.abnewsslide .swiper-wrapper {
    height: auto !important; /* Remove forced 400px height */
}

.abnewsslide .swiper-slide {
    height: auto !important; /* Allow dynamic height */
    display: flex;
    align-items: center; /* Optional: Align content properly */
}



.abnewsslide .item {
    display: flex
;
    align-items: flex-start;
    gap: 5px;
    position: relative;
    flex-direction: column;
    border-left: 2px solid #500073;
    padding-left: 9px;
    padding: 11px;
    background: #eae7ff;
    border-radius: 10px;
        width: 100%;
}
.abnewsslide .item .date {
   background-color: #214b74;
   color: #ffffff;
   display: flex;
   flex-direction: row;
   justify-content: center;
   gap: 5px;
   padding: 3px 10px;
   align-items: center;
   /* text-transform: uppercase; */
   font-size: 0.8rem;
   line-height: normal;
   border-radius: 0.5rem;
   background: var(--purple_gradient);
}
.abnewsslide .item .date .dd {
    font-size: 0.875rem;
    font-weight: 600;
}
.abnewsslide .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;
    
}


/*aboutorder*/
.aborderslide {
        height: 165px; /* Limit the height of the entire swiper container */
    overflow: hidden; /* Prevent overflow issues */
}

.aborderslide .swiper-wrapper {
    height: auto !important; /* Remove forced 400px height */
}

.aborderslide .swiper-slide {
    height: auto !important; /* Allow dynamic height */
    display: flex;
    align-items: center; /* Optional: Align content properly */
}


.media::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 380px;
    background-color: #eee;
    background-image: url(../img/images/bluebac.svg);
    background-size: cover;
    background-position: bottom left;
    border-radius: 0 6px 6px 0;
}
.galbox {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
    border: 1px solid #eee;
    cursor: zoom-in;
    height: 100%;
}
.galbox .galimg {
    overflow: hidden;
    border-radius: 6px;
    position: relative;
    width: 100%;
    height: 190px;
}
.galbox .galimg .coverimg {
    width: 100%;
    min-height: 190px;
    object-fit: cover;
}
.galbox:hover .galimg .coverimg {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}
.galbox .galimg .galicon {
    
    width: 96%;
    background: #d91656;
    margin: 0 2%;
    border-radius: 6px 6px 0 0;
    color: #fff;
   padding:6px;
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.galbox .galimg .coverimg::after{
    content:'';
    position: absolute;
    height: 100%;
    background: red;
}
.galbox .galimg .galicon.vid {
    background-color: rgb(217 22 86);
}
.galbox .galcont {
    padding: 10px;
}
.galbox .galcont span {
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: var(--font14);
}

.publibox {
    border: 1px solid #eee;
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 380px;
    max-width: 100%;
    margin-left: auto;
}
.publislide {
    width: 280px;
    max-width: 100%;
}



.logobox {
    display: flex;
    border: 1px solid #224a7457;
    border-radius: 6px;
    padding: 10px;
    align-items: center;
    height: 100%;
}
.logobox:hover {
    border-color: #204971;
}
.logobox img {
    max-height: 60px;
    object-fit: contain;
}

/* \\\\\\\\\\\\\\FOOTER////////////// */

footer {
    background-color: var(--orange_light);
    background-image: var(--lightgrad);
    font-size: var(--font14);
    position: relative;
}
footer:before {
    content: "";
    position: absolute;
    right: 0;
    width: 28%;
    height: calc(100% + 120px);
    bottom: 0;
    background-color: #333;
    background-image: url(../img/images/ftimg.jpg);
    background-position: center;
    background-size: cover;
    border-top-left-radius: 20px;
}
footer a {
    color: #e1e1e1;
}
footer a:hover {
    color: var(--white);
}
.menuhead {
    color: var(--white);
    font-weight: 700;
    font-size: var(--font16);
    margin-bottom: 15px;
}
footer p{
    color: #e1e1e1;
}

footer .contlink {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
footer .contlink a {
    display: flex;
    gap: 5px;
    align-items: center;
    color: var(--white);
}
footer .contlink a:hover {
    color: var(--red);
}
footer .footmenu,
footer .footlink {
    display: flex;
    flex-flow: wrap;
    row-gap: 8px;
}
footer .footlink {
    column-gap: 12px;
}
footer .viscount {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: var(--font20);
    gap: 5px;
}
.ftlogin {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
    border-radius: 6px;
    font-weight: 600;
    gap: 5px;
    background-color: var(--orange_light);
}
.ftlogin:hover {
    background-color: var(--red_light);
}
footer .footlogo {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
footer .footlogo img {
    max-height: 45px;
    width: auto;
}
.copyright {
    text-align: right;
}

footer .subsbox {
    background-color: rgb(255 255 255 / 95%);
    backdrop-filter: blur(4px);
    border-radius: 6px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
footer .subsbox p{
   color: var(--textclr);
}
footer .subsbox .menuhead{
    color:var(--black);
}


.inpgroup {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 5px;
}
.inpgroup input {
    flex: auto;
}
.downapp {
    display: flex;
    gap: 10px;
}

.myform input {
    border-radius: 6px;
    border: 1px solid #ddd;
    outline: 0;
    padding: 10px 15px;
}

.mal .menuhead,
.mal .iconcard .cardhead,
.mal .countlist .name,
.mal .imgcard .imgcont .head,
.mal .mycard .cardcont .head,
.mal .conlist a,
.mal .accessbox .hdbox .head {
    font-weight: 600;
}
.mal .ftlogin,
.mal .tablerow .date,
.mal .actionbtn,
.mal .imgcard .date {
    font-weight: 500;
}
.mal .btn,
.mal .morebtn,
.mal .accosmall .accordion-button,
.mal .accessbox .accbtn {
    font-weight: 550;
}
.mal h2.mainhead {
    font-weight: 700;
    font-size: var(--font32);
}
.mal .iconcard .desc {
    font-size: var(--font13);
}

/*mobilw css*/

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: 0;
    opacity: 0;
    overflow: hidden;
    background-color: #fff;
    box-shadow: -20px 0 20px rgb(0 0 0 / 10%);
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    border-top: 4px solid #ed1a23;
}

.sidebar.show {
    width: 320px;
    opacity: 1;
}

.sidebar .sidehead {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.sidebar .sidehead .logo {
    width: 200px;
    display: flex;
}

.sidebar .sidehead .closebtn {
    font-size: 1rem;
    padding: 8px;
    border: none;
    background-color: #ed1a23;
    position: absolute;
    top: 7px;
    right: 0.5rem;
    color: white !important;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    border-radius: 50px;
    height: 26px;
    width: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar .sidehead .closebtn img {
    filter: brightness(0) invert(1);
}

.sidebar .sidehead .closebtn:hover {
    color: #3a3a3a;
}

.sidebar .sidemenu {
    padding: 15px;
    overflow-y: auto;
    height: calc(100vh - 95px);
}

.sidebar .sidemenu ul.menulist {
    display: flex;
    flex-flow: column;
}

.sidebar .sidemenu ul.menulist li:not(:last-child) {
    margin-bottom: 10px;
}

.sidebar .sidemenu ul.menulist li a {
    color: #333;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 0.5rem;
    cursor: pointer;
    background: #e419220a;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: unset;
    gap: 10px;
}
.sidebar .sidemenu ul.menulist li a img {
    width: 18px;
}

.sidebar .dropdown.show .dropdown-toggle {
    color: #3498db;
    background-color: #eaf3ea;
}

.sidebar .dropdown-toggle:after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    display: inline-block;
    font-weight: 600;
    position: absolute;
    right: 30px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    border: none;
}

.sidebar .dropdown.show .dropdown-toggle:after {
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
}

.sidebar .dropdown-menu {
    position: relative !important;
    transform: none !important;
    width: 100%;
    padding: 0;
    border: none;
    background-color: transparent;
    border-radius: 0;
    font-size: 0.875rem;
}

.sidebar .dropdown-menu a:hover {
    background-color: transparent !important;
}

.sidebar .seperate {
    font-size: 0.875rem;
    color: #9e9e9e;
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 0 15px;
}

.sidebar ul.social {
    padding: 0 15px;
    display: flex;
}

.sidebar ul.social li a i {
    color: #2f2483;
    padding-right: 35px;
}
.sidebar .accordion-item {
    border: unset;
}
.sidebar .accordion-button::after {
    width: 13px;
    height: 13px;
    background-size: contain;
}
.sidebar .accordion-body {
    padding: 10px;
}
.sidebar .accordion-body img {
    display: none;
}

/* ///////////// RESPONSIVE STYLES ///////// */

.mob-menu {
    border: none;
    background: #ed1a23;
    padding: 8px;
    border-radius: 5px;
}
.mob-menu img {
    width: 20px;
    filter: brightness(0) invert(1);
}
@media (max-width: 1199px) {
    .menu-sec .menu-sec-right {
        display: none;
    }
    .mainmenulist .megamenu {
        flex: 1 0 auto;
    }
    .publibox {
        margin-right: auto;
        margin-top: 30px;
    }
    footer:before {
        display: none;
    }
    .digital .col-9 {
        width: 100%;
    }
    footer .subsbox {
        max-width: 500px;
        margin: auto;
    }
    
}
@media (max-width: 991px) {
    /* .head-right, */
    .menu-sec,
    .head-right .logo {
        display: none;
    }
    header .headmain {
        width: 100%;
    }
    header .hdmainrow .strip {
        display: none;
    }
    .slider {
        margin-top: -40px;
    }
    header:before {
        height: 90px;
    }
    header .headmain .logocol {
        width: 250px;
    }
    .orderscontact:after {
        display: none;
    }
    .contactcol {
        text-align: left;
        margin-top: 20px;
    }
    .imgcard {
        margin-bottom: 10px;
    }
    header .headmain .menucol {
        gap: 30px;
    }
    .accessbox {
        right: 10%;

        top: 100%;
    }
    .countlist li {
        flex: 1 0 33.333%;
        max-width: 33.333%;
      
    }
}

@media (min-width: 992px) {
    .mob-menu {
        display: none;
    }
}

@media (max-width: 767px) {
    .mainpagination {
        justify-content: flex-end;
    }
    .slider .social {
        bottom: 60px;
        right: 25px;
        left: auto;
    }
    footer .footlogo {
        justify-content: center;
        margin-bottom: 16px;
    }
    .copyright {
        text-align: center;
    }
    footer .footlink {
        justify-content: center !important;
    }
    .head-right {
        display: none;
    }
    .countlist li {
    flex: 1 0 50%;
    max-width: 50%;
    }
    .countlist .count{
    flex-flow: column;
    align-items: flex-start;
   }
}

@media (max-width: 575px) {
    .headrow {
        flex-flow: wrap;
    }
    .navibtn {
        justify-content: flex-start;
        margin-bottom: 20px;
    }
    .tablerow .date {
        justify-content: flex-start;
    }
    .tablerow {
        display: block;
    }
    .tablerow .subject p {
        margin-top: 5px;
    }
    .tablerow .action {
        justify-content: flex-start;
        margin-top: 10px;
    }
    .imgcard .imgcont {
        min-width: auto;
    }
    .slider h1 {
        font-size: 1rem;
    }
    .slider .btn {
    height: 40px;
    padding: 0 10px;
    }
    .updatemain .hdcol{
            position: absolute;
    padding: 0;
    top: 8px;
    left: 25px;
    height: 25px;
    }
    .upslidemain {
   
    width: 100%;
}
.slidebottom {

    margin-top: 8px;
}
.accessbox .acclist{
    gap: 5px;
}
.overview{
    padding-top: 3rem;
}
.mainpagination {

    bottom: 28px !important;

}

    h2.mainhead {
        font-size: 1.8rem;
    }
    .countlist {
        justify-content: flex-start;
        gap: 0;
    }
    .countlist li {
        flex: 1 0 50%;
        max-width: 50%;
      
    }
    .conlist {
        gap: 3px;
    }
    /*.galbox .galimg .coverimg {*/
    /*    min-height: 120px;*/
    /*}*/
    .tablerow .subject p {
        display: block;
    }
    .slider {
        height: 130px;
    }
    .accessbox .accbtn {
               flex: 1 0 calc(33.333% - 10px);
        padding: 8px 5px;
    }
}

@media (max-width: 767px) {
    .dsk {
        display: none;
    }
}
@media (min-width: 768px) {
    .mob {
        display: none;
    }
}

.mobilenav {
    position: fixed;
    bottom: 1rem;
    z-index: 9;
    background-color: #fff;
    width: 180px;
    max-width: 100%;
    margin: auto;
    left: 0;
    right: 0;
    padding: 3px 10px;
    border-radius: 3rem;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    animation: zoomin 1s 1;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.mobilenav .navmenu {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.mobilenav .btn-outline {
    border: none;
}
.mobilenav .btn-outline img {
    filter: brightness(0) opacity(0.75);
    -webkit-filter: brightness(0) opacity(0.75);
}

.mobilenav .focus {
    box-shadow: 0 0 0 5px rgb(237 26 35 / 10%);
    transform: scale(1.1) translateY(-10px);
    border-radius: 50% !important;
    background: #ed1a23;
    color: #fff;
    background: linear-gradient(130deg, #ed1a23, #fcb913);
}
.mobilenav .btn {
    padding: 10px 20px;
    min-height: 44px;
    min-width: 44px;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    font-weight: 600;
    background-color: transparent;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

@media (max-width: 767px) {
    .accessbox, .dropmain .dropdownmenu {
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        transform: none;
        width: 432px;
        max-width: 100%;
        bottom: 0;
        border-radius: 2rem 1rem 0 0;
        box-shadow: 0 -10px 20px rgb(0 0 0 / 10%);
        margin: auto;
    }
}

@keyframes zoomin {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
.accessbox .accbtn.active {
    box-shadow: 0 0 0 2px #fcb913;
}










.search-box {
    background-color: #ffffffbf;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 5%);
}
.search-box h3 {
    font-size: 26px;
    font-weight: 800;
    color: #303030;    
    margin-bottom: 0;
}
.search-list {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    margin-bottom: 20px;
    gap: 20px;
}
.search-box .search-list ul {
    display: flex;
    flex-flow: wrap;
    gap: 8px;
}
.search-box .search-list ul li {
    padding-left: 0;
}
.search-box .search-list ul li::before,
.search-box .search-con ul li::before {
    display: none;
}
.search-box .search-list ul li a {
    font-size: .8rem;
    color: #777777;
    border-radius: 50px;
    border: 1px solid #00000017;
    padding: 3px 10px;
    display: flex;
    gap: 12px;
    position: relative;
    transition: 0.3s;
}
.search-box .search-list ul li a:hover {
    border: 1px solid #ed1a23;
    color: #ed1a23;
}
.search-box .search-list ul li a img {
    width: 8px;
}
.search-filiter {
    display: flex;
    gap: 25px;
}
.search-filiter .sec {
    display: flex;
    align-items: center;
    position: relative;
}
.search-filiter .sec img{
    width: 16px;
}
.search-filiter select {
    font-size: 14px;
    color: #777777;
    background-color: transparent;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    padding: 3px 8px;
}
.search-filiter select:focus {
    outline: unset;
}
.search-filiter .sec:after {
    content: "";
    position: absolute;
    height: 18px;
    width: 0.01rem;
    background-color: #5a5a5a30;
    right: 0;
}
.search-box .search-con ul {
    display: flex;
    flex-flow: column;
    margin: -5px;
    padding-bottom: 10px;
    row-gap: unset;
}
.search-box .search-con ul li {
    padding: 5px;
}
.search-box .search-con ul li .sec {
    font-size: 0.95rem;
    border: 1px solid #ed1a2314;
    border-radius: 5px;
    padding: 10px;
}
.search-box .search-con ul li p {
    color: #303030;
    font-weight: 500;
    margin-bottom: 3px;
}
.search-box .search-con ul li a {
    color: #ed1a23;
    transition: 0.3s;
}
.search-box .search-con ul li a:hover {
    color: #8a090f;
}
ul.pagination {
    position: relative;
    gap: 10px;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: flex-end;
}
ul.pagination .page-item.disabled {
    opacity: 0.5;
    pointer-events: none;
}
ul.pagination li {
    padding: 0;
}
ul.pagination li .page-link {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}
.b-0::after {
    display: none;
}






.drop-box{
    position: absolute;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    border: 1px solid rgb(252 185 19 / 30%);
    padding: 10px;
    width: 600px;
    right:0;
}




.drop-box ul {
    overflow: hidden;
    overflow-y: auto;
    height: 180px;
        margin-bottom: 10px;
        transition: .3s;
}

.drop-box  ul li {
    font-size: 13px;
    border-bottom: 1px solid rgb(252 185 19 / 30%);
    margin-bottom: 10px;
    padding-bottom: 10px;
    color: #333;
    display: flex;
   justify-content: space-between;
   position:relative;
   align-items: center;
   gap:4px;
}


.drop-box  ul li p {
    margin-bottom: 3px;
    flex: 1 0;
}

.drop-box  ul li a {
    /*color: var(--red);*/
    transition: .3s;
    width: 97px;
}
.drop-box  ul li a:hover {
    color: #fff;
}

.drop-box .results {
    font-size: 13px;
    color: #777777;
}

.drop-box .morebtn{
    font-size: .85rem;
}

.drop-box .stretched-link{
    position: absolute;
}

.upslidemain .swiper-wrapper {
    transition-timing-function: linear !important;
}


.whts {
    background: linear-gradient(90deg, #500073 0%, #C62300 40%, #500073 65%, #C62300 100%);
    background-size: 400% 400%;
    animation: gradient 3s ease infinite;
}
@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}




.msg{
    display: flex;
    gap: 30px;
}
.msg .img{
    width: 280px;
    /* border-radius: 5px; */
    /* overflow: hidden; */
    border-right: 3px solid #224a74;
}
.msg .con{
    flex: 1 0;
    display: flex;
    align-items: flex-start;
    flex-flow: column;
    justify-content: center;
}

.msg .img .imgcard .imgbox::after{
    display: none;
}
.msg .imgcard:hover .imgbox img{
        transform: unset;
}

.msg .imgcard .imgbox img{
    border-radius: 6px;
}
.msg .con h5{
    font-size: 1rem;
    color: #500072;
    margin-bottom: 3px;
}
.msg .con .para{
       margin-bottom: 0;
    font-size: .9rem;
}
.msg .cont{
    text-overflow: ellipsis;
    overflow: hidden;
    
    -webkit-box-orient: vertical;
    line-height: 28px;
    font-style: italic;
}
.msg .cont img{
        width: 38px;
    float: left;
    padding-right: 10px;
}
.msg .con a{
    font-size: .8rem;
    font-weight: 700;
    color: #92bb00;
    transition: .3s;
}
.msg .con a:hover{
        color: #ed1a23;
}


.fb-container {
                   width: 100%;
    max-width: 520px;
    margin: auto;
    overflow: hidden;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgb(0 0 0 / 10%);
        }
        .fb-iframe {
            width: 100%;
    height: 500px;
    border: none;
    border-radius: 5px;
        }

@media (max-width: 767px){
   .min-msg{
       margin-bottom: 20px;
   } 
}


.tndr-mob{
    justify-content: flex-end;
    
}
.sldrbnr{
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}
.sebgrp{
    flex-direction: column;
}
.sebgrp button{
    max-width: fit-content;
    margin: auto;
}

@media (max-width: 575px){
    .min-msg .img{
        border-right: none;
    }
   .min-msg{
       flex-direction: column;
   } 
   .min-msg .con{
       border-left: 3px solid #fcb913;
       padding-left:15px;
   }
   .mb-sitemp{
       margin-bottom:36px;
   }
   .tndr-mob{
    justify-content: flex-start;
    flex-wrap: wrap;
}
.sldrbnr{
    padding:0;
}
   .sldrbnr h1 br{
       display:none;
   }
   .slider h1 span{
       font-size: 1rem;
   }
}





.grvmn{
    gap: 6px;
    justify-content: flex-end;
}
.achievmnthed{
    display: block!important;
    -webkit-line-clamp: none!important;
    -webkit-box-orient: none!important;
    overflow: auto!important;
}
.achievmnthed .morebtn{
    color:var(--red);
}

@media (min-width: 1326px) and (max-width: 1380px) {
    header .hdmainrow .strip{
        width: 20px;
    }
}
@media (max-width: 1326px) {
    header .hdmainrow .strip{
       display: none;
    }
}

@media (min-width: 1200px) and (max-width: 1467px){
    .mainmenulist{
              gap: 10px;
        padding: 0 12px;
    }
    .menu-sec .menu-sec-right {
    width: 245px;
    position: relative;
}
}
 


.mainsbtn{
    z-index: 11;
    position: absolute;
    top: 43%;
    width: 100%;
    padding:0 25px;
}
.mainsbtn .btgroup{
    width: 100%;
    justify-content: space-between;
}
.mainsbtn .slidebtn {
    width: 34px;
    height: 34px;
    background-color: #d91656;
    border: 1px solid #ffbcd2;
    
}
.mainsbtn .slidebtn:hover {
    background-color: #500073;
}
.leadingfull{
    position: relative;
}
.leadingfull::after {
    content: "";
    position: absolute;
    left: 0;
   width: 97%;
    height: 260px;
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
   background-color: var(--orange_light);
    background-image: var(--lightgrad);
    bottom: 1rem;
    z-index: -1;
}
.otherlink2{
    margin-top: 41px;
}


.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 15px;
        padding-bottom:15px;
}

.has-submenu:hover .submenu {
    display: block;
    align-items: flex-start;
    padding-top: 10px;
    overflow: visible;
    padding-bottom: 10px;
    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;
}

.portal .iconcard{
    margin-bottom: 8px;
    border:1px solid #4a097375;
    background: transparent;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.portal .iconcard .cardhead span{
    font-weight:400;
}
.portal .iconcard:hover{
    border: 1px solid #500073;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.instbx .iconcard{
        background: #b8daff;
    border: 1px solid #8cc3ff;
}
.instbx .iconcard .cardhead{
    color: #2c3e50;
}