:root {
    --black: #1e1e1e;
    --textclr: #555555;
    --primary: #056bb3;
    --primary50: rgba(5, 107, 179, 0.5);
    --primary20: rgba(5, 107, 179, 0.2);
    --primary10: rgba(5, 107, 179, 0.1);
    --second: #da251c;
    --second50: rgba(218, 37, 28, 0.5);
    --second20: rgba(218, 37, 28, 0.2);
    --second10: rgba(218, 37, 28, 0.1);
    --white: #f0f9ff;
    --yellow: #feda00;
    --gradient: linear-gradient(120deg, #056bb3 0%, #da251c 100%);
    --trans30: all 0.3s ease;
    --font12: 0.75rem;
    --font13: 0.813rem;
    --font14: 0.875rem;
    --font16: 1rem;
    --font18: 1.125rem;
    --font20: 1.25rem;
    --font28: 1.75rem;
    --font30: 1.875rem;
    --font32: 2rem;
}
html {
    scroll-behavior: smooth;
}
body {
    font-size: var(--font16);
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: var(--black);
    font-weight: 400;
    background-color: #fff;
}

.mal {
    font-family: "Anek Malayalam", serif;
}

a {
    color: var(--black);
    text-decoration: none !important;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
p {
    color: var(--textclr);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    color: var(--second);
}
ul {
    padding-left: 0px;
    list-style-type: none;
    margin: 0;
}
img {
    display: block;
    max-width: 100%;
    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;
        width: 100%;
    }
}

.cmtop {
    padding-top: 120px !important;
}

@media (max-width: 1366px) {
    .cmpad {
        padding-left: 80px;
        padding-right: 80px;
        width: 100%;
    }
}
@media (max-width: 991px) {
    .cmpad {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (max-width: 767px) {
    .cmpad {
        padding-left: 15px;
        padding-right: 15px;
    }
    .cmtop {
        padding-top: 90px !important;
    }
}
@media (max-width: 575px) {
    html {
        font-size: 90%;
    }
    .cmtop {
        padding-top: 80px !important;
    }
}

@media (min-width: 768px) {
    ::-webkit-scrollbar {
        width: 10px;
        height: 6px;
    }
    ::-webkit-scrollbar-track {
        background-color: #00487c;
    }
    ::-webkit-scrollbar-thumb {
        background-color: #333;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #0089ea;
    }
}

.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: #0000004b;
    border-radius: 13px;
}
.custscrollA::-webkit-scrollbar-thumb {
    background-color: #272727;
    border-radius: 6px;
}
.custscrollA::-webkit-scrollbar-thumb:hover {
    background-color: #1b1b1b;
}

.btn-group {
    display: flex;
    flex-flow: wrap;
    width: 100%;
    gap: 10px;
}
.btn-group .btn {
    flex: none;
}
.btn {
    padding: 10px 20px;
    min-height: 44px;
    min-width: 44px;
    border-radius: 0.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    background-color: transparent;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.btn-lg {
    padding: 12px 25px;
}

.btn-gradient {
    background-color: var(--primary);
    background: var(--gradient);
    color: #fff;
    background-size: 100%;
}
.btn-gradient:hover {
    background-size: 250%;
    box-shadow: 4px 6px 20px rgb(35 159 95 / 40%);
}
.btn-gradient img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.btn-primary {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background-color: #007bdb;
}
.btn-secondary {
    background-color: var(--second);
    border: 1px solid var(--second);
    color: var(--white);
}
.btn-secondary:hover {
    background-color: #fd1e12;
}
.btn-white {
    background-color: #fff;
    color: var(--black);
    border: 1px solid #eee;
}
.btn-white:hover {
    background-color: var(--primary);
    color: #fff;
}
.btn-outline {
    color: var(--black);
    border: 1px solid var(--black);
    background-color: transparent;
}
.btn-outline:hover {
    background-color: var(--yellow);
    color: var(--black);
}
.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;
}

.btn .break {
    display: flex;
    flex-direction: column;
}
.btn .small {
    font-size: var(--font12);
    line-height: normal;
    font-weight: 500;
}

.rounded {
    border-radius: 50% !important;
}
.new {
    background-color: #e79500;
    background: linear-gradient(120deg, #e79500 0%, #e7066c 100%);
    font-size: var(--font12);
    color: var(--white);
    border-radius: 4px;
    padding: 2px 6px;
    display: inline-flex;
    margin-right: 6px;
}

.font12 {
    font-size: var(--font12) !important;
}
.font14 {
    font-size: var(--font14) !important;
}
.font16 {
    font-size: var(--font16) !important;
}
.font18 {
    font-size: var(--font18) !important;
}

.social {
    display: flex;
    flex-flow: wrap;
    gap: 8px;
}
.social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgb(0 0 0 / 10%);
}
.social a:hover {
    background-color: var(--second);
}
.social a img {
    max-height: 18px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.social a:hover img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.morebtn {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    color: var(--black);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
.morebtn:hover {
    color: var(--primary);
}
.morebtn:after {
    content: "";
    display: flex;
    width: 20px;
    height: 20px;
    background-image: url(../img/icons/arrow_outward.svg);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--yellow);
    border-radius: 50%;
}

.mainhead span {
    font-weight: 700;
    color: var(--second);
}
.bighead {
    font-size: 2.5rem;
}
.caption {
    font-size: var(--font18);
}

.posrel {
    position: relative !important;
}

.regular {
    font-weight: 400 !important;
}
.medium {
    font-weight: 500 !important;
}
.semibold {
    font-weight: 600 !important;
}
.bold {
    font-weight: 700 !important;
}
.green {
    color: var(--primary);
}

.headcol {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.headcol * {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.textgrad {
    color: var(--white);
    background: var(--primary);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 767px) {
    .bighead {
        font-size: 2rem;
    }
}

@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);
    }
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Zooming entrances */
@-webkit-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;
    }
}
@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;
    }
}

/*PULSE*/
@keyframes pulse {
    from {
        -webkit-transform: scale3d(0.25, 0.25, 0.25);
        transform: scale3d(0.25, 0.25, 0.25);
    }

    50% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    to {
        -webkit-transform: scale3d(0.25, 0.25, 0.25);
        transform: scale3d(0.25, 0.25, 0.25);
    }
}

@keyframes pulsemd {
    from {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    50% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    to {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(360deg) scale(0.75);
    }
    to {
        transform: rotate(0deg) scale(1);
    }
}

.animate_pulse {
    animation: pulse 10s infinite;
}
.animate_pulsemd {
    animation: pulsemd 10s infinite;
}
.animate_rotate {
    animation: rotate 15s infinite;
}

/*---------------------------------------*/
/*::::::::::::::::HEADER:::::::::::::::::*/
/*---------------------------------------*/
header {
    position: fixed;
    width: 100%;
    height: 100px;
    z-index: 999;
    transition: all 0.3s ease;
}
header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 100%;
    background-color: #fff;
    z-index: 0;
    border-bottom-right-radius: 20rem;
    opacity: 0.8;
}
header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: rgb(0 0 0 / 50%);
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: -1;
    transition: all 0.3s ease;
}
header.active {
    background-color: rgb(0 0 0 / 50%);
    height: 70px;
    backdrop-filter: blur(5px);
}
header.active::after {
    height: 0;
    opacity: 0;
}
header .headmain {
    display: flex;
    gap: 1rem;
    height: 100px;
    transition: all 0.3s ease;
}
header.active .headmain {
    height: 70px;
}

header .headmain .logocol {
    width: 420px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

header .headmain .logocol a {
    display: flex;
    position: relative;
    height: 100%;
}
header .headmain .logocol img {
    width: 100%;
    transition: all 0.3s ease;
    height: 100%;
    object-fit: contain;
    object-position: left;
}

header .headmain .menucol {
    flex: 1 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
header .menutop {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: end;
    transition: all 0.3s ease;
}
header.active .menutop {
    height: 0;
    overflow: hidden;
}
header .menutop .toplist {
    justify-content: end;
    gap: 15px;
    background: var(--yellow);
    padding: 0 15px;
    border-radius: 0 0 8px 8px;
    height: 100%;
    align-items: center;
}
header .menutop .toplist a {
    font-size: var(--font14);
}
header .menutop .toplist a:hover {
    color: var(--second);
}
header .menutop .toplist .dropdown-content ul li a:hover {
    color: white;
}

header .menutop .toplist .dropdown-content {
    background-color: white;
}
header .menutop .toplist .dropdown-content ul li {
    position: relative;
}
header .menutop .toplist .dropdown-content ul li > ul {
    position: absolute;
    overflow: unset;
    top: 0;
    right: unset;
    left: -200px;
    transform: unset;
    opacity: 0;
    visibility: hidden;
}
header .menutop .toplist .dropdown-content ul li:hover {
    background-color: var(--second);

    border-radius: 0.3rem;
}
header .menutop .toplist .dropdown-content ul li:hover > a {
    color: white;
}
header .menutop .toplist .dropdown-content ul li:hover ul {
    opacity: 1;
    visibility: visible;
}
header .menutop .toplist .dropdown-content ul li a{
    font-size: var( --font13);
}

header .menuholder {
    height: 44px;
}
header .menucen {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menuend {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
}
header a.mainli {
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 1rem;
    height: 40px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

header a.mainli:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--second);
    border-radius: 3px;
    bottom: 0;
    transition: all 0.3s ease;
}
header a.mainli:hover:after {
    width: 100%;
}
.dropdown:hover a.mainli:after {
    width: 100%;
}

header .menubtn {
    background: rgb(0 0 0 / 10%);
    border: none;
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
header .menubtn:hover {
    background: rgb(0 0 0 / 20%);
}

#accessMain {
    display: none;
}
.closebtn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border: none;
    border-radius: 50%;
    /* border: 1px solid rgb(0 0 0 / 15%); */
    background-color: var(--yellow);
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.closebtn:hover {
    /* border: 1px solid rgb(0 0 0 / 25%); */
    box-shadow: -2px 4px 10px rgb(0 0 0 / 15%);
}

.srcbtn.active img {
    display: none;
}
.srcbtn.active:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/icons/close.svg);
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}
.searchbox {
    position: absolute;
    right: 102%;
    top: -4px;
    width: 350px;
    border-radius: 0.3rem;
    display: none;
}
.searchbox input {
    background-color: #fff !important;
}

.dropdown {
    position: unset;
    display: inline-block;
    transition: all 0.3s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: linear-gradient(140deg, rgb(0 0 0 / 90%), rgb(0 34 89 / 95%));
    backdrop-filter: blur(5px);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 0.5rem;
    animation-name: zoomIn;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
}

@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;
    }
}

.dropdown:hover .dropdown-content {
    display: block;
    transition: all 0.3s ease;
}
.dropdown-content li:not(:last-child) {
    border-bottom: 1px solid rgb(255 255 255 / 20%);
}
.dropdown-content a {
    font-size: 0.85rem;
    color: rgb(255 255 255 / 95%);
    padding: 10px 15px;
    display: flex;
    transition: all 0.3s ease;
    border-radius: 0.3rem;
}

.dropdown-content a:hover {
    color: white;
    background-color: var(--second);
}

/*::::::::::::::::ACCESSIBILITY:::::::::::::::::*/

.accessbox {
    background-color: var(--yellow);
    border-radius: 0.5rem;
    position: absolute;
    z-index: 1;
    width: 280px;
    right: 0;
    top: 100%;
    margin: auto;
    padding: 15px;
    display: none;
    box-shadow: 15px 20px 20px var(--primary20);
}
.accessbox .hdbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.accessbox .hdbox .head {
    font-weight: 600;
    font-size: var(--font16);
    color: var(--black);
    margin: 0;
}
.accessbox .hdbox .closebtn {
    width: 28px;
    height: 28px;
}
.accessbox .acclist {
    display: flex;
    flex-flow: wrap;
    font-size: var(--font13);
    gap: 10px;
}
.accessbox .accbtn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgb(0 0 0 / 6%);
    font-weight: 600;
    color: var(--textclr);
    border-radius: 0.3rem;
    padding: 10px 0;
    gap: 5px;
    width: 120px;
    cursor: pointer;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.accessbox .accbtn:hover {
    background-color: var(--primary10);
}
.accessbox .accbtn.active {
    box-shadow: 0 0 0 2px var(--second50);
    color: var(--second);
    background: var(--second10);
}
.accessbox .accbtn.active img {
    transform: scale(1.1);
}
.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;
}

.mobiaccess {
    position: fixed;
    z-index: 998;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 1rem;
    border-radius: 1rem 1rem 0 0;
}

@media (max-width: 991px) {
    .accessbox {
        transform: translateX(-25%);
    }
    header .menucen{
        display: none;
    }
    .menuend .btn{
        display: none;
    }
    header .menutop{
        display: none;
    }
    header::before{
        width: 357px;
    }
    header .headmain .logocol{
        width: 270px;
    }
    header .menuholder{
        margin-top: 20px;
    }
}

@media (max-width: 1199px){
    header .headmain .logocol{
        width: 180px;
    }
    header::before{
        width: 293px;
    }
}

@media (max-width: 575px) {
    .accessbox {
        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 var(--primary20);
    }
    .accessbox .acclist {
        gap: 10px;
    }
    .accessbox .accbtn {
        flex: 1 0 calc(50% - 10px);
        padding: 8px 5px;
    }
    .accessbox .hdbox .closebtn {
        top: 10px;
        right: 10px;
    }
    .accessbox .accbtn img {
        width: 20px;
        height: 20px;
    }

    .mobsrch{
        display: none!important;
    }
    
    header::before {
        width: 250px;
        height: 80px;
    }
    header .headmain .logocol {
        width: 200px;
        height: 80px;
    }
}




.mobilenav{
    position: fixed;
    bottom: 1rem;
    z-index: 998;
    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.hidden {
    opacity: 0;
    visibility: hidden;
  }
  .mobilenav .navmenu {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  .mobilenav .btn-outline{
    border: none;
  }
  .mobilenav .btn-outline img{
    filter: brightness(0) opacity(.75);
    -webkit-filter: brightness(0) opacity(.75);
  }
  .mobilenav .btn-outline:hover img{
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
  }
  .mobilenav .focus{
    box-shadow: 0 0 0 5px var(--green20);
    transform: scale(1.1) translateY(-10px);
  }



.flexVcenter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.text-right {
    text-align: right !important;
}

.h-auto .swiper-slide {
    height: auto;
}






/*::::::::::::::::SIDEMENU:::::::::::::::::*/

.sidebar {
    width: 350px;
    max-width: calc(100% - 1rem);
    height: calc(100vh - 2rem);
    position: fixed;
    z-index: 999;
    border-radius: 1rem;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.96);
   
    padding: 1rem;
    transform: translateX(calc(100% + 1rem));
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
  }
  .sidebar.active {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    box-shadow: -15px 5px 20px rgb(0 0 0 / 10%);
  }
  .bgoverlay{
    content: '';
    position: fixed;
    z-index: 998;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: var(--green50);
    background: linear-gradient(90deg, rgb(35 158 95 / 0%) 0%, #158A8A 40%, #0572BC 100%);
    opacity: 0;
    cursor: zoom-out;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
  }
  .bgoverlay.active{
    width: 100%;
    opacity: .5;
  }
  
  .sidebar .sidecont{
    overflow: hidden;
    height: 100%;
    overflow-y: auto;
  }
  .sidebar .head{
    font-weight: 700;
    color: var(--black);
    font-size: var(--font18);
  }
  .sidebar .sidelist{
    display: flex;
    flex-direction: column;
  }
  
  .sidebar .sidelist a{
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    color: var(--textclr);
    font-weight: 500;
    border-radius: .5rem;
    border-bottom: 1px solid var(--green10);
  }
  .sidebar .sidelist a:hover{
    color: var(--green);
  }
  .sidebar .sidelist a .icon img {
    filter: brightness(0) opacity(0.3);
    -webkit-filter: brightness(0) opacity(0.3);
  }
  .sidebar .sidelist a:hover .icon img{
    filter: brightness(0) opacity(0.75);
    -webkit-filter: brightness(0) opacity(0.75);
  }
  
  .sidebar .sidelist .toggle-arrow {
    position: absolute;
    right: 5px;
    width: 20px;
    height: 20px;
    background-image: url(../img/icons/angledown.svg);
    background-size: contain;
    filter: brightness(0.5);
    display: block;
    transition: transform 0.3s ease-in-out;
  }
  .sidelist li.open > a .toggle-arrow {
    transform: rotateX(180deg); 
    -webkit-transform: rotateX(180deg); 
  }
  
  .sidebar .mobidrop {
    display: none;
    margin: 10px 0;
    padding: 0 15px;
    border-radius: .5rem;
    background: #fff;
    box-shadow: 0 10px 20px -15px rgb(0 0 0 / 20%);
  }
  /*.sidebar .sidelist li.open > .mobidrop {*/
  /*  display: block;*/
  /*}*/
  
 .sidelist li:hover .mobidrop{
    display: block;
  }

  .sidelogo {
    border-bottom: 1px solid #ddd;
    padding-bottom: .5rem;
    margin-bottom: .5rem;
}
  
.sidebar .nobg{
    padding: 10px;
    gap: 10px;
    align-items: center;
}
.sidebar .iconcard .icon {
margin-top: 0px;
width: 30px;
height: 30px;
min-width: 30px;
min-height: 30px;
margin-bottom: 0px;
}
.sidebar .social{
    background: #0071bc;
    border-radius: 15px 15px 0 0;
    padding: 11px;
}

.sidebarspan{
    color: var(--second);
}

  @media(max-width:575px){
    .sidebar{
      height: 100%;
      top: 0;
      bottom: 0;
      right: 0;
      border-radius: 1rem 0 0 1rem;
    }
    .sidebar .closebtn{
      border-top-right-radius: 0;
    }
  }







/*---------------------------------------*/
/*::::::::::::::::SLIDER:::::::::::::::::*/
/*---------------------------------------*/

.slider {
    position: relative;
    width: 100%;
    height: 80vh;
    max-height: 750px;
    background-color: var(--black);
}
/* @media(min-height: 768px){
  .slider{
    height: 500px;
  }
} */
.slider .mainslider,
.slider .mainslider .swiper-slide,
.slider .mainslider .slideimg {
    height: 100%;
}

.slider .mainslider .slideimg > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomimg 5.5s infinite;
}

@keyframes zoomimg {
    0% {
        transform-origin: 50% 65%;
        transition: transform 10s ease-in-out;
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform-origin: 50% 65%;
    }
}

.swiper-pagination {
    width: auto !important;
    background: #fff;
    bottom: -10px !important;
    border: 1px solid #eee;
    left: 50% !important;
    transform: translateX(-50%);
    border-radius: 1rem;
    display: flex;
    padding: 6px;
}
.swiper-pagination-bullet {
    background-color: var(--yellow);
    border: none;
    opacity: 1;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}
.swiper-pagination-bullet-active {
    background-color: var(--primary);
    border-radius: 10px;
    width: 20px;
}


@media(max-width:991px){
.slider{
    height: 400px;
}
}
@media(max-width:767px){
    .slider{
        height: 350px;
    }
    }
 @media(max-width:575px){
        .slider{
            height: 300px;
        }
        }



/* \\\\\\\\\\\\\\CARD////////////// */
.iconcard,
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: rgb(255 255 255 / 5%);
    border: 1px solid rgb(255 255 255 / 10%);
    border-top-color: var(--primary50);
    border-left-color: var(--primary50);
    border-right-color: var(--second50);
    border-bottom-color: var(--second50);
    padding: 1rem;
    border-radius: 0.5rem;
    height: 100%;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    backdrop-filter: blur(5px);
}
.iconcard:after {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    background-image: url(../img/icons/arrow_outward.svg);
    background-size: cover;
    opacity: 0.2;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.iconcard:hover:after {
    opacity: 1;
}
.iconcard.list {
    flex-direction: row;
    height: auto;
}
.iconcard:hover {
    border-top-color: var(--second50);
    border-left-color: var(--second50);
    border-right-color: var(--primary50);
    border-bottom-color: var(--primary50);
    box-shadow: 1px 3px 15px var(--primary20);
}
.noeffect .iconcard {
    box-shadow: none;
}
.noeffect .iconcard:hover {
    transform: none;
    box-shadow: none;
}
.nobg {
    background-color: transparent;
}
.iconcard .icon,
.listbox .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    margin-top: -30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--yellow);
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
    backdrop-filter: blur(5px);
    margin-bottom: 0.5rem;
}
.iconcard:hover .icon {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}
.iconcard .icon img,
.listbox .icon img {
    height: auto;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.iconcard .head,
.listbox .head,
.noeffect .iconcard:hover .head {
    color: var(--black);
    font-weight: 500;
    font-size: var(--font16);
    margin-bottom: 10px;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.iconcard:hover .head {
    color: var(--primary);
}

.iconcard .desc,
.listbox .desc {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: var(--font14);
}

.iconcard p a:hover {
    color: var(--primary);
}





/* \\\\\\\\\\\\\\TABS////////////// */
.mytabs {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.tablist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.tablist.has-scroll {
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: auto;
    padding-bottom: 1px;
    justify-content: flex-start;
}
.tablist .tabsbtn {
    background-color: var(--white);
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 0.3rem;
    height: 38px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    font-weight: 600;
    font-size: var(--font14);
    color: var(--black);
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.tablist.vertical .tabsbtn {
    justify-content: start;
    border-radius: 0.3rem;
    padding: 12px 20px;
    height: auto;
}
.tablist .tabsbtn:hover {
    color: var(--primary);
    border-color: var(--primary50);
}
.tablist .tabsbtn.active {
    background-color: var(--primary);
    color: var(--white);
}

@media (max-width: 575px) {
    .tablist {
        gap: 5px;
    }
    .tablist .tabsbtn {
        padding: 0 12px;
        height: 32px;
    }
}

@media (max-width: 991px) {
    .hasaccordion .tab-content > .tab-pane {
        display: block;
        opacity: 1;
    }
}

/* IMAGE CARD */
.imgcard {
    display: flex;
    flex-flow: column;
    position: relative;
    padding-bottom: 10px;
    height: 100%;
}
.imgcard .imgbox {
    position: relative;
    border-radius: 0.3rem;
    overflow: hidden;
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.imgcard .imgbox img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    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 .imgbox .date {
    position: absolute;
    z-index: 1;
    top: 0.5rem;
    right: 0.5rem;
    padding: 2px 5px;
    background: var(--primary);
    color: #fff;
    font-size: var(--font14);
    border-radius: 0.3rem;
}
.imgcard .imgcont p {
    margin: 0;
}
.imgcard .imgcont .head {
    font-weight: 500;
    color: var(--black);
    font-size: var(--font16);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
    margin-bottom: 5px;
}
.imgcard .imgcont .desc {
    font-size: var(--font13);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.imgcard .morebtn {
    font-size: var(--font14);
}
.imgcard:hover .morebtn:after {
    animation: moveRight 1s infinite;
}

.imgcard.video .imgbox:after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    background-image: url(../img/icons/chevronrt.svg);
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
    box-shadow: 4px 5px 20px 0 rgb(0 0 0 / 50%);
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.imgcard.video .imgbox:hover:after {
    transform: scale(1.1);
}

.imgcard.grid {
    flex-flow: row;
    padding: 0;
}
.imgcard.grid .imgbox {
    width: 80px;
    flex: 1 0 80px;
    margin: 0;
    border-radius: 6px;
}
.imgcard.grid .imgcont {
    margin: 0;
    border-radius: 0;
    padding: 0 0 0 15px;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    background: transparent;
}
.imgcard.grid .imgcont .head {
    font-size: var(--font13);
}
.imgcard.grid .imgbox img {
    border-radius: 6px;
    height: 100%;
}
.imgcard.grid:hover .imgbox img {
    transform: scale(1.05);
}
.imgcard.grid .date {
    position: unset;
    width: 100%;
    padding: 0;
    font-size: var(--font12);
    background: none;
    color: var(--primary);
}
.imgcard.grid .date .dd {
    font-size: var(--font16);
}

/* /////////////LOGO CARD\\\\\\\\\\\\\\\\ */

.logocard {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    height: 130px;
    padding: 10px;
    border: 1px solid #eee;
    margin: -1px;
}
.logocard img {
    width: 200px;
    object-fit: contain;
    object-position: center;
}

/* /////////////REVIEW CARD\\\\\\\\\\\\\\\\ */
.reviewcard {
    display: flex;
    flex-direction: column;
    position: relative;
}
.reviewcard::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 60px;
    width: 70%;
    height: 1px;
    background-color: #000;
    opacity: 0.1;
}
.reviewcard .quote {
    display: block;
    margin-left: auto;
    margin-bottom: 20px;
}
.reviewcard .cardcont {
    border: 1px solid var(--primary20);
    border-radius: 10px;
    padding: 20px;
}
.reviewcard .cardhead {
    display: flex;
    gap: 15px;
    align-items: center;
}
.reviewcard .cardhead .userimg {
    border-radius: 0.5rem;
    width: 60px;
    height: 60px;
    border: 1px solid rgb(0 0 0 / 10%);
    overflow: hidden;
}
.reviewcard .cardhead .userimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reviewcard .cardhead .head {
    font-weight: 500;
}
.reviewcard .cardcont .desc {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.reviewcard .cardcont.expanded .desc {
    -webkit-line-clamp: initial;
}

.testislide .navcol {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 991px) {
    .reviewcard .quote {
        width: 30px;
    }
}

@media (max-width: 575px) {
    .reviewcard .cardhead {
        gap: 10px;
    }
    .reviewcard .cardhead .userimg {
        width: 44px;
        height: 44px;
    }
    .reviewcard .quote {
        margin-bottom: 10px;
    }
    .testislide .navcol {
        bottom: auto;
        right: auto;
        left: 60px;
        top: 3px;
    }
}

/*********ACCORDION***********/
.myaccordion {
    width: 100%;
}

.myaccordion .accordion-item {
    margin-bottom: 0.5rem;
    border: 1px solid;
    border-color: #eee;
    background: var(--white);
    border-radius: 0.3rem;
    overflow: hidden;
}

.myaccordion .accordion-button {
    background-color: var(--primary);
    color: var(--white);
    font-size: var(--font16);
    padding: 13px 15px;
    padding-left: 50px;
    font-weight: 600;
    border-radius: 0.3rem;
    box-shadow: none;
    transition: 0.3s;
}
.myaccordion .accordion-button.collapsed {
    background: var(--white);
    color: var(--black);
}
.myaccordion .accordion-button.collapsed:hover {
    color: var(--primary);
}
.myaccordion .accordion-button::after {
    width: 24px;
    height: 24px;
    background-image: url(../img/icons/angledown.svg);
    background-size: contain;
    text-align: center;
    position: absolute;
    left: 15px;
    filter: brightness(0) opacity(0.75);
}
.myaccordion .accordion-button:not(.collapsed)::after {
    background-image: url(../img/icons/angledown.svg);
    filter: brightness(1) opacity(1);
}
.myaccordion .accordion-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .myaccordion .accordion-button {
        padding-left: 40px;
        font-size: var(--font14);
    }
    .myaccordion .accordion-button::after {
        left: 10px;
        width: 20px;
        height: 20px;
    }
}

.secimg {
    border-radius: 0.5rem;
    object-fit: cover;
}

.updateslide {
    /*height: 380px; */
    /* Limit the height of the entire swiper container */
    height: auto;
    overflow: hidden; /* Prevent overflow issues */
}

.updateslide .swiper-wrapper {
    height: auto !important; /* Remove forced 400px height */
}

.updateslide .swiper-slide {
    height: auto !important; /* Allow dynamic height */
    display: flex;
    align-items: center; /* Optional: Align content properly */
}

.updateslide .item {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    border: 1px solid #eee;
    border-radius: 0.5rem;
    padding: 5px;
}
.updateslide .item .date {
    min-width: 44px;
    height: 44px;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-size: var(--font12);
    line-height: normal;
    border-radius: 0.5rem;
}
.updateslide .item .date .dd {
    font-size: var(--font18);
    font-weight: 600;
}
.updateslide .item .title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
    font-size: var(--font14);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.updateslide .item:hover {
    color: var(--second);
}

.scheme {
    background-color: #f3faff;
}

/* \\\\\\\\\\\\\\FOOTER////////////// */

footer {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    color: var(--white);
    background-color: var(--primary);
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-image: url(../img/images/footbg.jpg);
    background-attachment: fixed;
    opacity: 0.1;
}

footer a,
footer p {
    color: var(--white);
}
footer a:hover {
    color: var(--yellow);
}
footer .footmid {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    border-top: 1px solid rgb(0 0 0 / 10%);
    padding: 50px 0;
    margin-bottom: 40px;
}

footer .inpbox {
    display: flex;
    gap: 10px;
}
footer .inpbox input {
    border-color: rgb(0 0 0 / 10%);
}
footer .myform.hasicon .frmicon {
    top: 15px;
}
footer .menuhead {
    font-weight: 600;
    font-size: var(--font18);
    color: var(--yellow);
}
footer .footmenu,
footer .footlink {
    display: flex;
    flex-flow: wrap;
    row-gap: 8px;
}
footer .footmenu {
    gap: 10px;
    flex-direction: column;
}
footer .footmenu a {
    display: inline-flex;
}

footer .power a:hover {
    color: var(--white);
}
footer hr {
    opacity: 0.1;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.iconlist {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgb(255 255 255 / 10%);
    padding: 15px;
    border-radius: 0.5rem;
}
.iconlist .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -40px;
    background-color: var(--yellow);
}
.iconlist .data {
    display: flex;
    flex-direction: column;
}
.iconlist .head {
    font-size: var(--font14);
}
.iconlist .desc {
    font-size: var(--font18);
    font-weight: 600;
}

@media (max-width: 1200px) {
    footer {
        padding-top: 100px;
    }
}

@media (max-width: 991px) {
    footer {
        
        padding-top: 50px;
    }
}

@media (max-width: 767px) {
    footer {
        padding-top: 30px;
    }
    footer .policy {
        gap: 5px 15px;
    }
}

@media (max-width: 575px) {
    footer {
        margin-top: -25px;
    }
}

@media (max-width: 480px) {
    .xs-hide {
        display: none !important;
    }
}

/*---------------------------------------*/
/*::::::::::::::::FORM:::::::::::::::*/
/*---------------------------------------*/
.myform .inpbox {
    flex: 1 0 auto;
    text-align: left;
    max-width: 100%;
    position: relative;
}
.myform label {
    font-size: var(--font14);
    margin-bottom: 5px;
    color: var(--textclr);
    font-weight: 500;
}
.myform label span {
    color: red;
}
.myform .form-check {
    display: flex;
    gap: 3px;
    align-items: center;
}

.myform .textlink {
    width: 100%;
}
.myform .textlink button {
    font-weight: 600;
    border: none;
    background-color: transparent;
    outline: 0;
    padding: 0;
    color: var(--blue);
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.myform .textlink button:hover {
    color: var(--primary);
}
.myform input,
.myform textarea,
.myform select {
    width: 100%;
    margin-bottom: 1rem;
    padding: 8px 15px;
    border-radius: 0.3rem;
    box-shadow: none;
    border: 1px solid #a1a1a1;
    background-color: transparent;
    outline: 0;
    color: var(--textclr);
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.myform input:focus,
.myform textarea:focus,
.myform select:focus {
    border-color: var(--primary);
}
.myform input[readonly]:focus,
.myform textarea[readonly]:focus,
.myform select[readonly]:focus {
    border-color: #ddd;
}
.myform input[type="checkbox"] {
    width: auto;
    margin: 0;
}
.myform textarea {
    height: 66px;
}
.myform .btn {
    padding: 10px 25px;
    height: 50px;
    min-width: auto;
}
.myform select {
    color: var(--textclr);
}
.myform ::-webkit-input-placeholder {
    color: var(--textclr);
    opacity: 0.5;
}
/* Hide HTML5 Up and Down arrows. */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 42px;
    opacity: 0;
    -webkit-appearance: none;
}

.myform.hasicon input,
.myform.hasicon textarea,
.myform.hasicon select {
    padding-left: 40px;
}
.myform.hasicon .frmicon {
    position: absolute;
    top: 10px;
    left: 12px;
    pointer-events: none;
}

/* CUSTOM SELECT */
.select-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}
.select-dropdown__button {
    width: 100%;
    margin-bottom: 1rem;
    padding: 8px 15px;
    border-radius: 0.3rem;
    box-shadow: none;
    border: 1px solid #eee;
    outline: 0;
    text-align: left;
    color: var(--textclr);
    background-color: transparent;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
.myform.hasicon .select-dropdown__button {
    padding-left: 40px;
}
.select-dropdown__button::focus {
    outline: none;
}
.select-dropdown__button .zmdi-chevron-down {
    position: absolute;
    right: 10px;
    top: 12px;
}
.select-dropdown__list {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow: auto;
    margin: 0;
    margin-top: -17px;
    padding: 0;
    list-style-type: none;
    opacity: 0;
    border-radius: 0.3rem;
    border: 1px solid #eee;
    pointer-events: none;
    transform-origin: top left;
    transform: scale(1, 0);
    transition: all ease-in-out 0.3s;
    z-index: 2;
    box-shadow: -2px 6px 20px rgb(0 0 0 / 10%);
}
.select-dropdown__list.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1, 1);
}
.select-dropdown__list-item {
    display: block;
    list-style-type: none;
    padding: 10px 15px;
    background: #fff;
    border-top: 1px solid #eee;
    font-size: var(--font14);
    line-height: 1.4;
    cursor: pointer;
    color: #616161;
    transition: all ease-in-out 0.3s;
}
.select-dropdown__list-item:hover {
    color: var(--primary);
}

/* \\\\\\\\\\\\\\MODAL////////////// */
.modal-content {
    border-radius: 1rem;
    border: none;
    box-shadow: 6px 8px 20px rgb(0 0 0 / 10%);
}
.modal-backdrop {
    background-color: var(--primary50);
    background: linear-gradient(
        90deg,
        rgb(35 158 95 / 100%) 0%,
        rgb(21 138 138 / 100%) 40%,
        rgb(5 114 188 / 100%) 100%
    );
}

.mymodal .profilecard {
    box-shadow: 5px 6px 20px var(--primary10);
    border-radius: 1rem;
    margin-top: -50px;
    background: #fff;
    max-width: 300px;
    width: 100%;
}

.mylist,
.sublist,
.genlist {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--textclr);
}
.mylist li,
.sublist li,
.genlist li {
    position: relative;
    padding-left: 20px;
}
.mylist li:before,
.sublist li:before,
.genlist li:before {
    content: "";
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    background-image: url(../img/icons/rtred.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 4px;
}
.genlist li:before {
    background-image: url(../img/icons/right.svg);
}
.mylist li > ul,
.genlist li > ul {
    margin: 0.5rem 0;
}
.mylist li > ul > li,
.genlist li > ul > li,
.sublist li {
    padding-left: 15px;
}
.mylist li > ul > li:before,
.genlist li > ul > li:before,
.sublist li:before {
    background-color: var(--primary);
    border-radius: 3px;
    width: 8px;
    height: 8px;
    margin-top: 9px;
}

.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: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--textclr);
    border: 1px solid #eee;
    border-radius: 6px;
    font-size: var(--font14);
}
.mytabs .nav-link:hover {
    border-color: var(--textclr);
    color: var(--black);
}
.mytabs .nav-link.active,
.mytabs .nav-link.active:hover {
    background-color: var(--yellow);
    color: var(--black);
    border-color: var(--black);
}
.tab-content {
    width: 100%;
}

.tablerowmain {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tablerowmain .morebtn {
    font-size: var(--font14);
}
.tablerow {
    display: flex;
    flex-wrap: wrap;
    color: var(--textclr);
    background-color: #fafafa;
    border: 1px solid #eee;
    padding: 10px 15px;
    gap: 10px;
    position: relative;
    font-size: var(--font14);
    border-radius: 6px;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}

.tablerow .col {
    flex: 1 0 auto;
}
.tablerow .date {
    display: flex;
    align-items: center;
    gap: 3px;
    max-width: 90px;
    font-size: var(--font12);
    border-right: 1px solid rgb(0 0 0 / 10%);
}
.tablerow .numcol {
    font-size: var(--font12);
    max-width: 150px;
}
.tablerow .subject {
    display: flex;
    align-items: center;
    flex: 1 0;
}
.tablerow .subject .new {
    position: absolute;
    top: -8px;
    margin: 0;
    left: 15px;
    height: 16px;
    line-height: 16px;
}
.tablerow .subject a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    margin: 0;
    font-weight: 500;
}
.tablerow .subject a:hover {
    color: var(--second);
}
.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;
    column-gap: 12px;
}
.actionbtn {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--black);
}
.actionbtn:hover {
    color: var(--primary);
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/***********TABLE***********/
.table-responsive{
    overflow-x: auto;
}
table {
    color: var(--textclr);
    width: 100%;
    margin-bottom: 1rem;
    border-spacing: 0;
    border-collapse: collapse;
    border-radius: 0.3rem;
    overflow: hidden;
    font-size: var(--font14);
}
table thead th {
    font-weight: 700;
    color: var(--black);
    overflow: hidden;
}
table td,
table th {
    border: 1px solid rgb(11 77 161 / 38%);
    padding: 10px;
    overflow: hidden;
    transition: 0.3s;
}
table tr {
    transition: 0.3s;
}

.ratebox {
    display: flex;
    flex-direction: column;
    background: var(--yellow);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 25px 20px -15px rgb(0 0 0 / 10%);
}
.ratetable td,
.ratetable th {
    border: none;
    border-bottom: 1px solid rgb(11 77 161 / 10%);
    padding: 10px 0;
}

/* ////////// MEGA MENU ////////// */

.dropdown-content.megamenu {
    min-width: 840px;
    left: unset;
    right: 0;
    min-height: 300px;
    transform: unset;
}

.megamenu .menu-con {
    padding: 15px;
    height: 300px;
}

.megamenu .menutab {
    display: flex;
    height: 100%;
}
.megamenu .menutab .nav {
    width: 200px;
    border-right: 1px solid rgb(255 255 255 / 30%);
    height: 100%;
    padding-right: 20px;
}

.megamenu .menutab .tab-content {
    width: calc(100% - 180px);
}

.megamenu .nav-link {
    cursor: pointer;
    font-size: 0.9rem;
    color: rgb(255 255 255 / 95%);
    position: relative;
    text-align: left;
    padding: 8px 15px;
}
.megamenu .nav-link:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--primary);
    opacity: 0;
    right: -9px;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
}
.megamenu .nav-link.active:after {
    opacity: 1;
}

.megamenu .nav-link.active {
    color: white;
    background-color: var(--primary);
}

.megamenu .in-menu-list {
    display: flex;
    flex-flow: wrap;
    margin: -3px;
}
.megamenu .in-menu-list li {
    flex: 1 0 33.333%;
    max-width: 33.333%;
    padding: 3px;
    border-bottom: unset;
}
.megamenu .in-menu-list li a {
    color: rgb(255 255 255 / 95%);
    padding: 8px;
    border: 1px solid rgb(255 255 255 / 30%);
    width: 100%;
    display: flex;
    border-radius: 3px;
    transition: 0.3s;
}
.megamenu .in-menu-list li a:hover {
    color: white;
}
.menuhead {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.megamenu .tab-pane {
    overflow: hidden;
    height: 270px;
    overflow-y: auto;
}
.o-unset {
    overflow: unset;
}

.myModal .modal-body {
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
}
.myModal .btn-close {
    position: absolute;
    right: 3px;
    top: 3px;
    font-size: 0.5rem;
    background-color: var(--second);
    z-index: 9;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    opacity: 1;
    color: white;
    border: none;
}
.myModal .btn-close img {
    filter: brightness(0) invert(1);
}
@media (min-width: 576px) {
    .myModal .modal-dialog {
        max-width: 400px;
        margin-right: auto;
        margin-left: auto;
    }
}
.myModal .carousel-control-next-icon {
    background-image: url(../img/icons/next.svg);
}
.myModal .carousel-control-prev-icon {
    background-image: url(../img/icons/prev.svg);
}
.myModal .carousel-control-prev,
.myModal .carousel-control-next {
    opacity: 1;
}
.myModal .carousel-control-next:hover,
.myModal .carousel-control-next:hover {
    opacity: 1;
}


.slider .mainslider .slideimg .mob{
    display:none;
}


@media (max-width: 575px){
    .slider .mainslider .slideimg .desk{
    display:none;
}  
  .slider .mainslider .slideimg .mob{
    display:block;
}  
}


@media (max-width: 991px){
.secimg{
    margin-top: 20px;
    margin-bottom: 20px;
}
.ratebox{
    margin-top: 20px;
}
.headcol * {
    display: flex
;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
}
.ftmb{
    text-align: center;
}
.ftmb .social{
justify-content: center;
text-align: center;
}
}



