/* Fonts */
@font-face {
    font-family: 'primary-font-500';
    font-weight: 500;
    src: url("../fonts/Dubai-Regular.ttf") format("opentype");
}
@font-face {
    font-family: 'primary-font-700';
    font-weight: 700;
    src: url("../fonts/Dubai-Medium.ttf") format("opentype");
}
:root {
    --font-default: 'primary-font-500';
    --font-primary: 'primary-font-500';
    --font-secondary: 'primary-font-500';
}


/* Colors */

:root {
    --color-default: #2E2E2E;
    --color-primary: #14AA72;
    --color-secondary: #0D7B58;
}

.dropdown-menu.show {
    display: block;
    /* width: 100%; */
}
/* Smooth scroll behavior */

:root {
    scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: var(--font-default);
    color: var(--color-default);
    background-color: #F7F7F7;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 14px;
}
p{
    background-color: transparent !important;
    background: transparent !important;
  }
span{
    background-color: transparent !important;
    background: transparent !important;
  }
a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
}


/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/

section {
    overflow: hidden;
    padding: 80px 0;
}

.section-bg {
    background-color: #eee;
}

.section-header {
    text-align: center;
    padding-bottom: 30px;
}

.section-header h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: #7f7f90;
    text-transform: uppercase;
    font-family: var(--font-default);
}
p {
    font-family: var(--font-primary) !important;
}
span {
    font-family: var(--font-primary) !important;
}
.section-header p {
    margin: 0;
    font-size: 48px;
    font-weight: 400;
    font-family: var(--font-primary);
}

.section-header p span {
    color: var(--color-primary);
}
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
    box-shadow: inset 0 -1px 0 transparent;
}

input:focus {
    outline: none !important;
    box-shadow: none !important;
  }


.btn.btn-primary {
    background: #191919f0;
    border: 1px solid #191919f0;
    border-radius: 7px;
    padding: 10px 25px;
    /* font-weight: 700; */
}

.btn.btn-primary:hover {
    background: #000;
    border: 1px solid #191919;
    border-radius: 7px;
    padding: 10px 25px;
    /* font-weight: 700; */
    color: #fff;
}
.btn.btn-outline-primary {
    background: transparent;
    border: 1px solid #979797;
    border-radius: 7px;
    padding: 10px 25px;
    color: #979797;
    /* font-weight: 700; */
}
.btn.btn-outline-primary:hover {
    background: #979797;
    border: 1px solid #979797;
    border-radius: 7px;
    padding: 10px 25px;
    color: #fff;
    /* font-weight: 700; */
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 15px 0;
    background: rgba(55, 55, 63, 0.05);
    margin-top: 90px;
}

@media (max-width: 575px) {
    .breadcrumbs {
        margin-top: 70px;
    }
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #676775;
    content: "/";
}

@media (max-width: 992px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs h2 {
        margin-bottom: 10px;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}


/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 43px;
    bottom: 30px;
    z-index: 99999;
    background: var(--color-primary);
    width: 44px;
    height: 44px;
    transition: all 0.4s;
    border-radius: 10px;
}

.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.scroll-top:hover {
    background: var(--color-secondary);
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
}

#preloader:before,
#preloader:after {
    content: "";
    position: absolute;
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }
    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}

@keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }
    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# main_dashboard Section
--------------------------------------------------------------*/

.main_dashboard {
    width: 100%;
    background-size: cover;
    min-height: 90vh;
    background-image: url("../img/report-banner.jpg");
    position: relative;
    padding-bottom: 0;
}

.main_dashboard::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--color-default);
    opacity: 0.52;
    bottom: 0;
}
button.btn.btn-sm.advanced-search {
    background: rgb(0 0 0 / 40%);
    color: #ffff;
    border: 1px solid rgb(0 0 0 / 40%);
    display: flex;
    align-items: center;
}
button.btn.btn-sm.advanced-search img {
    height: 10px;
    padding-right: 7px;
}
button.btn.btn-sm.advanced-search:hover {
    background: rgb(0 0 0 / 100%);
    color: #ffff;
    border: 1px solid #000;
    display: flex;
    align-items: center;
}
.main_dashboard .advanced__search{
    margin-top: 12px;
}
.main_dashboard .advanced__search.darkBg {
    margin-top: 12px;
    background: rgb(0 0 0 / 40%);
    color: #ffff;
    border: 1px solid rgb(0 0 0 / 40%);
    padding: 20px;
    border-radius: 10px;
    width: 97%;
    margin-bottom: 150px;
}
.main_dashboard .advanced__search .css-1n6sfyn-MenuList::-webkit-scrollbar {
    width: 7px;
  }
   
  .main_dashboard .advanced__search .css-1n6sfyn-MenuList::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }
   
  .main_dashboard .advanced__search .css-1n6sfyn-MenuList::-webkit-scrollbar-thumb {
    background-color: #14AA72;
    outline: 1px solid #14AA72;
    border-radius: 200px;
  }
.main_dashboard .advanced__search .css-1n6sfyn-MenuList {
    max-height: 170px;
    overflow-y: auto;
    position: relative;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    padding-top: 4px;
    box-sizing: border-box;
}
.main_dashboard .advanced__search label.form-label {
    margin-bottom: 0;
    margin-top: 20px;
    font-size: 16px;
    padding-bottom: 5px;
}
.search__details .form-control {
    padding: 12px 20px;
}
.search__details .select__control.css-13cymwt-control:hover {
    background-color: #fff;
}
.search__details .select__control.css-13cymwt-control{
    background-color: #fff;
}
.search__details .css-b62m3t-container {
    width: 100%;
}
.main_dashboard .advanced__search .selected__tags {
    display: block;
}

.main_dashboard .advanced__search .tags {
    border: 2px solid var(--color-primary);
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    padding: 4px 13px;
    margin: 6px;
    margin-right: 0;
}

.main_dashboard .advanced__search .tags i {
    color: var(--color-primary);
    font-size: 22px;
    display: flex;
    cursor: pointer;
}
.search__details .form-control:focus{
    border: 1px solid var(--color-primary);
}
.main_dashboard h2 span {
    color: var(--color-primary);
}

.main_dashboard p {
    color: #4f4f5a;
    font-weight: 400;
    margin-bottom: 30px;
}

.main_dashboard .btn-book-a-table {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 36px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: var(--color-primary);
    box-shadow: 0 8px 28px rgba(206, 18, 18, 0.2);
}

.main_dashboard .btn-book-a-table:hover {
    background: rgba(206, 18, 18, 0.8);
    box-shadow: 0 8px 28px rgba(206, 18, 18, 0.45);
}

.main_dashboard .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--font-secondary);
    font-weight: 600;
}

.main_dashboard .btn-watch-video i {
    color: var(--color-primary);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.main_dashboard .btn-watch-video:hover {
    color: var(--color-primary);
}

.main_dashboard .btn-watch-video:hover i {
    color: rgba(206, 18, 18, 0.8);
}

@media (max-width: 640px) {
    .main_dashboard h2 {
        font-size: 36px;
    }
    .main_dashboard .btn-get-started,
    .main_dashboard .btn-watch-video {
        font-size: 14px;
    }
}

.main_dashboard .main__reports {
    position: relative;
    z-index: 99;
}

.main_dashboard .report__grid {
    background: #0000008a;
    text-align: center;
    min-height: 220px;
    width: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin: 0 auto;
}

.main_dashboard img.slick-arrow.slick-prev {
    padding: 13px;
    height: 45px;
    width: 45px;
    border-radius: 5px;
}
button.btn.btn-search {
    border-radius: 10px;
    padding: 13px 40px;
    background: var(--color-primary);
    color: #ffff;
    font-size: 20px;
    margin-right: 17px;
    border: 1px solid var(--color-primary);
}
button.btn.btn-search:hover {
    border-radius: 10px;
    padding: 13px 40px;
    background: var(--color-secondary);
    color: #ffff;
    font-size: 20px;
    margin-right: 17px;
    border: 1px solid var(--color-secondary);
}
.main_dashboard .slick-initialized .slick-slide:first-child div {
    display: flex;
    justify-content: center;
}

.main_dashboard img.slick-arrow.slick-next {
    padding: 13px;
    height: 45px;
    width: 45px;
    border-radius: 5px;
}

.main_dashboard .report__grid .icon img {
    width: 100%;
    height: 56px;
    object-fit: contain;
}

.main_dashboard .report__grid .title h2 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.main_dashboard .report__grid .title {
    position: relative;
    padding: 10px 0 6px 0;
}

.main_dashboard .report__grid .title::after {
    position: absolute;
    content: "";
    background: var(--color-primary);
    height: 5px;
    width: 100%;
    left: 0;
    border-radius: 100px;
    bottom: 8px;
}

.main_dashboard .report__grid .count h3 {
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: 45px;
}

.main_dashboard .report__search {
    margin-top: 40px;
}

.main_dashboard .report__search .input-group {
    background: #fff;
    border-radius: 10px;
    padding: 16px 25px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: inset 7px -11px 12px #00000029;
    font-weight: 900;
}
.main_dashboard .report__search .mainSearch {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main_dashboard .report__search .input-group img {
    height: 23px;
    padding-bottom: 3px;
}

.main_dashboard .report__search .input-group-append button {
    padding: 0;
}

.main_dashboard .report__search .input-group .form-control {
    padding: 0;
}

.main_dashboard .report__search .input-group-append {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_dashboard .report__search .input-group input {
    font-weight: 700;
    color: #616161;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_dashboard .message__section {
    position: relative;
    z-index: 99;
}

.main_dashboard .message__section p {
    color: #fff;
    margin: 0;
    font-weight: 700;
}
.alert__sec{
    display: flex;
}
.alert__sec span{
    color: #fff !important;
}
.alert__sec span a{
    color: #fff !important; 
}
.alert__section .alert__sec span{
    white-space: nowrap;
    position: relative;
}
.main_dashboard .message__section span {
    color: #FF3434;
    padding-left: 20px;
    padding-right: 4px;
    font-weight: 800;
}
.main_dashboard .message__section .marquee span{
    color: #fff;
}


.main_dashboard .message__section img {
    height: 25px;
}

.main_dashboard .message__section {
    margin-top: 23px;
    width: 100%;
    background: #00000052;
    padding: 16px;
    position: absolute;
    bottom: 0;
    z-index: 2;
}

.main_dashboard .message__section .news__marquee .viewAll a {
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-primary);
}

.main_dashboard .message__section .news__marquee .viewAll {
    min-width: 200px;
    border-right: 1px solid grey;
    text-align: right;
}
.main_dashboard .message__section .news__marquee .viewAll a{
    margin-right: 20px;     
}
.main_dashboard .message__section .news__marquee .title {
    display: flex;
    align-items: center;
    justify-content: end;
}

.main_dashboard .message__section .marquee-container ul {
    padding: 0;
    display: inline-flex;
    margin: 0;
    overflow: hidden;
    list-style-type: none;
}

.main_dashboard .message__section .marquee-container ul li::marker {
    color: #fff;
}

.main_dashboard .message__section .marquee-container ul li {
    margin: 0 22px;
}
.main_dashboard .message__section .marquee-container ul li a {
    color: #fff;
    font-weight: 800;
}
/* POLL AND LATEST NEWS */

section.news_poll .card-body .poll__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
}
section.news_poll .poll__details h2 {
    font-size: 20px;
    font-weight: 700;
    padding: 15px 0;
    margin-bottom: 20px;
}
section.news_poll .poll__btn {
    margin-top: 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
section.news_poll .poll__details .pageCountt h4 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}
/* section.news_poll .poll__details .poll__btn button {
    margin: 10px;
} */
section.news_poll .card-body .poll__header .title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

section.news_poll .card-body .poll__header .title p {
    margin: 0;
    padding-left: 10px;
    font-size: 26px;
    line-height: 1;
}

section.news_poll .card-body .poll__header .title img {
    height: 27px;
}

section.news_poll .card-body .poll__header .close img {
    height: 38px;
}

section.news_poll .poll__details .form-check {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-bottom: 11px;
}
button.btn.btn-default {
    background: #31D68F;
    color: #000;
    padding: 7px 49px;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 500;
}
.pollCard{
    margin-top: 20px;
}
section.news_poll .poll__details .form-check label {
    padding-right: 33px;
    font-size: 16px;
    line-height: 1.2;
    display: flex;
    align-items: center;
}
section.news_poll .poll__details .form-check input {
    width: 20px;
    height: 20px;
    position: absolute;
}
.form-check-input:checked {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}


.progress-bar.bg-success {
    background-color: #31D68F !important;
    border-radius: 200px;
}

section.news_poll .poll__progress .grid p {
    margin: 0;
    padding: 5px 0;
    font-size: 14px;
}

section.news_poll .poll__progress {
    padding-top: 10px;
}

.progress-bar.bg-warning {
    background-color: #F1DC55 !important;
    border-radius: 100px;
}

.progress {
    border-radius: 100px;
    height: 12px;
}

.progress-bar.bg-danger {
    background-color: #F17A55 !important;
    border-radius: 100px;
}
.view__more a {
    color: var(--color-default);
    font-weight: 700;
    font-size: 17px;
}

.view__more {
    text-align: end;
    padding-top: 30px;
}

button#dropdown-item-button {
    background: transparent;
    color: #191919;
    min-width: 184px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.default__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.default__heading h1 {
    font-size: 28px;
    padding-bottom: 10px;
    position: relative;
    font-weight: bold;
}
.default__heading h1::after {
    content: "";
    position: absolute;
    background-color: #31D68F;
    width: 100%;
    height: 8px;
    right: 0;
    bottom: 0;
    border-radius: 100px;
}


section.news_poll .news__grid {
    /* padding: 0 50px; */
}
section.news_poll .news__card {
    margin-bottom: 0;
    padding: 20px 0;    
}
section.news_poll .slick-prev {
    right: 34px !important;
    top: 100% !important;
    margin-top:20px
}
section.news_poll .slick-next {
    top: 100% !important;
    left: auto !important;
    right: 66px;
    margin-top:20px
}
.news__card .news__image {
    border-radius: 20px;
    position: relative;
}

.news__card .news__image img {
    border-radius: 20px;
    height: 220px;
    object-fit: cover;
    box-shadow: 0px 6px 25px #0000000F;
}

.news__card .news__image .date {
    position: absolute;
    bottom: 15px;
    right: 25px;
    width: 76px;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
    background: #14AA72 0% 0% no-repeat padding-box;
    border-radius: 8px;
    text-transform: uppercase;
    color: #fff;
}

.news__card .news__image .date h4 {
    margin: 0;
    font-size: 20px;
    line-height: 1;
}

.news__card .card {
    padding: 15px;
    min-height: 480px;
    margin: 0 10px;
}
.d-height{
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}
.news__card .moreDetails {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news__card .moreDetails a {
    letter-spacing: 2px;
}
.news__card .likedCount {
    display: flex;
}

.news__card .likedCount h4 {
    margin: 0;
    font-size: 20px;
    color: #000000;
    opacity: 0.56;
    margin-right: 7px;
}

.news__card .moreDetails img {
    height: 20px;
}
.news__card .top__lists {
    display: flex;
    align-items: center;
    padding: 10px 0;
    justify-content: right;
}
.announcement__id {
    display: flex;
    align-items: center;
}
.news__card .top__lists .grid {
    display: flex;
    align-items: center;
    padding-left: 28px;
}

.news__card .top__lists .grid p {
    margin: 0;
    padding-right: 8px;
    color: #7E7E7E;
    font-size: 15px;
    min-width: 66px;
    text-align: right;
}
.news__card .top__lists .grid img {
    height: 16px;
    object-fit: contain;
}
.news__card .news__title {
    min-height: 112px;
}
.news__card .news__title h2 {
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    color: #000;
    text-align: right;
    max-width: 100%;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 67px;
}
.description_style p {
    color: #000;
    text-align: right;
    max-width: 100%;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px !important;
}
.description_style p span{
    font-size: 16px !important;
}
.owl-theme .owl-nav {
    text-align: right !important;
    margin-right: 17px !important;
    position: absolute !important;
    bottom: -64px !important;
}

button.owl-next {
    right: 43px !important;
    position: absolute !important;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: transparent !important;
    color: #FFF;
    text-decoration: none;
}
.news__grid .view__more {
    margin-left: 11px;
    padding-top: 8px;   
}


/*--------------------------------------------------------------
# Announcements & News
--------------------------------------------------------------*/


section.events__announcements {
    background: #fff;
}

.events__announcements__grid .card-body .card-text {
    font-size: 14px;
    color: #063123;
    margin: 0;
}
.events__announcements__grid .card-body .card-text span{
    margin: 0 10px;
}
.events__announcements__grid .card-body a{
    color: var(--color-default);
}
.events__announcements__grid .card-body h2 {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    padding-top: 8px;
    max-width: 100%;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}
.boxshadow-0:hover h2{
    color: var(--color-primary);
}
.boxshadow-0:hover p{
    color: #000;
    opacity: 1;
}

.events__announcements__grid .card-body {
    padding: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #9f9f9f3b;
}
.events__announcements__grid .card.boxshadow-0:last-child {
    padding-top: 0;
    border: none !important;
}

.events__announcements__grid .card.boxshadow-0:last-child .card-body {
    border: none;
}

.events__announcements__grid p.card-text {
    height: auto !important;
}
.events__announcements__grid .card-body p {
    color: #000;
    font-size: 14px;
    margin: 0;
    padding: 0;
    max-width: 100%;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 40px;
}

.events__announcements__grid .card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}
.news__announcement {
    display: flex;
}
.events__announcements__grid .card-body .news__announcement {
    padding-top: 13px;
    opacity: 0;
    transition: all ease-in-out 0.4s;
}
.events__announcements__grid .card-body .news__announcement p {
    opacity: 1 !important;
    opacity: 0;
    transition: all ease-in-out 0.4s;
}
.events__announcements__grid .card-body:hover .short_descr{
display: none;
}
.events__announcements__grid .card-body:hover .news__announcement {
    padding-top: 13px;
    opacity: 1;
    cursor: pointer;
    transition: all ease-in-out 0.4s;
}
.events__announcements__grid .card-body {
    min-height: 152px;
    cursor: pointer;
}
.events__announcements__grid .card-body .news__announcement button {
    margin-left: 15px;
}


/*--------------------------------------------------------------
# QUICK ACCESS & VACCANCY
--------------------------------------------------------------*/
.quick__access .logo img {
    width: 80% !important;
    height: 70px;
    object-fit: contain;
}
.quick__access .logo{
    transition: transform .2s;
}
.quick__access .logo:hover img{
    transform: scale(1.1);
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
    transition: all ease-in-out 0.4s;
}
.quick__access .slick-next {
    bottom: -40px !important;
    left: 25px !important;
    top: auto;
}
/* .quick__access .slick-list {
    padding-left: 50px;
} */
.quick__access .slick-prev {
    bottom: -40px !important;
    left: 60px !important;
    top: auto;
}
.quick__access .item {
    display: grid;
    grid-template-columns: auto auto auto;
    padding: 10px;
}
.quick__access .item__grid {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quick__access .item__grid {
    margin: 10px 0;
    margin-bottom: 10px;
}
.quick__access .owl-theme .owl-nav {
    text-align: left !important;
    left: 10% !important;
}


.vaccancies .vacancy__grid:hover {
    box-shadow: 0px 3px 6px #00000029;
    border: 2px solid #11AE21 !important;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
    transition: all ease-in-out 0.4s;
}
.vaccancies .vacancy__grid:hover h2{
    color: var(--color-default);
}
.vaccancies .vacancy__grid {
    margin: 15px 0px;
    border-bottom: 2px solid #dee2e6;
    padding: 20px 30px;
    transition: all .2s ease-in;
    min-height: 115px;
    border-radius: 17px;
    border: 2px solid #ffff !important;
    
}

.vaccancies .vacancy__grid button{
   opacity: 0;
    transition: all ease-in-out 0.4s;
    min-width: 122px;
}
.vaccancies .vacancy__grid:hover button{
    opacity: 1;
    /* min-width: 122px; */
}
.vaccancies .vacancy__grid h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
}

.vaccancies .vacancy__grid .apply p {
    font-size: 14px;
    margin: 0;
    max-width: 100%;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vaccancies .vacancy__grid .apply {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

button.btn-sm.btn-primary {
    background: #31D68F;
    color: #000000ba;
    padding: 5px 15px;
    border-radius: 7px;
    font-weight: bold;
    border: 1px solid #31D68F;
    min-width: 100px;
    text-transform: capitalize;
    white-space: nowrap;
}


.leaderboard .board__grid {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 20px #00000029;
    border-radius: 10px;
    opacity: 1;
    display: flex;
    justify-content: space-between;
    padding: 12px 30px;
    align-items: center;
    margin-top: 20px;
}
.leaderboard .board__grid.active{
    background-color: var(--color-primary);
}
.leaderboard .right__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.leaderboard .rank{
    display: flex;
    align-items: center;
}
.leaderboard .rank h4 {
    margin: 0;
    font-size: 21px;
}

.leaderboard .rank img {
    height: 26px;
    padding-left: 10px;
}
.leaderboard .right__content .number p {
    margin: 0;
    font-size: 30px;
    opacity: 0.62;
}
.leaderboard .board__grid.active p {
    color: #fff;
}

.leaderboard .board__grid.active h4 {
    color: #fff;
}

.leaderboard .board__grid.active span {
    color: #fff;
}

.leaderboard .right__content .number {
    padding-left: 20px;
}

.leaderboard .right__content .user h4 {
    font-size: 20px;
    margin: 0;
    font-weight: 700;
}

.leaderboard .right__content .user span {
    opacity: 0.49;
    font-size: 16px;
}

.leaderboard .medal img {
    height: 66px;
}

/* DISCUSSION */
.communication__hub .discussion {
    padding-top: 10px;
}

.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
  }
  
  .btn-upload {
    color: var(--color-default);
    background-color: #F8F9FA;
    padding: 13px 54px;
    border-radius: 6px;
    font-size: 15px;
    margin-left: 10px;
  }
  select.form-select.sm-select {
    background-color: #F8F9FA;
    padding: 7px 38px;
    border-radius: 6px;
    font-size: 13px;
    border: none;
    padding-left: 20px;
}
select.form-select.sm-select:focus{
    border-radius: 6px;
}
  button.btn.btn-primary.btn-post {
    border-radius: 7px;
    background: #31D68F;
    color: #000000ba;
    padding: 6px 36px;
    border-radius: 6px;
    font-size: 16px;
    border: none;
}
.btn-upload img{
    height: 16px;
    margin-left: 9px;
}
  .upload-btn-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
  }
  .communication__form{
    box-shadow: 0px 3px 1px #0000000F;
    opacity: 1;
  }
  .communication__form .card__form {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 1px #0000000F;
    padding: 15px;
    border-radius: 10px;
    margin-top: 29px;
}

.communication__form .card__form .form-group {
    margin-bottom: 15px;
}

.communication__form .card__form .form-group .form-control {
    font-size: 14px;
    padding: 10px;
}
.communication__form .card__form .submit__btn{
    display: flex;
    align-items: center;
}
.btn-upload-submit{
 background: #cfcfcf !important;
 border: 1px solid#cfcfcf !important;
  border-radius: 7px;
  color: #969696;
  padding: 8px 49px;
}


.communication .comments__grid {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 6px;
    opacity: 1;
    padding: 15px;
    margin: 20px 0;
}

.communication .comments__grid .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.communication .comments__grid .header .avatar {
    display: flex;
    align-items: center;
}

.communication .comments__grid .header .avatar h4 {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    text-transform: lowercase;
}

.communication .comments__grid .header img {
    padding-left: 10px;
    height: 24px;
}

.communication .comments__grid .time h4 {
    font-size: 14px;
    color: #707C97;
}

.communication .comments__grid .comment {
    padding: 13px 0px 16px 0px;
    border-bottom: 1px solid #DADADA;
}
.communication .comments__grid .comment img {
    width: 100%;
    padding: 20px 0;
    height: 465px;
    object-fit: cover;
}
/* .communication {
    border-left: 1px solid #d5d5d5;
    padding-left: 23px;
} */

.communication .comments__grid .comment p {
    font-weight: 800;
    margin: 0;
}

.communication .comments__grid .comment__count p {
    margin: 0;
    text-align: end;
    font-size: 14px;
    color: #6B6B6B;
}

.communication .comments__grid .comment__count {
    padding: 10px 0px;
}


/* FAQ SECTION */
.accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: url('../img/icons/faq-arrowDown.svg');
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
    margin-right: auto;
    margin-left: 0;
}
.accordion-button:focus{
    border: none !important;
    box-shadow: none !important;
    outline: 0 !important;
    text-decoration: none;
}
.accordion-button:not(.collapsed)::after {
    background-image: url('../img/icons/faq-arrowUp.svg');
    transform: none;
    margin-right: auto;
    margin-left: 0;
}
.accordion-button:not(.collapsed) {
    background: transparent;
    padding-left: 0;
    padding-right: 0;
    text-align: right;
}
.accordion-button:not(.collapsed):focus{
    border: none !important;
    box-shadow: none !important;
    outline: 0 !important;
    text-decoration: none;
}
.accordion-button:not(.collapsed):focus{
    border: none !important;
    box-shadow: none !important;
    outline: 0 !important;
    text-decoration: none;
}
.accordion-button:not(.collapsed) {
    box-shadow: none !important;
    outline: 0 !important;
}

.accordion-button:not(.collapsed) {
    box-shadow: none !important;
    outline: 0 !important;
    font-size: 28px;
    letter-spacing: -1.11px;
    color: #000000;
    font-weight: 700;
}
.accordion-item {
    color: var(--bs-accordion-color);
    background-color: transparent;
    border: none;
    
}
button.accordion-button.collapsed {
    background: transparent;
    border-bottom: 1px solid #d0d0d0;
    padding: 27px 0;
    font-weight: 700;
    text-align: right;
}
.accordion-body h4 {
    font-size: 18px;
    font-weight: 700;
}
.accordion-body {
    padding: 30px 0;
}

/* SEARCH ARCHIVES */
section.search__archives {
    background: var(--color-secondary);
}
section.search__archives .archive__title h3 {
    color: #fff;
}

section.search__archives .input-group {
    border: 1px solid #fff;
    border-radius: 100px;
    margin-top: 27px;
}
section.search__archives .input-group input{
    color: #fff;
}
section.search__archives .input-group img {
    padding: 7px;
    height: 35px;
}

section.search__archives .form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1; /* Firefox */
}


/* GALLERY */
section.image__gallery .gallery__row .gallery__image img {
    transition: all ease-in-out 0.4s;
}

section.image__gallery .gallery__row .gallery__image:hover img {
    transform: scale(1.1);
}

section.image__gallery .gallery__image {
    position: relative;
}

section.image__gallery .image {
    display: block;
    width: 100%;
    height: auto;
}

section.image__gallery .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #0000007a;
}

section.image__gallery .gallery__image:hover .date {
    opacity: 0;
}

section.image__gallery .gallery__image:hover .overlay {
    opacity: 1;
}
section.image__gallery .gallery__row {
    width: 95%;
    margin: 0 auto;
}
section.image__gallery  .default__heading{
    padding-bottom: 40px;
}

section.image__gallery .gallery__image {
    position: relative;
    margin-bottom: 30px;
    border-radius: 15px;
}

section.image__gallery .gallery__image img {
    height: 245px;
    object-fit: cover;
    border-radius: 14px;
}


section.image__gallery .date {
    position: absolute;
    bottom: 12px;
    right: 16px;
    padding: 10px;
    width: 67px;
    text-align: center;
    height: 68px;
    color: #fff;
    background: var(--color-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s;
    -webkit-transition: all 1s;
}

section.image__gallery .date p {
    margin: 0;
    line-height: 1.1;
    font-size: 18px;
    text-transform: uppercase;
}


section.image__gallery .gallery__image .hover {
    position: absolute;
    right: 31px;
    bottom: 40px;
    z-index: 99;
    display: none;
    opacity: 0;
    transition: all 1s;
    -webkit-transition: all 1s;
}
section.image__gallery .gallery__image:hover .hover{
    display: block;
    opacity: 1;
    transition: all 1s;
    -webkit-transition: all 1s;
}
section.image__gallery .gallery__image .hover p {
    margin: 0;
    color: #fff;
}

section.image__gallery .gallery__image .hover span {
    color: #3cd593;
}


/* FOOTER */
section.footer  .footer__links {
    display: flex;
    align-items: center;
    justify-content: end;
    padding-bottom: 60px;

}

section.footer  .footer__widgets ul {
    list-style-type: none;
    margin: 0;
}

section.footer {
    background: var(--color-secondary);
}

section.footer  .footer__widgets ul li a {
    color: #fff;
}

section.footer  .footer__widgets ul li {
    padding: 5px 0;
}

section.footer .copyright {
    background: #0A573E;
    padding: 15px 0;
}

section.footer .copyright p {
    margin: 0;
    text-align: end;
    color: #fff;
    font-size: 14px;
}
section.footer .footer__logo img {
    height: 98px;
}

/* NEWS LISTING */
section.news__lists .default__heading {
    justify-content: end;
    margin-top: 50px;
    margin-bottom: 30px;
}
section.news__lists .news__card .card{
    margin-bottom: 30px;
}

/* NEWS DETAILS */
section.news__details .news__detailsCard {
    margin-top: 50px;
}

section.news__details .news__image img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    border-radius: 27px;
}

section.news__details .news__title h2 {
    color: #000;
    font-weight: 700;
}

section.news__details .news__image {
    margin-bottom: 30px;
}

section.news__details .news__title ul {
    display: flex;
    list-style-type: none;
    padding: 10px 0;
    margin: 0;
    /* margin-right: 20px; */
}

section.news__details .news__title ul img {
    height: 17px;
    margin: 0px 9px 0px 5px;
}

section.news__details .news__title ul li {
    color: #7E7E7E;
    font-weight: bold;
    display: flex;
    align-items: center;

}

section.news__details .news__description {
    padding: 25px 0;
}

section.news__details .news__description p {
    color: #000;
    font-size: 16px;
    line-height: 1.9;
    padding: 10px 0;
}
.mr-auto{
    margin-right: auto;
}
.ml-2{
    margin-left: 10px;
}
.text-right{
    text-align: right !important;
}
.fw-100{
    font-weight: 100 !important;
}

.add__comment {
    padding: 30px 0;
}

.add__comment h2 {
    color: #000;
    font-weight: bold;
    margin-bottom: 33px;
    text-transform: uppercase;
    font-size: 20px;
}

.add__comment .form-control {
    margin-bottom: 30px;
    border: 1px solid #212529;
    padding: 22px;
    font-size: 18px;
    border-radius: 10px;
}

.submit {
    display: flex;
    justify-content: end;
}

.submit button {
    background: transparent;
    border: none;
}

.submit button img {
    height: 20px;
}
.bg-whte{
    background-color: #fff;
}
section.news_poll.poll__lists .card {
    margin: 20px;
}
.default-bg{
    background-color: #F7F7F7 !important;
}

.news__detailsCard .announcement__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 19px 0 15px 0;
}

.news__detailsCard .announcement__title ul li {
    color: #000 !important;
}

.news__detailsCard .announcement__title button.btn.btn-secondary {
    background: #31D68F;
    border: #31D68F;
    color: #063123;
    font-size: 14px;
}
.news__detailsCard .announcement__title p {
    margin: 0;
    font-weight: 100;
}
.news__detailsCard .announcement__title p strong{
    font-weight: bold;
}
section.news__details .news__title ul li span{
    font-weight: 100;
}
.news__detailsCard .announcement__title p strong {
    text-transform: uppercase;
}
section.event__listing .card{
    background-color: transparent;
}

/* EVENT DETAILS */
section.event__details .eventDetails {margin-top: 50px;}

section.event__details .eventDetails .news__image img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    border-radius: 10px;
}

section.event__details .eventDetails .news__title h2 {
    color: #101010;
    font-weight: bold;
    margin: 0;
    padding: 15px 0;
}

section.event__details .eventDetails .news__description p {
    color: #101010;
    line-height: 1.8;
    margin-bottom: 30px;
}

section.event__details .eventDetails .join__sec ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 0;

}

section.event__details .eventDetails .join__sec ul img {
    height: 24px;
    padding-left: 10px;
}

section.event__details .eventDetails .join__sec ul li {
    padding-left: 13px;
    color: #063123;
    opacity: .8;
    display: flex;
    align-items: center;
    border-left: 1px solid #c0bebe;
    padding: 0 16px;
}
section.event__details .eventDetails .join__sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* VACCANCY LISTS */
section.faq.vaccancy__lists .accordion-button:not(.collapsed) {
    font-size: 20px;
    padding-bottom: 0;
    margin-bottom: 0;
}

section.faq.vaccancy__lists .accordion-body {
    padding-top: 10px;
}
button.btn.btn-sm.btn-applyNow {
    background: #31D68F;
    border: 2px solid transparent;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    padding: 7px 20px;
}

.apply__now button {
    font-weight: 800;
}

.apply__now {
    margin-top: 17px;
    text-align: left;
}
section.faq.vaccancy__lists button.accordion-button.collapsed{
    color: #0D7B58;
}
section.faq.vaccancy__lists {
    padding-top: 100px;
}
section.faq.vaccancy__lists .accordion-item:hover {
    box-shadow: 0px 3px 6px #00000029;
    border: 2px solid #11AE21 !important;
    border-radius: 15px;
    cursor: pointer;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
    padding: 0 34px;
}
section.faq.vaccancy__lists .accordion-item {
    border-radius: 15px;
    cursor: pointer;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
    padding: 0 34px;
}

.leaderboard__btns .btn-primary:hover {
    background: #1BBE78 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 13px;
    opacity: 1;
    border: none;
    color:#fff;
    border:2px solid #1BBE78;
}
.leaderboard__btns .btn-primary {
    background: #1BBE78 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 13px;
    opacity: 1;
    border: none;
     color:#fff;
    margin-left:15px;
    font-size:20px;
    border:2px solid #1BBE78;
}

.leaderboard__btns .btn-outline {
   background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 13px;
    opacity: 1;
    border: none;
     color:#554E4E;
    margin-left:15px;
    font-size:20px;
    font-weight:700;
    border:2px solid #707070;
    padding: 10px 25px;
}


/* training__suggestions */
.training__suggestions{
    padding: 50px 0;
}
.training__suggestions .default__heading{
    padding-bottom: 30px;
}
.training__suggestions .trainingGrids .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 22px;
}

.training__suggestions .trainingGrids .title h3 {
    font-size: 20px;
    font-weight: bold;
    max-width: 100%;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}
.training__suggestions .trainingGrids .title p {
    color: #063123;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    min-width: 100px;
    text-align: left;
}
.training__suggestions .trainingGrids {
    padding: 15px 0;
}
.training__suggestions .homeTraining:nth-child(3) {
    border: none !important;
}
.training__suggestions .homeTraining:nth-child(3):hover{
    border: 2px solid #11AE21 !important;
}
.training__suggestions hr{
    margin: 20px 0;
}
.training__suggestions .trainingGrids .description .news__announcement h4 {
    margin: 0;
    text-align: left;
    font-size: 16px;
    color: #14aa72;
    font-weight: bold;
    border: 2px solid #14aa72;
    padding: 5px 17px;
    border-radius: 5px;
    display: initial;
}

.btn-primary-outline {
    border: 1px solid #14aa72;
    background: transparent;
    color: #14aa72;
    padding: 5px 15px;
    border-radius: 7px;
    min-width: 100px;
}

/* .news__announcement {
    text-align: left;
} */
.training__suggestions .trainingGrids .trainingGrids .title p {
    margin: 0;
    font-size: 16px;
    color: #063123;
}

.training__suggestions .trainingGrids .description a {
    background: #31D68F;
    color: #000000ba;
    padding: 5px 15px;
    border-radius: 7px;
    font-weight: bold;
}

.training__suggestions .trainingGrids .description p {
    color: #7B8591;
    opacity: 1;
    margin: 0;
    max-width: 100%;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 20px;
}

.training__suggestions .suggestionsGrid textarea {
    opacity: 1;
    min-height: 230px;
    padding: 23px;
    font-size: 20px;
    margin-bottom: 30px;
    height: 241px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='16' ry='16' stroke='%2331D68FFF' stroke-width='4' stroke-dasharray='16' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 16px;
    border: none;
}

.training__suggestions .suggestionsGrid .default__heading {
    padding-bottom: 30px;
}

.btn.btn-common{
    background: #31D68F 0% 0% no-repeat padding-box;
    border-radius: 7px;
    opacity: 1;
    min-width: 128px;
    font-size: 20px;
    border: 1px solid transparent;
    padding: 10px 25px;
    font-size: 16px;
}
.btn.btn-common:hover{
    background: var(--color-secondary) 0% 0% no-repeat padding-box;
    border-radius: 7px;
    opacity: 1;
    min-width: 128px;
    font-size: 20px;
    border: 1px solid transparent;
    padding: 10px 25px;
    font-size: 16px;
    color: #fff;
}

.btn.btn-danger{
    background: #FF7575 0% 0% no-repeat padding-box;
    min-width: 128px;
    font-size: 20px;
    border: 1px solid transparent;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 7px;
}
.btn.btn-danger:hover{
    background: #f95959 0% 0% no-repeat padding-box;
    border-radius: 7px;
    min-width: 128px;
    font-size: 20px;
    border: 1px solid transparent;
    padding: 10px 25px;
    font-size: 16px;
}
.training__suggestions .suggestionsGrid .buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mr-3 {
    margin-right: 15px;
}

.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
  }
  
  .training__suggestions .suggestionsGrid  .uploadBtn {
    height: 50px;
    background: #31D68F 0% 0% no-repeat padding-box;
    border-radius: 7px;
    opacity: 1;
    min-width: 128px;
    font-size: 16px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
  .training__suggestions .suggestionsGrid .uploadBtn img {
    height: 15px;
}
  .training__suggestions .suggestionsGrid .upload-btn-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }

  /* INITAITIVES */
  .initiatives__section .initiativesGrid a {
    background: #31D68F;
    color: #000000ba;
    padding: 6px 15px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.initiatives__section .initiativesGrid h6 {
    color: #31d68f;
    font-size: 14px;
    margin: 0;
    direction: ltr;
    text-align: right;
    font-weight: 600;
    margin-bottom: 15px;
}
.initiatives__section .initiativesGrid .title {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    /* padding-top: 7px; */
}
.initiatives__section .initiativesGrid:hover h2{
    color: var(--color-primary);
}
.initiatives__section .initiativesGrid .title h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding-left: 10px;
    max-width: 100%;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.initiatives__section .initiativesGrid .names {
    display: flex;
    flex-wrap: wrap;
}

.initiatives__section .initiativesGrid .names .list {
    border: 2px solid #31d68f;
    border-radius: 6px;
    margin: 0 6px;
    min-width: 100px;
    text-align: center;
    padding: 3px;
    margin-bottom: 5px;
}
.initiatives__section .initiativesGrid .names {
    margin: 5px 0;
}

.initiatives__section .initiativesGrid .names .list h4 {
    margin: 0;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 3px 11px;
    white-space: nowrap;
}

.initiatives__section {
    padding: 30px 0;
}

.initiatives__section .initiativesGrid .description {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.initiatives__section .initiativesGrid .description p {
    width: 95%;
    font-size: 18px;
    color: #343434;
    line-height: 1.2;
    max-width: 100%;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* .initiatives__section .initiativesGrid .description button {
    min-width: 130px;
} */
.homeEvaluation .slick-initialized .slick-slide {
    display: block;
    padding: 12px !important;
}
.initiatives__section .initiativesGrid {
    padding: 30px 0;
    border-bottom: 1px solid #dee2e6;
}
.initiatives__section .initiativesGrid:last-child{
    border-bottom: 1px solid transparent;
}

/* EVALUATION */
.evaluation__section {
    width: 82%;
    margin-right: auto;
}

.evaluation__section .card {
    padding: 50px;
    margin-top: 50px;
}

.evaluation__section .evaluationGrid {
    min-height: 433px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* .evaluation__section .evaluationGrid .contents {
    padding-top: 28px;
} */
.evaluation__section .evaluationGrid h4 {
    font-weight: bold;
    padding-bottom: 7px;
    max-width: 100%;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.evaluation__section .evaluationGrid h6 {
    padding-bottom: 20px;
}


.evaluation__section .evaluationGrid p {
    color: #000000;
    /* opacity: 0.59; */
    font-size: 18px;
    color: #7B8591;
    /* font-size: 14px; */
    max-width: 100%;
    -webkit-line-clamp: 11;
    line-clamp: 11;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.evaluation__section .evaluationGrid h6 {
    color: #063123;
    opacity: 1;
    font-size: 14px;
    text-align: left;
}

.evaluation__section .evaluationActions {
    margin-top: 37px;
    display: flex;
    justify-content: space-between;
}

.evaluation__section .evaluationActions button {
    font-size: 17px !important;
    color: #fff;
    /* padding: 10px 32px; */
}
.mb-30{
    margin-bottom: 30px;
}
.apexcharts-canvas {
    margin: 0 auto;
}

section.tsd__reports .footer {
    display: flex;
    justify-content: space-between;
    width: 90%;
}
section.tsd__reports .left {
    text-align: left;
}

section.tsd__reports .left p {
    margin: 0;
    color: #dee2e6;
}

section.tsd__reports .left h3 {
    font-weight: bold;
    margin: 0;
    color: #787878;
    font-size: 24px;
    line-height: .9;
}
section.tsd__reports .right {
    width: 55%;
}

section.tsd__reports .right p {
    margin: 0;
    color: #adb5bd;
    font-size: 16px;
    line-height: 1;
}

.transport{
    display: flex;
    align-items: flex-start;
}
.transport h4{
    margin: 0;
    font-weight: bold;
}
.transport h4 i {
    color: #31d68f;
    font-weight: bold;
    font-size: 20px;
    margin-right: 10px;
}

/* ACTIVITES AND BENEFITS */
section.benefitsActivities .benefitsActivityGrid h3 {
    font-weight: bold;
    font-size: 22px;
    max-width: 100%;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
}

section.benefitsActivities .benefitsActivityGrid p {
    color: #7B8591;
    line-height: 1.4;
    max-width: 100%;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

section.benefitsActivities .benefitsActivityGrid a {
    color: #000000ba;
}

section.benefitsActivities .benefitsActivityGrid {
    padding-bottom: 30px;
    border-bottom: 2px solid transparent;
    border-bottom: 2px solid #eee;
    transition: all .1s ease-in;
    padding: 20px !important;
    margin-bottom: 30px;
}
section.benefitsActivities .benefitsActivityGrid:hover{
    box-shadow: 0px 3px 6px #00000029;
    border: 2px solid #11AE21 !important;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity .10s ease-in-out;
    -moz-transition: opacity .10s ease-in-out;
    -webkit-transition: opacity .10s ease-in-out;
    transition: all ease-in-out 0.2s;
    padding: 20px !important;
}
section.benefitsActivities .benefitsActivityGrid:last-child{
    border-bottom: 1px solid transparent;
}

/* SURVEY INNER PAGE */
.survay__card{
    direction: rtl;
    position: relative;
}
.slideCount{
    position: absolute;
    left: 0;
    z-index: -1;
}
.slideCount h3 {
    color: #31d68f;
    margin: 0;
    font-size: 35px;
    font-weight: bold;
}
.survay__card .card.surveyCard {
    min-height: 384px;
}
.survay__card .card.surveyCard span {
    color: #14aa72;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    top: 8px;
    margin-bottom: 10px;
    left: 26px;
}
.text-center.pollDetails button {
    font-size: 22px;
    text-transform: capitalize;
}
.text-center.pollDetails button:hover {
    font-size: 22px;
    text-transform: capitalize;
}
.poll__details {
    /* margin-top: 24px; */
    min-height: 300px;
}
.card.pollCard .card-body {
    padding-bottom: 0;
}

.survay__card .card.surveyCard h2 {
    font-size: 24px !important;
}

.survay__card .survay__title h2 {
    text-align: center;
    font-weight: bold;
    font-size: 35px;
    width: 80%;
    margin: 0 auto;
}

.survay__card .survay__title p {
    color: #7B8591;
    width: 80%;
    margin: 0 auto;
}

.survay__card .survay__title {
    margin-bottom: 80px;
}
.poll__details textarea {
    background: #F5F5F5;
    border: none;
    border-radius: 15px;
    padding: 20px;
}
.poll__details textarea:focus {
    background: #F5F5F5;
    border: none;
    border-radius: 15px;
    padding: 20px;
}

section.surveyDetails .slick-prev{
    top: 0 !important;
    z-index: 99;
}
section.surveyDetails .slick-next{
    top: 0 !important;
    z-index: 99;
}

/* TRAINING INNER PAGE */
.tarainingModal .btn-close{
    background: url('../img/icons/modalClose.svg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 6px !important;
    position: absolute;
    left: 40px;
    top: 36px;
    opacity: 1 !important;
}
.tarainingModal .btn-close:focus{
    border: none;
    outline: none;
    box-shadow: none;
}
.tarainingModal .modal-body{
    /* height: 250px; */
    overflow-y: auto;
    color: #7B8591;
}

.tarainingModal .modal-body::-webkit-scrollbar {
    width: 7px;
  }
   
  .tarainingModal::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }
   
  .tarainingModal .modal-body::-webkit-scrollbar-thumb {
    background-color: #14AA72;
    outline: 1px solid #14AA72;
    border-radius: 200px;
  }
  .modal-70w {
    width: 70%;
    max-width: none!important;
}


/* INITIATIVES */
.initiativeModal .modal-title.h4 {
    width: 100%;
    margin-top: 30px;
}

.initiative__title{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.initiative__title h3 {
    margin: 0;
}


 .modal-dialog.modal-70w.modal-dialog-centered .modal-content {
    padding-bottom: 40px;
}
.initiative__title p {
    margin: 0;
    font-size: 16px;
}

.tagged__names .names {
    display: inline-flex;
}

.tagged__names .list {
    border: 2px solid #31d68f;
    border-radius: 6px;
    margin: 0 6px;
}

.tagged__names .list h4 {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 3px 11px;
    color: #000;
}

/* .add__comment__section {
    min-height: 122vh;
} */

/* TAGS */
.postResults .selected__tags {
    display: block;
}

.postResults .tags {
    border: 2px solid var(--color-primary);
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    padding: 4px 13px;
    margin: 6px;
    margin-right: 0;
}

.postResults .tags i {
    color: var(--color-primary);
    font-size: 22px;
    display: flex;
    cursor: pointer;
}

section.tsd__about__rules {
    margin-top: 50px;
}

section.tsd__about__rules .contents h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    padding: 15px 0;
    padding-top: 8px;
}

section.tsd__about__rules .contents p {
    color: #7B8591;
    line-height: 1.4;
    margin-bottom: 26px;
}

section.tsd__about__rules .contents h4 {
    font-weight: bold;
    padding: 16px 0;
}

section.tsd__about__rules .contents ul li {
    padding: 10px 0;
    font-size: 18px;
}

/* COMMENTS LISTS */

section.news__details .news__comments {
    margin-top: 60px;
    margin-bottom: 30px;
}

section.news__details .news__comments h2 {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 40px;
    font-size: 20px;
}
section.news__details .news__comments .news__grid p{
    margin-bottom: 0;
}
section.news__details .news__comments .news__grid {
    margin: 30px 0;
}

section.news__details .news__comments .news__grid .title {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

section.news__details .news__comments .news__grid .title h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    text-transform: lowercase;
}

section.news__details .news__comments .news__grid .title p {
    margin: 0;
    color: #31d68f;
    text-transform: capitalize;
    margin-right: 15px;
}

/* REACT SELECT */

span.select__indicator-separator.css-1u9des2-indicatorSeparator {
    display: none;
}

.select__control.css-13cymwt-control {
    background: transparent;
    min-width: 162px;
    border: 1px solid #00000052;
    /* background-color: #fff; */
    border-radius: 8px;
    padding: 6px;
}
.select__control.css-13cymwt-control:focus {
    background: transparent;
    min-width: 162px;
    border: 1px solid #000;
    background-color: #fff;
    border-radius: 8px;
    padding: 6px;
}
.select__control.css-13cymwt-control:hover {
    background: transparent;
    min-width: 162px;
    border: 1px solid #000;
    border-radius: 8px;
    padding: 6px;
}
.css-t3ipsp-control{
    background: transparent;
    min-width: 162px;
    border: 1px solid #000 !important;
    box-shadow: none !important;
    border-radius: 8px !important;
    padding: 6px;
}
.css-t3ipsp-control:hover {
    background: transparent;
    min-width: 162px;
    border: 1px solid #000;
    border-radius: 8px;
    padding: 3px;
}
.css-t3ipsp-control:hover{
    border: 1px solid #000 !important;
    box-shadow: none !important;
    background: #fff;
    padding: 6px;
}
.css-b62m3t-container{
    background: transparent;
    min-width: 162px;
}
div#react-select-3-placeholder {
    color: #212529 !important;
}

svg.css-tj5bde-Svg {
    fill: #2e2e2e;
}
.data__notfound {
    margin-bottom: 30px;
}
.data__notfound .card {
    margin-top: 20px;
    height: 487px;
}
.data__notfound .card .card-body{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none !important;
}
.data__notfound .card .card-body h5 {
    margin: 0;
    margin-top: 3px;
    color: #cfcfcf;
    font-size: 22px;
}
.data__notfound .card .card-body img {
    height: 60px;
    object-fit: contain !important;
}

.btn-delete {
    background: #FF7575 0% 0% no-repeat padding-box;
    border-radius: 12px;
    opacity: 1;
    font-size: 12px;
    border: 1px solid transparent;
    color: white;
}

.btn-delete:hover {
    background: #f95959 0% 0% no-repeat padding-box;
    border-radius: 12px;
    opacity: 1;
    color: #fff;
    font-size: 12px;
    border: 1px solid transparent;
}
.imageWidth100 {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.selectMaxWidth {
    max-width: 200px !important;

}

/* ALL COMMENTS SECTION*/

.sec__comments {
    margin-top: 60px;
    margin-bottom: 30px;
}

.sec__comments h2 {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 40px;
}
.sec__comments p{
    margin-bottom: 0;
}
.sec__comments {
    margin: 30px 0;
}

.sec__comments .title {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.sec__comments .title h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    text-transform: lowercase;
}

.sec__comments .comment__grid .title p {
    margin: 0;
    color: #31d68f;
    text-transform: capitalize;
    margin-right: 15px;
}

/* EXTRA CHANGES */

/* svg.css-tj5bde-Svg {
    fill: #14aa72;
} */
.communication__form.add-discussion .select__control.css-13cymwt-control {
    background: #f8f9fa;
    min-width: 162px;
    border: transparent;
    border-radius: 8px;
    padding: 0;
}
.add-discussion .css-t3ipsp-control:hover {
    border: 1px solid #0000 !important;
    box-shadow: none !important;
    background: #f8f9fa;
    padding: 0;
}

.likedImg img{
    object-fit: contain !important;
    height: 50px !important;
}

.detailedCalendar .eventDot {
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background-color: #B100FF;
    display: block !important;
    position: absolute;
    left: 48%;
    top: 33px;
    text-align: center;
    justify-content: center;
}

.fc .fc-daygrid-body-balanced .fc-daygrid-day-events {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    height: 65%;
}
.fc .fc-daygrid-event-harness {
    position: relative;
}

/* DISCUSSIONS */
.dicussionImg {
    position: relative;
    margin-bottom: 20px;
}

.dicussionImg button {
    position: absolute;
    z-index: 99;
    right: 8px;
    bottom: 5px;
    background: #fff;
    border-radius: 100%;
    width: 25px;
    height: 25px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dicussionImg button img {
    height: 22px;
    padding: 0;
}

.dicussionImg img {
    border-radius: 7px;
    height: 75px;
    object-fit: cover;
}

.dicussionImg button:hover {
    background: #fff;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
/* discussionGridLists */
.communication .comments__grid .comment img.slick-arrow {
    height: 65px !important;
    object-fit: contain;
    z-index: 9;
    width: auto !important;
  }
  .communication .comments__grid .comment img.slick-arrow.slick-next {
    left: 15px;
}
.communication .comments__grid .comment img.slick-arrow.slick-prev {
    right: 15px;
}

/* poll-success-card */
.poll-success-card .card-body{
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.poll-success-card .card-body img{
    margin-bottom: 20px;
    height: 130px;
}
.poll-success-card .card-body h5 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 21px;
}

.poll-success-card .card-body button {
    padding: 8px 30px;
    font-size: 16px;
    color: #bcbbbb;
    font-weight: bold;
    text-transform: capitalize;
}
.dicussionDetails{
    padding: 90px 0;
    display: block;
}

/* DISCUSSION DETAILS */
.commentLists {
    margin-bottom: 30px;
    padding: 0 22px;
}
.commentLists .title {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.commentLists .title h3 {
    margin: 0;
    font-weight: bold;
    font-size: 18px;
}

.commentLists .title p {
    margin: 0;
    padding-right: 15px;
    color: #14aa72;
}

.formClear {
    text-align: left;
}
/* .formClear button{
    padding: 10px!important;
} */
.formClear img {
    height: 17px;
}

.formClear button {width: 50px;height: 50px;padding: 0 !important;}
.ml-0{
    margin-left: 0;
}
.pl-2 {
    padding-left: 15px;
}

.notification__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    width: 100%;
}

.notification__header img.notification {
    height: 22px !important;
    object-fit: contain !important;
    width: auto;
}
ul.pagination li a {
    color: #14aa72;
}

li.page-item.pageActive a {
    background: #0d7b58;
    color: #fff;
}
.page-link:focus,
.page-link:active {
    outline: none !important;
    box-shadow: none !important;
}
.page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.deletePopup{
    text-align: center;
}
.deletePopup .modal-footer {
    justify-content: center;
}

.deletePopup .modal-body {
    font-size: 22px;
}
.category__title {
    display: flex;
    margin-bottom: 19px;
}

.category__title h5 span.text {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    color: #000;
    margin-right: 5px;
}

.category__title h5 {
    margin-left: 14px;
    font-size: 16px;
    text-transform: capitalize;
    color: #14aa72;
}
.searchDetails p {
    margin: 0;
}
.searchDetails {
    max-width: 100%;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.training__suggestions .trainingGrids .title p span{
    margin: 0 5px;
}

.center-align{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slick-slide {
    direction: rtl !important;
}

.comment.dicussion__details h2 {
    color: #000;
    font-weight: 700;
}
.comment.dicussion__details .time {
    display: flex;
    margin-bottom: 15px;
}

.comment.dicussion__details .time p {
    margin: 0 15px;
}

.communication .comments__grid .comment h5 {
    font-size: 16px;
    margin-top: 7px;
}

.header__discussion {
    display: flex;
    align-items: center;
}

.header__discussion h4 {
    margin: 0;
    font-size: 16px;
    margin: 0px 7px;
    padding-top: 5px;
}

.evaluationDetail h2 {
    font-size: 20px !important;
    margin: 0px !important;
}
.evaluationDetail .card{
min-height: auto;
}
.evaluationDetail .news__title {
    min-height: auto;
}
.evaluationDetail .card-body p{
    max-width: 100%;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 15px;
}
