@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Work+Sans:wght@400;500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap'); * {
    margin: 0px;
    padding: 0px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    /* overflow-x: hidden; */
    /* font-family: 'Work Sans', sans-serif; */
}

:root {
    --primary2:#eff9ff;

    --heading: rgb(0, 10, 53);
    --para: #777777;
    --para-tint: #e4e4e4;
    --white: #ffffff;
    --helper: rgb(132, 144, 255);
    --helper-tint: #f3f4ff;
    --bg: rgb(249, 249, 255);
    /* --gradient: linear-gradient(0deg,rgb(132,144,255) 0%,rgb(98,189,252) 100%); */
    --gradientSupport: -webkit-linear-gradient(0deg, rgb(132, 144, 255) 0%, rgb(98, 189, 252) 100%);
    --shadow: 0px 0px 20px 0px rgb(132 144 255 / 20%);
    --gradient: linear-gradient(0deg, rgb(132 144 255) 0%, rgb(98 189 252) 100%);
    --shadowSupport: 0px 20px 20px, 0px rgb(132, 144, 255/30%);

    --secondary: #fff;
    --tertiary: #846ED2F7;
    --accent: #35C997;
    --accent2: #FFF5B1;
    --bg_dark: #003B49;
    --bg_dark_text: #222121;
    --bg_light_text: #f1f1f1;
    --theme_border_radius: 10px;
     --clr-primary: #333;
        --clr-secondary: #fff;
        --clr-tertiary: rgba(25, 29, 36, 0.5);
        --footer-clr: #1F1F1F;
        --theme_text_font: "Inter", sans-serif;
        --theme-primary-bg: #fff;
        --deep-blue: #13548C;
        --light-blue: #005FAE;
        --bg-gray: #FAFAFA;
}

html {
    font-size: 62.5%;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
}

h1 {
    color: var(--heading);
    font-size: 6rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    font-weight: 400;
}

p {
    color: var(--para);
    line-height: 1.6;
    font-size: 1.3rem;
}

a {
    text-decoration: none;
}

/* ================================================
Header Section start
===================================================*/
.header {
    padding: 0 4.8rem;
    height: 10rem;
    background-color: var(--bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    height: 3rem;
}

.navbar-lists {
    display: flex;
    list-style: none;
    gap: 2rem;
    /* padding: 2rem;; */
}

.navbar-link {
    display: inline-block;
    text-transform: uppercase;
}

.navbar-link:link,
.navbar-link:visited {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    color: black;
    cursor: pointer;
    transition: color 1s linear;
}

.navbar-link:active,
.navbar-link:hover {
    color: var(--para);

}

/*=========================================================================================
Reusable code section
==========================================================================================*/
.container {
    max-width: 110rem;
    margin: 0 auto;
}

.section {
    padding: 9rem 0;
}

.grid {
    display: grid;
    gap: 9rem;
}

.grid-two-column {
    grid-template-columns: repeat(2, 1fr);
}

.btn {
    //background: var(--gradientSupport);
    //padding: 2rem 4rem;
    border: none;
    color: var(--helper-tint);
    font-size: 1.8rem;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    /* box-shadow: var(--shadow); */
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}

.btn:hover,
.btn:active {
    box-shadow: var(--shadowSupport);
}

.grid-three-column {
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-four-column {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

/*==========================================================================================
hero section starts
============================================================================================*/
.section-hero {
    background-color: var(--bg);

}

.section-hero-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.section-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 80%;
}

.hero-top-data {
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 500;
}

.hero-heading {
    text-transform: uppercase;
    font-size: 4rem;
    font-weight: 700;
}

.hero-para {
    margin-top: 1.5rem;
    margin-bottom: 3.2rem;
    font-size: 1.3rem;
    font-weight: 500;
}

.biodata-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.biodata-section p {
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.biodata-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.biodata-image img {
    max-width: 90%;
    max-height: 80%;
    box-shadow: -1.5rem -1.5rem 0 0 var(--helper);
    position: relative;
}

.bio-stats {
    margin-bottom: 2rem;
}

.common-heading:before {
    display: block;
    content: "";
    width: 1rem;
    height: 1rem;
    background-color: var(--helper);
    position: absolute;
    top: 110%;
    left: 0%;
    border-radius: 50%;
}

.common-heading:after {
    display: block;
    content: "";
    width: 30rem;
    height: 0.3rem;
    background-color: var(--helper);
    position: absolute;
    top: 125%;
    left: 1rem;

}

.common-heading {
    text-transform: uppercase;
    position: relative;
    margin-bottom: 2rem;
}

.bio-btn {
    margin-top: 2rem;
}

.biodata-para {
    margin-top: 2rem;
    margin-bottom: 0.2rem;
}

.bio_progress_bar {
    height: 0.3rem;
    max-width: 40rem;
    min-width: 40rem;
    background-color: var(--helper-tint);
    margin-top: 1rem;
    margin-bottom: 1rem;
    position: relative;
    left: 0;
    /* box-shadow: 1rem 0rem 0 0 var(--para); */

}

.bio_progress_bar::before {
    content: "";
    height: 0.3rem;
    width: 90%;
    background-color: var(--helper);
    display: block;
}

.bio_progress_1::before {
    width: 90%;
}

.bio_progress_2::before {
    width: 70%;
}

.bio_progress_3::before {
    width: 99%;
}

.bio_progress_4::before {
    width: 95%;
}

.bio_progress_bar span {
    position: absolute;
    height: 2.2rem;
    width: 3rem;
    background-color: var(--helper);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border: none;
    outline: 0;
    left: 90%;
    margin-top: 1rem;
}

.bio_progress_bar span::after {
    position: absolute;
    content: "";
    height: 0rem;
    width: 0rem;
    border: 1rem solid transparent;
    border-bottom-color: var(--helper);
    top: -2rem;
    /* background-color: red; */

}

.bio_progress_1 span {
    left: 86%;
}

.bio_progress_2 span {
    left: 66%;
}

.bio_progress_3 span {
    left: 95%;
}

.bio_progress_4 span {
    left: 91%;
}

.bio-stats h3 {
    text-transform: capitalize;
    font-size: 1.5rem;
    font-weight: 500;
}

.p-btns {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 10rem;
}

.section-portfolio {
    background: var(--bg);
}

.section-portfolio p {
    margin-top: 3rem;
    max-width: 60rem;
    margin-bottom: 3rem;

}

.portfolio-images {
    margin-top: 5rem;
    overflow: hidden;
}

.img-overlay {
    position: relative;
    overflow: hidden;
}

.img-overlay img {
    position: relative;
    max-width: 100%;
    border-radius: 0.7rem;
    position: relative;
    overflow: hidden;
    max-height: 100%;

}

.mb-3 {
    margin-bottom: 5rem;
}

.overlay {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradientSupport);
    opacity: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    overflow: hidden;
    border-radius: 7px;
    transition: all 0.3s linear;
}

.img-overlay:hover>.overlay {
    transform: translateY(0);
}

.img-overlay .common-heading {
    color: var(--white);
    margin: 0;
}

.p-btn-active {
    transform: translateY(-2rem);
}

.d-none {
    display: none;
}

/*======================================================
Section work data
==========================================================*/
.section-work-data {
    background: var(--gradientSupport);
    color: var(--white);
    text-align: center;
}

.section-work-data p {
    color: var(--white);
}

.counter-number {
    font-size: 3rem;
}

/*======================================================
our services section
==========================================================*/
.eachElementSelect {
    text-transform: uppercase;
}

.eachElementSelect:hover {
    background-color: #d3bbbb !important;
    cursor: pointer;
}

.active_dynamic_element {
    border: 1px solid blue !important;
    outline: 1px solid #ffffff !important;

}

.form-label {
    text-transform: uppercase;
}

.box-shadow {
    box-shadow: var(--shadowSupport);
}

.section-footer {
    padding: 2rem 0;
}

.marquee {
    width: 100%;
    padding-left: 30px;
    opacity: 0.7;
    -webkit-animation: slide 10s infinite;
    overflow-x: hidden;
}

@-webkit-keyframes slide {
    100% {
        -webkit-transform: translate(0px, 0px);
    }

    0% {
        -webkit-transform: translate(80%, 0px);
    }
}
.swiper-slide-img {
    width: 120% !important;
}

/*======================================================
Side navbar
==========================================================*/


.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    padding: 58px 0 0;
    /* Height of navbar */
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 5%), 0 2px 10px 0 rgb(0 0 0 / 5%);
    width: 240px;
    z-index: 600;
}

@media (max-width: 991.98px) {
    .sidebar {
        width: 100%;
    }
}

.sidebar .active {
    border-radius: 5px;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: 0.5rem;
    overflow-x: hidden;
    overflow-y: auto;
    /* Scrollable contents if viewport is shorter than content. */
}

.fa-solid {
    font-size: 2rem;
}

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

.font-size-1 {
    font-size: 1.5rem;
    text-decoration: none;
}

a {
    text-decoration: none !important;
}

.scrollableContent {
    height: 22rem;
    overflow-y: auto;
    max-width: 30rem;
    border-radius: 10px;

}

.bg-light-clr {
   /* background-color: #f8f9fa; */
}

div p {
    margin: 0px;
    padding: 0px;
}

span p {
    margin: 0px;
    padding: 0px;
}

a p {
    margin: 0px !important;
    padding: 0px !important;
    box-sizing: border-box;
}

a span {
    margin: 0px;
    padding: 0px;
}

/*
        ============================================================================
    */

.show-date {
    height: 70px;
    width: 70px;
    background-color: #35C997;
    border-radius: 16px;
    text-align: center;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.show-date span {
    color: #FFFFFF;
    line-height: 24.2px;
    font-size: 20px;
}

.container-inner {
    display: flex;
    gap: 15px;
    margin-top: 12px;
}
.content{
    text-align: left;
    /* margin: auto; */
    position: relative;
    margin-top: 15px;
}
.event-title{
    font-weight: 600;
    font-size: 20px;
    color: #003B49;
    line-height: 29px;
}
.event-desc{
    font-size: 16px;
    font-weight: 400;
    color: #838E91;
}
.main-container{
    padding: 10px;
}

.tox-fullscreen {
    z-index: 10050;
    width: 95% !important;
    top: 70px !important;
    left: 70px !important;
}

/*
=====================================================
*/
/*
.slider2_main {
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;

  }

  .swiper {
    width: 100%;
    padding: 1.875rem 0;
  }


  .swiper-slide {
    height: 14rem;

    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: self-start;
    border-radius: 16px;
    box-shadow: 0.063rem 0.5rem 1.25rem rgba(0, 0, 0, 0.1216);
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }
  .swiper-slide-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: rotate(180deg);
    line-height: 0;
    bottom: -0.063rem;
    border-radius: 16px;

  }
  .swiper-slide-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    z-index: -1;
    transition: 0.3s ease-in-out;
    transform: rotate(-180deg);

    filter: brightness(0.6);

  }


  .swiper-slide-img .shape-fill {
    fill: #ffffff;
  }
  .swiper-slide-content {
    position: absolute;
    top: 40%;

    padding: 0 2.65rem;

    width: 100%;
  }
  .swiper-slide-content > div {
    transform: translateY(-1.25rem);
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: medium;
    font-weight: bold;
  }

  .arrow-bk{
    background: #404040cc;
    height: 40px;
    width: 40px;
    border-radius: 120px
  }
  .swiper-button-prev{
    left: 32.5%;
    color: rgb(255, 255, 255);
  }
  .swiper-button-next{
    right: 32.5%;
    color: #ffffff;
  }
  .swiper-slide-content h2 {
    color: #000;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 0.425rem;
    text-transform: capitalize;
    letter-spacing: 0.02rem;
  }
  .swiper-slide-content p {

    color: #ffffff;
    line-height: 21.78px;
    font-size: 18px;

    -webkit-box-orient: vertical;
    overflow: hidden;

  }
  .swiper-slide-content .show-more {
    width: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #24aad9;
    border-radius: 50%;
    box-shadow: 0px 0.125rem 0.875rem #24aad96b;
    margin-top: 1em;
    margin-bottom: 0.2em;
    height: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in;
    margin-left: auto;
  }
  .swiper-slide-content .show-more:hover {
    background: #1184ac;
  }
  .swiper-slide-content .show-more svg {
    width: 1.75rem;
    color: #fff;
  }


  .see-more{
    margin-top: 10px;


  }

  .see-more button i{
    margin-left: 6px;
    transform: rotate(45deg);
    color: white;

  }
  .see-more-btn{
    border-radius: 4px;
    background-color:#2DCD7C;
    color: white;
    padding: 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border: none;

    font-size: 16px;
    line-height: 19.36px;
  }

  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right {
    background-image: none;
  }

  @media screen and (min-width: 93.75rem) {
    .swiper {
      width: 85%;
    }
  }*/

.main-container{
    padding: 30px;

}
.tab-header-txt{
    justify-content: space-between;
}
/* .nav-link .active{
    background-color:  #2DCD7C;
} */
.nav-link.active,
  .show > .nav-link {
    background-color:  #2DCD7C !important;
}
.btn-txt{
    font-size: 20px;
    line-height: 24.78px;
    width: 500;
}
.tab-header{
    padding: 0px 0px 30px 0px;
    box-shadow: 0px 9px 10px -4px #83838338;
}
.tab-content{
    margin-top: 30px;
}
.n-date {
    padding: 10px 0px 10px 0px;
}
.n-date span {
    background-color: #2DCD7C;
    padding: 5px;
    border-radius: 4px;
    color: white;
}
.txt-content{
    border-bottom: 1px solid #0D112833
}
.main-container {
    /* width: 450px; */
    height: 100%;

    border-radius: 20px;
    /*box-shadow: 0 15px 40px rgba(0,0,0,0.12);*/
}

@media all and (min-width: 992px) {
    .dropdown-menu li{ position: relative; 	}
    .dropdown-menu {
        border-radius: 10px !important;
    }
    .nav-item .submenu{
        display: none;
        position: absolute;
        left:100%; top:-7px;
    }
    .nav-item .submenu-left{
        right:100%; left:auto;
    }
    .dropdown-menu > li:hover{ background-color: #f1f1f1 }
    .dropdown-menu > li:hover > .submenu{ display: block; }
}
    /* ============ desktop view .end// ============ */

    /* ============ small devices ============ */
    @media (max-width: 991px) {
        .dropdown-menu .dropdown-menu{
            margin-left:0.7rem; margin-right:0.7rem; margin-bottom: .5rem; border-radius: 10px;
        }
    }

.bg-count{
    background-color: #f8f9fa;
    padding: 5rem;
    border: 1px solid gray;
    border-radius: 10px;
    font-size: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border:2px solid rgba(0,0,0,0.3);
    font-family: 'Poppins';
    font-weight: '600px';
    width: 21.5%;
}
#dt-length-0{
    margin: 20px;
  }
  #dt-search-0{
    margin: 20px;
  }

  .artical-two-list-items>ul{
    padding: 0 !important;
}
.artical-two-list-items>ul>li{
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.2px;
    text-align: left;
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    gap: 5px;
}
.artical-two-list-items>ul>li::before{
    content: url('icons/tabler-icon-circle-check-filled.png');
}
.artical-two-txt{
    gap: 2rem;
    display: flex;
    flex-direction: column;
}
.artical-two-para > p{
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.2px;
    text-align: left;
    color: #000000;
}
.artical-two-header > h4{
    font-family: Inter;
    font-size: 35px;
    font-weight: 600;
    line-height: 48px;
    text-align: left;

}








.slider2_main {
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    /* width: calc(min(90rem, 90%)); */
    /* margin: 0 auto; */
    /* column-gap: 3rem; */
    /* padding-block: min(20vh, 3rem); */
    /* background-color: rgb(184, 206, 199); */
  }

  .swiper {
    width: 100%;
    padding: 1.875rem 0;
  }


  .swiper-slide {
    height: 14rem;
    /* width: 30rem !important; */
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: self-start;
    border-radius: 16px;
    box-shadow: 0.063rem 0.5rem 1.25rem rgba(0, 0, 0, 0.1216);
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }
  .swiper-slide-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: rotate(180deg);
    line-height: 0;
    bottom: -0.063rem;
    border-radius: 16px;
    /* border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem; */
  }
  .swiper-slide-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    z-index: -1;
    transition: 0.3s ease-in-out;
    transform: rotate(-180deg);
    /* filter: contrast(80%) */
    /* filter: invert(10%); */
    filter: brightness(0.6);

  }
  /* .swiper-slide-img svg {
    position: relative;
    display: block;
    width: calc(300% + 1.3px);
    height: 5rem;
    transform: rotateY(180deg);
  } */

  .swiper-slide-img .shape-fill {
    fill: #ffffff;
  }
  .swiper-slide-content {
    position: absolute;
    top: 40%;
    /* background: #fff; */
    padding: 0 2.65rem;
    /* border-bottom-left-radius: 0.5rem; */
    /* border-bottom-right-radius: 0.5rem; */
    width: 100%;
  }
  .swiper-slide-content > div {
    transform: translateY(-1.25rem);
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: medium;
    font-weight: bold;
  }

  .arrow-bk{
    background: #404040cc;
    height: 40px;
    width: 40px;
    border-radius: 120px
  }
  .swiper-button-prev{
    left: 32.5%;
    color: rgb(255, 255, 255);
  }
  .swiper-button-next{
    right: 32.5%;
    color: #ffffff;
  }
  .swiper-slide-content h2 {
    color: #000;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 0.425rem;
    text-transform: capitalize;
    letter-spacing: 0.02rem;
  }
  .swiper-slide-content p {

    color: #ffffff;
    line-height: 21.78px;
    font-size: 18px;
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
    overflow: hidden;

  }
  .swiper-slide-content .show-more {
    width: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #24aad9;
    border-radius: 50%;
    box-shadow: 0px 0.125rem 0.875rem #24aad96b;
    margin-top: 1em;
    margin-bottom: 0.2em;
    height: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in;
    margin-left: auto;
  }
  .swiper-slide-content .show-more:hover {
    background: #1184ac;
  }
  .swiper-slide-content .show-more svg {
    width: 1.75rem;
    color: #fff;
  }

  /* .swiper-slide-active:hover img {
    transform: scale(1.2) rotate(-185deg);
  } */

  /* .swiper-slide-active:hover .show-more {
    opacity: 1;
    height: 3.125rem;
  } */

  /* .swiper-slide-active:hover p {
    display: block;
    overflow: visible;
  } */
  .see-more{
    margin-top: 10px;
    /* background-color:#2DCD7C; */

  }

  .see-more button i{
    margin-left: 6px;
    transform: rotate(45deg);
    color: white;

  }
  .see-more-btn{
    border-radius: 4px;
    background-color:#2DCD7C;
    color: white;
    padding: 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border: none;
    /* width: 500; */
    font-size: 16px;
    line-height: 19.36px;
  }

  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right {
    background-image: none;
  }

  .website_customizer{
    z-index: 1000;
  }
  @media screen and (min-width: 93.75rem) {
    .swiper {
      width: 85%;
    }
  }




.event_date {
    width: 100%;
    height: auto;
    background: var(--accent);
    color: var(--bg_light_text);
}

.event_date * {
    width: 100%;
}

.event_date span {
    font-weight: 400;
}

.event_text_container {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
}

/* event end */
/* event tab start */
.nav-tabs .nav-link.active {
    background: var(--accent);
    color: var(--bg_light_text);
}

/* event tab end */
/* notice board start */
.for_notice_board, .for_notice_board_graph {
    background-color: var(--primary2);
}

.for_calender_tab.nav.nav-tabs {
    position: absolute;
    width: 100%;
    left: 0;
    background: white;
    top: 0;
    padding: 17px 20px;
}

.events_tab_inner {
    position: relative;
    padding: 1rem;
    padding-top: 67px ;
}
.badge {
    background-color: var(--accent);
}







.theme_br {
    border-radius: var(--theme_border_radius);
}

.text_l {
    font-size: 30px;
}

.text_m {
    font-size: 20px;
}

.text_s {
    font-size: 16px;
}

.text_xs {
    font-size: 12px;
}

.text_sxs {
    font-size: 10px;
}

.theme_heading {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    float: left;
    width: 100%;
}

/* common style end */
/* for swiper start */
.swiper {
    width: 100%;
    padding-bottom: 100px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    /* height: 300px; */
}

.swiper-slide img {
    display: block;
    width: 100%;
}

.swiper_button_cont {
    position: absolute;
    width: 30%;
    left: 35%;
    top: 50%
}

.swiper_button {
    background: #404040cc;
    height: 40px;
    width: 40px;
    border-radius: 120px;
}

.swiper_button::after, .swiper_button::before {
    font-size: 15px;
    color: white;
}

.swiper-slide {
    position: relative;
}

.slider_text_container {
    position: absolute;
    width: 100%;
    /* height: 100%; */
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    background: #0000004f;
    padding: 23px;
    flex-direction: column;
    align-content: flex-start;
}
.slider_text_container {
    color: white;
}

.swiper_button_cta {
    gap: 8px;
    top: 83%;
    left: 10%;
    background-color: #2DCD7C;
    color: white;
    padding: 5px 17px;
    text-decoration: none;
    display: flex;
    border: none;
    font-size: 16px;
    align-items: center;
    justify-content: center;
}

.swiper_button_cta i {
    transform: rotate(45deg);
    color: white;
    margin-top: 3px;
}

/* for swiper end */
/* map and graph cont start */
.graph_cont, .yt_iframe_cont {
    background: var(--secondary);
}

/* map and graph cont end */
/* event start */
.event_date {
    width: 100%;
    height: auto;
    background: var(--accent);
    color: var(--bg_light_text);
}

.event_date * {
    width: 100%;
}

.event_date span {
    font-weight: 400;
}

.event_text_container {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
}

/* event end */
/* event tab start */
.nav-tabs .nav-link.active {
    background: var(--accent);
    color: var(--bg_light_text);
}

/* event tab end */
/* notice board start */
.for_notice_board, .for_notice_board_graph {
    background-color: var(--primary2);
}

.for_calender_tab.nav.nav-tabs {
    position: absolute;
    width: 100%;
    left: 0;
    background: white;
    top: 0;
    padding: 17px 20px;
}

.events_tab_inner {
    position: relative;
    padding: 1rem;
    padding-top: 67px ;
}
.badge {
    background-color: var(--accent);
}

/* notice board end */
.canvasjs-chart-credit {
    display: none!important;
}

/* for footer start*/
.background_footer {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* for footer end */
@media only screen and (max-width: 999px) and (min-width: 300px) {
    .text_mobile_center {
        text-align: center;
        margin-top: 30px;
    }

    .mobile_text_sxs {
        font-size: 8px;
    }

    .fc-state-default.fc-corner-right.fc-today-button {
        font-size: 6px;
    }

    .fc-button-group .fc-button {
        font-size: 6px;
    }

    .fc-toolbar .fc-center h2 {
        font-size: 12px;
    }


    .nav.nav-tabs, .for_calender_tab.nav.nav-tabs {
        position: static;
    }

    .events_tab_inner {
        padding-top: 1em;
    }
}
.col-md-6{
    margin-bottom: 10px;
}


.fc-toolbar.fc-header-toolbar {
    padding-top: 10px;
}
.fc.fc-unthemed.fc-ltr {

}

.graph_cont  {
    padding: 20px;
}

.fc table {
    font-size: .8em;
}

.fc-toolbar.fc-header-toolbar {
    display: flex;
    flex-wrap: wrap;
}

.fc-toolbar .fc-left {
    order: -2;
     width: 33%;
}

.fc-toolbar .fc-right {
    order: 1;
    width: 33%;

}

.fc-toolbar .fc-center {
    width: 33%;
}

.fc-toolbar .fc-center h2 {

}

.fc-right .fc-button-group {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}
.fc-button-group .fc-button {
    font-size: 10px;
    text-transform: uppercase;
    border-radius: 0px;
    background: var(--accent);
}
.fc-state-default.fc-corner-right.fc-today-button {
    background: var(--accent);
    font-size: 10px;
    text-transform: uppercase;
    border: none;
    text-shadow: none;
    border-radius: 0;
}

.fc-toolbar .fc-center h2 {
    font-size: 17px;
    width: 100%;
    text-transform: uppercase;
}

th.fc-day-header.fc-widget-header {
    padding: 4px 0px;
}



@media only screen and (max-width: 999px) and (min-width: 300px) {

    .canvasjs-chart-canvas {
        position: relative!important;
    }
    /* .canvasjs-chart-canvas {
        display: none;
    } */
}








.loader_cont {
    background: #6e6e6e;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index:2;
}
.loader {
  height: 60px;
  aspect-ratio: 2/3;
  --c:no-repeat linear-gradient(#fff 0 0);
  background: var(--c), var(--c), var(--c), var(--c);
  background-size: 50% 33.4%;
  animation: l8 1.5s infinite linear;
}
@keyframes l8 {
  0%,
  5%   {background-position:0 25%,100% 25%,0 75%,100% 75%}
  33%  {background-position:0 50%,100% 0,0 100%,100% 50%}
  66%  {background-position:0 50%,0 0,100% 100%,100% 50%}
  95%,
  100% {background-position:0 75%,0 25%,100% 75%,100% 25%}
}
img {
  aspect-ratio: auto 640 / 360;
}
.dropdown-menu {
    --bs-dropdown-font-size: 1.2rem !important;
    --bs-dropdown-link-hover-color: white !important;
    --bs-dropdown-link-hover-bg: blue !important;
}
.fc table{
    font-size:1em;
}

.font_small{
    font-size:16px !important;
}

.font_large{}

.font_medium{
    font-size:20px !important;
}
.font_extra_small{
    font-size:8px !important;
}
.font_extra_large{
    font-size:35px !important;
}

#content li, .ng-star-inserted li ,.card-body
{
        color: var(--para) !important;
        line-height: 1.6 !important;
        font-size: 1.3rem !important;
}
[data-objecttype="text"]  p , [data-objecttype="text"]  p span {
    font-size: calc(var(--quaternary_heading)* var(--multi)) !important;
}

[data-objecttype="text"]  div span {
    font-size: calc(16px * var(--multi)) !important;
}

  html body .light .color-white { background-color: white!important; }
  html body .light .color-pink { background-color: magenta!important; }
  html body .light  .color-blue { background-color: blue!important; }
  html body .light  .color-yellow { background-color: yellow!important; }

  html body .color-white { background-color: white!important; }
  html body .color-pink { background-color: magenta!important; }
  html body .color-blue { background-color: blue!important; }
  html body .color-yellow { background-color: yellow!important; }

body.acc_pink, body.acc_pink * {
    background: #000 !important;
    color: #ff00b4 !important;
}
body.acc_blue, body.acc_blue * {
    background: #000 !important;
    color: #069fff !important;
}
body.acc_yellow, body.acc_yellow * {
    background: #000 !important;
    color: #ffff00 !important;
}
.custom_table {
    width: 100%!important;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 16px;
}

.custom_table tbody tr:nth-child(odd) {
    background-color: rgb(242, 242, 242);
}

.custom_table td {
    color: var(--tertiary_color);
}

.custom_table a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: underline;
}
.custom_table th, .custom_table td {
    border: 1px solid rgb(204, 204, 204);
    padding: 10px;
    text-align: left;
    height: unset!important
}
.custom_table thead {
	background-color: #005fae;
    background-color: var(--primary_bg);
    color: white;
}
.custom_table thead th {
	background-color: #005fae;
    background-color: var(--primary_bg);
    color: white;
}
.custom_table thead span{
    color: white !important;
}
#google_translate_element {
    position: absolute;
    bottom: 0;
    left: 42%;
}
table.table.table-bordered.table-striped.custom_table.custom_link {
    height: auto !important;
}

table.table.table-bordered.table-striped.custom_table.custom_link td * {
    vertical-align: sub;
}

table.table.table-bordered.table-striped.custom_table.custom_link td  {
    vertical-align: middle;
}
table.table.table-bordered.table-striped.custom_table.custom_link td a.custom_link {
	color: black!important;
}
/*.gray_scale {
    filter: grayscale(1) invert(1);
}*/

@media only screen and (max-width: 999px) and (min-width: 300px) {
    .ecu_wraper{
        overflow-x: scroll;
        padding-bottom: 10px;
    }
    .ecu_wraper::-webkit-scrollbar {
      width: 10px;
    }

    /* Track */
    .ecu_wraper::-webkit-scrollbar-track {
      box-shadow: inset 0 0 5px grey;
      border-radius: 10px;
    }

    /* Handle */
    .ecu_wraper::-webkit-scrollbar-thumb {
      background: #005fae;
      border-radius: 10px;
    }

    /* Handle on hover */
    .ecu_wraper::-webkit-scrollbar-thumb:hover {
      background: #005fae;
    }
}

@media only screen and (max-width: 768px) and (min-width: 300px) {

	.row.col-12 {
	    flex-direction: column;
	}

	section.widget {
	    padding: 16px!important;
	    margin:auto!important;
	}

	.row.col-12 .col-8 , .row.col-12 .col-4 {
		width: 100%;
	}

	section.widget_298, .widget.widget_35 {
	    padding: 0 !important;
	}

	.widget_42 .dynamic_field {
		padding: 16px;
		margin: auto!important;
	}
}

body h2, body h2 *,  body h1, body h1 *{
    /* font-family: 'Poppins', sans-serif !important; */
    font-family: georgia, palatino, serif !important;
    font-weight: 700;
}
body * , html body *{
        font-family: var(--primary_font)!important;
        font-family: var(--secondery_font)!important;
}
.fa , .fa-solid, .fa-regular{
    font-family: var(--fa-style-family, "Font Awesome 6 Free") !important;
}
div#dataTable_filter label {
    font-size: 16px;
}
.card-body p, .card-body div {
    font-size: calc(var(--quaternary_heading)* var(--multi)) !important;
    color: black;
}
@media only screen and (max-width: 768px) and (min-width: 300px) {

	.row.col-12 {
	    flex-direction: column;
	}

	section.widget {
	    padding: 16px!important;
	    margin:auto!important;
	}

	.row.col-12 .col-8 , .row.col-12 .col-4 {
		width: 100%;
	}

	section.widget_298, .widget.widget_35, .widget.widget_289, .widget.widget_290 {
	    padding: 0 !important;
	}

	.widget_42 .dynamic_field {
		padding: 16px;
		margin: auto!important;
	}

	.user_name_header {
        white-space: nowrap;
	    overflow: hidden;
	    text-overflow: ellipsis;
	    width: 100%;
	    max-width: 100px;
	    margin-left: 8px;
	    transform: translateY(2px);
	}
}

.widget_35 .nav-link {
    color: black !important;
}
.widget_104 .notice_point{
    padding: 10px 10px;
    overflow-y: scroll;
    height: 200px;
}


.btn-apply {
    padding: 1px 10px !important;
    font-size: 15px;
}

.container {
    max-width: 120rem !important;
}

