:root {
    --primary: #3FBEB3;
    --secondary: #8B929F;
    --orange: #F99E23;
    --red: #E62238;
    --white: #fff;
    --lightprimary: #EDF5F5;
    --lightgray: #8494AF;
    --lightgray-fade: #b7c9e8;
    --dark: #393939;
    --whitesmoke: #F7F7F7;
    --body-bg: #ECF8F8;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    background-color: #FFF;
    background: url(../img/banner/bg.jpg);
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    scroll-behavior: smooth;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.3rem;
}

h5 {
    font-size: 1.2rem;
}

h6 {
    font-size: 1rem;
}

p {
    font-size: .875rem;
    color: #393939;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
}

.pill {}


.bold-4 {
    font-weight: 400;
}

.bold-5 {
    font-weight: 500;
}

.bold-6 {
    font-weight: 600;
}

.bold-7 {
    font-weight: 700;
}

.py-6 {
    padding: 60px 0;
}

.py-7 {
    padding: 70px 0;
}

.btn {
    line-height: 1.3;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

a {
    color: var(--primary);
    text-decoration: none;
}

.form-control:focus {
    border-color: #3fbeb3;
    outline: 0;
    box-shadow: none;
}

.btn:focus {
    box-shadow: none !important;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 .25rem rgba(49, 132, 253, .5);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    color: var(--primary);
    background-color: #fff;
    border-color: var(--primary);
}

.btn-secondary {
    border-color: #F6780F;
    background: #F6780F;
    color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--white);
    color: #F6780F;
    border-color: #F6780F;
}

.btn-outline-secondary {
    border-color: var(--orange);
    color: var(--dark);
}

.btn-outline-secondary:hover {
    border-color: var(--orange);
    background: var(--orange);
    color: var(--white);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--dark);
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-select {
    font-size: .938rem;
    color: #212529;
    border-radius: .625rem;
    border: 1px solid #393939;
    height: 42px;
}

.form-select:focus {
    border-color: #b9bbbf;
    box-shadow: 0 0 0 .25rem rgba(178, 208, 253, 0.25);
}

.border {
    border: 1px solid #CEC7C7 !important;
}

.border-left {
    border-left: 1px solid #CEC7C7;
}

.border-right {
    border-right: 1px solid #CEC7C7;
}

.border-bottom {
    border-bottom: 1px solid #CEC7C7;
}

.border-top {
    border-top: 1px solid #CEC7C7;
}

.card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 3px 3px 11px #00000022;
    border: none;
    transition: .3s ease-in-out all;
}

.card-body a.btn {
    color: #fff;
}

.card-body a.btn:hover {
    color: var(--primary);
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff !important;
    border-radius: 0px !important;
    height: 17px;
    width: 17px;
    border: 1px solid #393939 !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -ms-border-radius: 0px !important;
    -o-border-radius: 0px !important;
    box-shadow: none !important;
}

input[type="checkbox"]::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    display: none;
    width: 100%;
    text-align: center;
}

input[type="checkbox"]:checked::before {
    display: block;
}

.card.big-card .card-body {
    box-shadow: none;
}

.tag-name {
    font-size: 29px;
    margin-left: 15px;
    font-weight: 600;
    color: var(--primary);
}

.card-body a {
    color: var(--dark);
}

.card:hover .card-body a .h6 {
    color: var(--primary);
}

.card.big-card .card-body .date {
    font-size: 1.25rem;
}

.card-logo {
    height: 48px;
}

.card.big-card {
    height: 100%;
    min-height: 450px;
    position: relative;
}

.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease-in-out all;
}

.card:hover .card-image img {
    transform: scale(1.03);
    transition: .8s ease-in-out all;
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
}

.card-image {
    min-width: 230px;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

.contain-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hover-shade {
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00000075;
    z-index: 9999;
    transition: .3s ease-in-out all;
    opacity: 0;
}

.event .card:hover .hover-shade {
    opacity: 1;
}

/******** Header *********/

header {
    height: 70px;
    box-shadow: 0px 3px 6px #0000000A;
    background-color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999999;
    display: flex;
    align-items: center;
}

.navbar-brand {
    height: 55px;
    display: inline-block;
}

.navbar-brand img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.top-header {
    height: 32px;
    background-color: #EBEBEB;
}

.site-item {
    height: 30px;
    display: inline-block;
}

.site-item img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

.site-item {
    height: 29px;
    display: inline-block;
    padding: 1px 8px 9px;
}

.site-item.active {
    background-color: #fff;
}

.site-item.active img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
}

.site-nav {
    padding-left: 110px;
    margin-top: 3px;
}

.site-login a {
    font-size: 11px;
    margin-top: 5px;
    padding: 3px 10px;
    font-weight: 400;
}

.navbar-light .navbar-nav .nav-link {
    font-size: 0.813rem;
    padding: .5rem 1rem;
    color: #393939;
    font-family: 'Source Sans Pro', sans-serif;
    margin-bottom: 5px;
}

.icon img {
    height: 20px;
}

.logo-text {
    font-size: 21px;
}

.navbar-brand div img {
    height: 43px;
}

.navbar-brand div {
    position: relative;
}

.navbar-brand div::before {
    content: "";
    position: absolute;
    right: -4px;
    top: 0;
    height: calc(100% - 7px);
    width: 3px;
    background-color: #d9d9d9;
    bottom: 0;
    margin: auto;
}

/* Banner */

.banner {
    background: none;
    height: auto;
}

.banner h1 {
    font-size: 2.5rem;
}

.carousel-item {
    height: 290px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    width: 600px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    top: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 36px;
}

.banner-content div::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 100%;
    background: #F05123;
    left: -30px;
    top: 0;
    border-radius: 10px;
}

/* Explore */

.explore {
    margin-top: -36px;
    position: relative;
    z-index: 99999;
}

.explore-box {
    background: #fff;
    box-shadow: 0px 3px 6px #0000002F;
    border-radius: 17px;
    position: relative;
}

.orange-border,
.red-border,
.blue-border {
    height: 6px;
    width: 50px;
    position: absolute;
    bottom: 0;
    border-radius: 2px 2px 0 0;
}

.red-border {
    background: #EC4417;
}

.orange-border {
    background: var(--orange);
    left: 80px;
}

.blue-border {
    background: var(--primary);
    left: 135px;
}

.input-sec {
    position: relative;
}

.filter-options .tab-content .tab-pane {
    position: absolute;
    width: 100%;
    min-height: 176px;
    background: #fff;
    z-index: 9999999;
    border-radius: 15px;
    box-shadow: 0px 9px 10px #0000001f;
}

.filter-options .nav-link {
    font-size: .938rem;
    color: #212529;
    border-radius: .625rem;
    border: 1px solid #979797;
    height: 42px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-options .nav-link i {
    font-size: 12px;
}

.filter-options .nav-pills .nav-link:hover,
.filter-options .nav-pills .nav-link.active,
.filter-options .nav-pills .show>.nav-link {
    background-color: var(--lightprimary);
    color: var(--primary) !important;
    border-color: var(--primary);
}

.filter-options label {
    font-size: .87rem;
}

/* Event */

.card.big-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0px;
    background: #0000004f;
    color: #fff;
    width: 100%;
}

.card-content-right span {
    font-size: 0.7rem;
    color: #7B7B7B;
    font-weight: 500;
}

.catagory {
    display: inline-flex;
    border: 1px solid var(--primary);
    background: #E5F4F8;
    color: #717171;
    font-size: .875rem;
    height: auto;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.catagory .inner-sec {
    padding: 7px 10px;
    border: 1px solid transparent;
    background: #fff;
    position: relative;
    font-weight: 500;
    text-align: center;
    box-shadow: -1px 0px 4px #bbc5c8c2;
    margin: 4px;
}

.card.big-card .card-body .catagory {
    background: transparent;
    color: #fff;
}

.card.big-card .card-body .catagory .inner-sec {
    color: #717171;
    box-shadow: none;
}

.event-list .logos img {
    margin-right: 10px;
    height: 20px;
}

a.logos-cnt {
    border: 1px solid #b9b9b9;
    width: 16px;
    height: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    padding: 13px;
    color: #7e7e7e !important;
    font-size: 12px;
    font-weight: 500;
}

.card-content-right span a {
    color: #7B7B7B;
}

.event-items .card-image {
    height: 260px;
}

.event-items .card-image::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(transparent, transparent, #000);
    z-index: 9;
}

.event-spc-name {
    position: absolute;
    z-index: 99;
    bottom: 20px;
    left: 20px;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}

.event-items .card {
    box-shadow: none;
}

/* recent */

.recent {
    background: #F7F7F7;
}

.recent .tab-content .card-image {
    min-width: 100%;
    max-height: 200px;
    min-height: 200px;
    height: 200px;
}

.recent .tab-content .card-body .catagory span {
    font-size: 0.7rem;
}

.recent .tab-content .card-body .catagory span {
    font-size: 0.7rem;
    padding: 9px 6px;
}

.recent .tab-content .card-body {
    padding-left: 12px;
    padding-right: 12px;
}

.recent .card {
    box-shadow: 0px 3px 6px #00000029;
}

.recent .nav-tabs .nav-item.show .nav-link,
.recent .nav-tabs .nav-link.active {
    color: var(--dark) !important;
    background-color: transparent;
    border-bottom: 5px solid #E54A3F;
}

.recent .nav-tabs .nav-link {
    border: none;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark) !important;
}

.recent .nav-tabs {
    border-bottom: 1px solid #BCBCBC;
}

/* support */

.download {
    background-image: url('../img/support/bg.png');
    background-size: cover;
    height: 100%;
    border: 2px solid #eaeaea;
    border-radius: 1rem;
    overflow: hidden;
}

.support-cover {
    height: 530px;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.support-content {
    position: absolute;
    top: 0;
    z-index: 9;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.support-cover img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

.support-content h2 {
    font-size: 3.75rem;
    line-height: 1.1;
}

.download-link a img {
    height: 60px;
    margin-right: 10px;
}

.download-content h5 {
    font-size: 1.3rem;
}

.download-content h1 {
    line-height: 1.1;
}



/* footer */

footer {
    background: #F5F5F5;
}

ul {
    padding-left: 0;
}

ul li {
    list-style: none;
}

.footer-link li a {
    text-decoration: none;
    color: var(--dark);
}

.footer-link li {
    padding-bottom: 7px;
}

.footer-link h5 {
    font-weight: 600;
}

.footer-link input {
    height: 58px;
    border-radius: 50px;
    border-color: #848689;
    border-right: none;
}

.footer-link .input-group a {
    position: relative;
    left: -28px;
    z-index: 99;
}

.footer-link .input-group a span {
    height: 58px;
    width: 58px;
    border-radius: 100px;
    position: relative;
    background: var(--primary);
    border-color: var(--primary);
    justify-content: center;
    color: #fff;
}

.input-group-text i {
    font-size: 30px;
}

.footer-link li a:hover {
    color: var(--primary);
}

.event-video .video-view-wrp {
    display: none;
}

.play-btn span {
    position: absolute;
    z-index: 99;
    height: 110px;
    width: 110px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border-radius: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}

.play-btn {
    height: 100%;
    position: relative;
    z-index: 999;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.event .card-content {
    position: relative;
    z-index: 9999;
}

.event-video {
    height: 100%;
    min-height: 450px;
}

.video-view-wrp {
    height: 100%;
}

.catagory+a {
    font-size: .8rem;
    /* padding: 12px;  */
}

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

.play-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000073;
}

.navbar-toggler {
    padding: .2rem .55rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: var(--lightprimary);
    border: none;
}

.navbar-toggler-icon {
    width: 1.1em;
    height: 1.5em;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary) !important;
}

.card a {
    border-radius: 1rem;
}

.recent-card a.btn {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box {
    height: 41px;
    background: #fff;
    border-radius: 50px;
    display: flex;
    overflow: hidden;
    align-items: center;
}

a:hover {
    color: var(--primary);
}

.search {
    position: fixed;
    z-index: 9999999999;
    height: 100%;
    width: 100%;
    background: #0000009c;
    top: 0;
    left: 0;
    display: none;
}

.search-box input {
    height: 41px;
    border: none;
    padding: 10px 20px;
    width: calc(100% - 60px);
}

.btn-search {
    width: 60px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.demand .card {
    height: 100%;
}

.recent-card a {
    color: #fff;
}


/* Activity */

.btn-outline-back {
    border: 1px solid #D6D6D6;
    background-color: #fff;
    font-weight: 400;
    font-size: 0.875rem;
    padding: 5px 15px;
    color: var(--dark);
}

.btn-outline-back img {
    height: .675rem;
    position: relative;
    top: -1px;
    margin-right: 4px;
}

.activity-area {
    border-radius: 20px;
}

.rounded-img {
    width: 65px;
    height: 65px;
    overflow: hidden;
}

.activity-cover {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.social-media li a {
    height: 38px;
    width: 38px;
    margin-right: 10px;
    border: 1px solid #393939;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: #393939;
}

.social-media {
    display: flex;
    flex-wrap: wrap;
}

.activity-area .card-content-right span {
    font-size: 1rem;
}

.activity-area h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

.es-time.border {
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #101010;
    font-size: .875rem;
}

.es-time span {
    position: absolute;
    left: 0;
    height: 100%;
    top: 0;
    background-color: var(--primary);
    border-radius: 50px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.profile+div p {
    color: #101010;
    font-weight: 600;
}

.profile {
    margin-right: 15px;
}

.activity-area .card-image {
    min-width: 190px;
    min-height: 100%;
    border-radius: 1rem;
    overflow: hidden;
    height: 190px;
}

.activity-area .card {
    box-shadow: 0px 3px 6px #00000026;
}

.related .card-image {
    height: 230px;
}

.right-wrap .program-title {
    background-color: #e5f4f8;
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
}

.programs ul li a {
    padding: 12px 16px;
    border-bottom: 1px solid #ece5e5;
    color: var(--dark);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.programs ul li span {
    width: 18px;
    height: 18px;
    font-size: 10px;
    border: 1px solid gray;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-btn {
    display: flex;
    position: absolute;
    bottom: 35px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.download-btn img {
    height: 40px;
}

.powerd h6 {
    font-size: 1rem;
    font-weight: 600;
}

.powerd img {
    height: 100px;
    width: 100%;
    object-fit: contain;
    object-position: left;
}

.activity-cover+.catagory {
    width: 100%;
}

.recent.related {
    background-color: #fff;
}

/* header-reg mycea */
.reg-header {
    background-color: var(--orange);
}

.reg-btn-head {
    background: var(--dark);
    color: #fff;
    font-size: .75rem;
    padding: 3px 10px;
    border-radius: 10px;
    margin-left: 10px;
}

.event-items .card a {
    width: 100%;
}

.activity-content {
    background: #f2f2f2;
    margin-top: -30px;
    border-radius: 20px;
    padding: 30px 20px;
    padding-top: 55px;
}

.activity-content h6 {
    font-size: 17px;
    font-weight: 600;
}

.activity-tab .nav-tabs .nav-item.show .nav-link,
.activity-tab .nav-tabs .nav-link.active {
    color: #fff !important;
    background-color: var(--primary);
    border-color: var(--primary);
}

.activity-tab .nav-tabs .nav-link {
    margin-bottom: -1px;
    background: 0 0;
    border: 1px solid #00000030;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    margin: 0 7px;
    padding: 12px 25px 11px;
    font-size: 18px;
    color: var(--dark);
    font-weight: 500;
}

.activity-tab .nav-tabs {
    border-bottom: 3px solid var(--primary);
    padding: 0 20px;
}

.activity-tab .tab-content {
    padding: 25px;
}

.lite-bg {
    background: #f4f4f4;
}

.dark-bg {
    background: #eaeaea;
}

.catagory span a {
    margin-top: 0;
}

.powerd .site-login a {
    font-size: 16px;
    padding: 10px 15px;
    font-weight: 400;
}


/* Activity */

.accordion.actvty-accrdn .accordion-button::after {
    width: 17px;
    height: 17px;
    background: url('../img/icon/arrow.svg') no-repeat;
    margin-top: 10px;
}

.accordion.actvty-accrdn .accordion-button:not(.collapsed)::after {
    background: url('../img/icon/arrow.svg') no-repeat;
    margin-top: 0px;
}

.actvty-hd p {
    font-size: 17px;
    color: #000;
    font-weight: 600;
}

.actvty-hd {
    text-align: center;
    margin: 25px 20px 20px;
}

.actvty-hd h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.actvty-hd p {
    font-size: 17px;
    color: #000;
    font-weight: 600;
}

.form-control:focus {
    outline: 0 !important;
    border-color: initial;
    box-shadow: none;
}

.search-box.actvty-srch {
    border: 1px solid #CBCBCB;
    justify-content: space-between;
    width: 100%;
    border-radius: 8px;
    font-size: 14px;
}

.search-box.actvty-srch span {
    margin-right: 15px;
    color: #20C1AA;
    font-weight: 400;
    font-size: 1.2rem;
}

.search-box.actvty-srch input {
    font-size: 14px;
}

select.form-select.sort-select {
    border: 1px solid #CBCBCB;
    font-size: 14px;
    color: #393939;
    border-radius: 7px;
}

.accordion.actvty-accrdn {
    margin-bottom: 20px;
}

.accordion.actvty-accrdn .accordion-item {
    border: none;
    border-bottom: 1px solid #e7e7e7;
}

.accordion.actvty-accrdn .accordion-button:not(.collapsed) {
    background: none;
    box-shadow: none;
    color: #393939;
    font-size: 1rem;
    font-weight: 700;
}

.accordion.actvty-accrdn .accordion-button {
    color: #393939;
    font-size: 1rem;
    font-weight: 700;
}

.accordion.actvty-accrdn .accordion-button:focus {
    box-shadow: none;
}

.accordion-button {
    background-color: transparent;
}

.accordion-body label {
    font-size: 1rem;
}

.accordion-body input[type="checkbox"] {
    margin-right: 12px;
}

.find-box {
    padding: 15px 20px;
    background: #fff;
    box-shadow: 0px 4px 6px #00000014;
    border-radius: 10px;
}

.search-tag a {
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: #fff;
    text-align: center;
    margin-right: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    font-size: .8rem;
    margin-right: 5px;
}

.search-tag {
    background: #ededed;
    border-radius: 20px;
    font-size: .9rem;
    font-weight: 500;
    padding: 7px 12px;
}

img.cover-img.event-img {
    height: 200px;
}

/* .close-accordion {
    position: absolute;
    right: 20px;
    top: 20px;
    background: var(--primary);
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 30px;
    box-shadow: 0px 1px 4px #0000003d;
} */
.clear-btn {
    background: #ededed;
    color: var(--dark);
    font-size: .7rem;
    padding: 4px 13px;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid var(--lightgray);
}

.event-time {
    position: absolute;
    bottom: 15px;
    z-index: 999;
    right: 15px;
    background: #2d2222cf;
    border-radius: 20px;
    padding: 5px 20px;
    color: #fff;
    font-weight: 500;
}

.event-reg-sec div img {
    height: 40px;
}

footer .logo img {
    height: 50px;
}


/* Sign-in */

.sign-in {
    height: 100%;
    background-color: #F2F7FC;
    padding: 50px 0;
}

.sign-in-bg {
    background-image: url('../img/banner/sign_bg.jpg');
    padding: 50px 40px;
    border-radius: 55px;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #F2F7FC;
}

.sign-in-box {
    padding: 80px 50px;
    background-image: url('../img/banner/sign-in.png');
    border-radius: 28px;
    min-height: 600px;
    background-size: cover;
}

.navbar-brand h1 {
    color: #293241;
}

.form-label {
    margin-bottom: .2rem;
    font-weight: 500;
    font-size: .9rem;
}

.sign-in-body .form-control,
.sign-in-body .form-select {
    height: 45px;
    border-radius: 10px;
    border-color: #CBCBCB;
    background-color: #fff;
}

.sign-in-body ::placeholder {
    font-size: .8rem;
    color: var(--dark);
}

::placeholder {
    font-size: .8rem;
    color: var(--dark);
}

.sign-in-body p a {
    font-size: .8rem;
    color: var(--dark);
}

.sign-in-body input[type="checkbox"] {
    background-color: transparent !important;
    border-color: #A8A5A5 !important;
}

.sign-in-body .form-check-label {
    font-size: .75rem;
    color: #454343;
    font-weight: 500;
}

.create-link p a {
    color: #F6780F;
    font-size: 0.8rem;
}

.create-link p {
    font-size: .8rem;
}

.sign-in-body .btn-secondary:hover {
    background: transparent !important;
}

.sign-in-box .navbar-brand div img {
    height: 40px;
}

.sign-in-body select {
    background-color: transparent;
}

/* sign-in end */



/* Pre - Test */

.first-sec {
    background-color: #E5F4F8;
}

.credit-details {
    box-shadow: 0px 3px 6px #0000002F;
    border-radius: 26px;
    overflow: hidden;
}

.cred-sec h6 {
    font-size: 1.125rem;
}

.exam-sec {
    box-shadow: 0px 3px 6px #00000017;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.exam-head {
    background-color: var(--primary);
    display: flex;
    justify-content: space-between;
    padding: 10px 40px;
    align-items: center;
}

.exam-step-sec span {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #A5D9D1;
    margin: 0 10px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.5rem;
    opacity: .8;
    color: #5f9d98;
}

.step-count+span {
    width: auto;
    height: auto;
    padding: 6px 20px;
    font-size: 1.1rem;
}

.exam-step-sec {
    display: flex;
    align-items: center;
}

.exam-step-sec .active-step {
    opacity: 1;
    background-color: #fff;
    color: var(--dark);
}

.examinee {
    padding: 15px 40px;
}

.examinee h6 {
    font-size: 1.125rem;
}

.question-block {
    padding: 40px;
    background-color: #E9F4F7;
    margin-bottom: 10px;
}

.question-block:last-child {
    margin-bottom: 0 !important;
}

.question-block ul li {
    padding: 7px 0px;
}

.question-block ul li:last-child {
    padding-bottom: 0 !important;
}

.question-block h6,
.question-block ul li label {
    font-size: 1rem;
}

.question-block ul li label {
    margin-left: 10px;
}

input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    width: 19px;
    height: 19px;
    position: relative;
    top: -2px;
    border: none !important;
    box-shadow: none !important;
}

input[type="radio"]::before {
    content: "\f00c";
    background-color: var(--primary);
    position: absolute;
    z-index: 9;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    text-align: center;
    font-size: .7rem;
    padding-top: 0px;
    color: #fff;
    display: none;
    padding-top: .67px;
}

input[type="radio"]::after {
    content: "";
    width: 19px;
    height: 19px;
    border: 1px solid var(--primary);
    position: absolute;
    border-radius: 20px;
}

input[type="radio"]:checked:before {
    display: block;
    background-color: var(--primary);
}

.exam-step-box {
    display: flex;
    align-items: center;
}

span.complete-step {
    background-color: #089985;
    opacity: 1;
    color: var(--dark);
}

.full-video {
    min-height: 590px;
}

.question-block h6 span {
    width: 29px;
    display: inline-block;
}

/* Pre - Test end */


.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cred-sec p {
    margin-bottom: 0;
}

.logos img {
    height: 30px;
}


/* exam modal */

.exam-modal {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fffc;
    height: 100%;
    width: 100%;
    z-index: 99;
}

.exam-modal-body {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exam-modal-box {
    box-shadow: 0px 3px 6px #0000002F;
    border-radius: 26px;
    background-color: #ffff;
    padding: 50px;
    text-align: center;
    width: 80%;
    position: relative;
}

.exam-modal-box img {
    margin-bottom: 20px;
}

.exam-modal-box h5 {
    font-size: 1.3rem;
    font-weight: 600;
}

.exam-modal-box h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.exam-modal-box.exam-pass::before {
    content: "";
    width: 105%;
    height: 110%;
    position: absolute;
    top: -20px;
    left: -20px;
    background-image: url('../img/banner/success.png');
    background-size: contain;
}

.exam-modal-box a {
    position: relative;
    z-index: 9999;
}

/* exam modal end */


/* Evaluation table */

.icheckbox {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid #aaa;
    float: right;
}

.icheckbox.checked {
    background: #ccc;
}

@media (min-width: 480px) {
    .icheckbox {
        float: none;
    }
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.responsive-table-input-matrix {
    width: 100%;
}

@media (min-width: 991px) {
    .responsive-table-input-matrix .responsive-table-input-matrix {
        width: auto;
    }
}

.responsive-table-input-matrix tr {
    border: none;
    display: block;
    margin-bottom: 1.8rem;
}

.responsive-table-input-matrix tr:first-of-type {
    display: none;
}

.responsive-table-input-matrix tr td {
    text-align: left;
}

@media (min-width: 991px) {
    .responsive-table-input-matrix tr:first-of-type {
        display: table-row;
    }

    .responsive-table-input-matrix tr td {
        text-align: center;
    }

    .responsive-table-input-matrix tr {
        display: table-row;
    }
}

.responsive-table-input-matrix tr td:first-of-type {
    text-align: left;
    color: var(--dark);
    margin-top: 0;
    font-weight: 500;
}

.responsive-table-input-matrix tr td:first-of-type:before {
    width: 0;
}

.responsive-table-input-matrix th {
    display: none;
}

.responsive-table-input-matrix td {
    display: block;
    vertical-align: middle;
    text-align: right;
}

.responsive-table-input-matrix td:last-child {
    padding-bottom: .5em;
}

.responsive-table-input-matrix td:before {
    content: attr(data-th);
    font-size: inherit;
    font-weight: 600;
    color: #757575;
    width: 12em;
    display: inline-block;
}

.responsive-table-input-matrix td input[type=checkbox] {
    float: right;
}

@media (min-width: 991px) {
    .responsive-table-input-matrix td:before {
        display: none;
    }

    .responsive-table-input-matrix td input[type=checkbox] {
        float: none;
    }
}

.responsive-table-input-matrix th:first-of-type {
    text-align: left;
}

.responsive-table-input-matrix th,
.responsive-table-input-matrix td {
    text-align: center;
}

@media (min-width: 991px) {

    .responsive-table-input-matrix th,
    .responsive-table-input-matrix td {
        display: table-cell;
        padding: .25em .5em;
    }

    .responsive-table-input-matrix th:first-child,
    .responsive-table-input-matrix td:first-child {
        padding-left: 0;
    }

    .responsive-table-input-matrix th:last-child,
    .responsive-table-input-matrix td:last-child {
        padding-right: 0;
    }
}


.responsive-table {
    color: #393939;
    border-spacing: 0;
}

.responsive-table th,
.responsive-table td {
    margin: .5em 1em;
}

.shadow-z-1 {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}


@media (min-width: 991px) {
    .responsive-table td {
        padding: 1em .8rem !important;
    }

    .responsive-table th {
        padding: 0 .8rem 1em !important;
    }
}

.responsive-table th {
    font-weight: 500;
    color: var(--dark);
    font-size: 1rem;
    vertical-align: top;
}

.table-qstn {
    display: flex;
}

.table-qstn input[type="radio"] {
    top: 5px;
}

/* Evaluation table end */



/* evaluation page */

.answer-box {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--primary);
    background: transparent;
}

/* evaluation page */


/* FE Dashboard */

.user-profile {
    background-image: url('../img/banner/profile-bg.jpg');
    background-repeat: no-repeat;
    background-position-y: 100%;
}

.profile-wrap {
    background-color: #fff;
    border-radius: 38px;
    position: relative;
    overflow: hidden;
    min-height: 800px;
}

.sidebar {
    background-image: linear-gradient(195deg, #FFFFFF 0%, #F4F4F4 100%);
    width: 300px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow-y: auto;
    transition: 0.6s ease;
    z-index: 9;
    box-shadow: 0px 3px 6px #00000017;
}

.main-wrap {
    width: calc(100% - 300px);
    margin-left: 300px;
    position: relative;
    padding: 3rem;
}

.profile-pic {
    width: 160px;
    height: 160px;
    overflow: hidden;
    margin: 0 auto;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-box h5 {
    font-size: 1.125rem;
    font-weight: 600;
}

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

.sidebar .nav-link {
    padding: .9rem 2rem;
    color: var(--dark);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.sidebar .nav-link.active,
.sidebar .nav-link:hover {
    background-color: #F0F0F0;
    color: var(--dark) !important;
}

.nav-img img {
    height: 30px;
}

.nav-img {
    width: 40px;
    text-align: center;
    margin-right: 10px;
}

.fe-table .card,
.card.profile-card {
    box-shadow: none;
}

.card.profile-card.one {
    border-color: #FF9F1C;
}

.card.profile-card.two {
    border-color: #F46577;
}

.card.profile-card.three {
    border-color: #76b3e8;
}

.card.profile-card.four {
    border-color: #159b8b;
}

.card.profile-card {
    border: 1px solid;
    height: 100%;
}

.card-icon {
    position: absolute;
    right: 0;
    top: 0;
    height: 90px;
    width: 75px;
    border-radius: 0 0 0 140px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px 18px;
}

.card-icon img {
    height: 30px;
}

.card.profile-card.one .card-icon {
    background-color: #ff9f1c;
}

.card.profile-card.two .card-icon {
    background-color: #F46577;
}

.card.profile-card.three .card-icon {
    background-color: #76B3E8;
}

.card.profile-card.four .card-icon {
    background-color: #159B8B;
}

.card.profile-card .card-body h1 {
    font-size: 2.6rem;
    margin-top: 5px;
}

.card.profile-card .card-body {
    padding: 1.5rem;
}

.fe-table .card-header p {
    margin: 0;
    color: var(--dark);
}

.table-list .table-img {
    height: 60px;
    width: 90px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 10px;
    min-width: 90px;
}

.table-list {
    display: flex;
    align-items: center;
}

.table-list-box a {
    font-size: .65rem;
}

.table-list-box {
    margin-bottom: 15px;
}

.table-box:last-child .table-list-box {
    margin-bottom: 0;
}

.remove-btn i {
    font-size: 15px;
}

.remove-btn {
    padding: 0;
    height: 34px;
    width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

.badge {
    background-color: var(--primary);
    position: absolute;
    top: 20px;
    right: 10px;
}

.nav-item {
    position: relative;
}

.sign-in-body a.btn {
    font-size: .86rem;
}

/* FE Dashboard end */

.navbar-light .menu .nav-link {
    margin-bottom: 0;
}

/* myevents */

.schedule-box {
    display: flex;
    padding: 5px;
    background: #FFFFFF;
    border: 1px solid #CEDFF3;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 15px;
    margin-right: 10px;
}

.event-catg {
    background: #FADEDC;
    border: 1px solid #F3DFD6;
    border-radius: 4px;
    color: #F15D22;
    font-size: 16px;
    padding: 6px 15px;
    font-weight: 500;
    margin-left: 5px;
}

/* .event-time {
    display: flex;
    margin: 0 7px;
    padding: 8px 0;
} */

.event-dtls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.event-date {
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #000;
}

.event-time div:last-child i {
    color: #E54220;
}

.event-time i {
    margin-right: 3px;
}

.reg-btn {
    padding: 12px 40px;
    background-color: #E65346;
    color: #fff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 15px;
    display: inline-block;
}

a.reg-btn:hover {
    color: #fff !important;
    background: #EE6F64;
}

.live-events p {
    font-size: 16px;
}

.authr-sec h5 {
    font-size: 18px;
    font-weight: 500;
}

.agenda-box {
    background-color: #ecf4fe;
    padding: 25px 30px;
}
.events-points h1 {
	font-size: 25px;
	font-weight: 600;
    margin-bottom: 1.25rem;
}
.events-head ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.agenda-time i {
    color: #e65346;
    margin-right: 5px;
}

.agenda-items {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #C3CCD5;
}

.agenda-box {
    background-color: #ecf4fe;
    padding: 30px;
}

.agenda-time {
    width: 200px;
    min-width: 200px;
}

.agenda-box .agenda-items:last-child {
    border: none;
    padding-bottom: 0;
}

.agenda-box .agenda-items:first-child {
    padding-top: 0;
}

.agenda-items p {
    margin-bottom: 0px;
}

.events-items {
    list-style: none;
    padding: 10px 30px;
    border-bottom: 3px solid transparent;
    color: #333333;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
}
.events-head {
    border-bottom: 1px solid #E8E8E8;
}
.events-head li {
    list-style: none;
}

.events-items a {
    color: #333333;
    font-weight: 500;
    font-size: 18px;
}

.events-items.active {
    border-bottom: 5px solid #20C1AA;
    color: #20C1AA;
}

.events-items.active a {
    color: #20C1AA;
}

.cme-points,
.ack-sec {
    padding: 50px 0 0 0;
}

.actvt-rt.live-events p {
    font-size: 16px;
}

.cme-items {
    padding: 20px;
    background-color: #F7F7F7;
    margin-bottom: 7px;
    border-radius: 15px;
}

.cme-items p {
    margin-bottom: 0;
    color: #393939;
    font-weight: 600;
}

.events-points h5 {
	font-weight: 700;
	margin-bottom: 12px;
	font-size: 18px;
}

.cme-items li {
    line-height: 30px;
}

.cme-items ul {
    padding-left: 15px;
    margin-bottom: 0;
}
.cme-items ul li {
	list-style: decimal;
	font-size: .875rem;
	font-weight: 600;
	color: #393939;
}
.acrd-points {
    padding: 50px 0 0 0;
}

.acrd-items h6 {
	font-size: 18px;
	font-weight: 600;
}
.acrd-items {
    padding: 20px 0;
    border-bottom: 1px dashed #C1CCDB;
}

.acrd-sec p {
    margin-bottom: 0;
}

.acrd-points .container .acrd-items:nth-child(2) {
    padding-top: 0;
}

.acrd-points .container .acrd-items:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.acrd-sec p span {
    color: #333333;
    font-weight: 500;
    margin: 10px 0;
    display: inline-block;
}

.acrd-img {
    width: 120px;
    height: 120px;
    min-width: 120px;
    margin-right: 15px;
}

.acrd-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.acrd-sec {
    display: flex;
}

.ack-content {
    /* border: 1px solid #92BAD2; */
    box-sizing: border-box;
    border-radius: 16px;
    /* padding: 25px; */
    height: 100%;
}

.ack-contact-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ECF4FE;
    padding: 20px 30px;
    border-radius: 16px;
}

.ack-content.ack-contact p {
    color: #464877;
}

.ack-content.ack-contact p a {
    color: #333333;
    font-weight: 500;
}

.reg-btn.blue-btn {
    background-color: #333333;
}

.reg-btn.blue-btn:hover {
    background-color: #383B75;
}

.ack-contact-sec h6 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333333;
}
.events-items:hover {
    color: #20C1AA;
}

.events-head.fix {
    position: fixed;
    width: 100%;
    top: 70px;
    left: 0;
    background-color: #fff;
    box-shadow: 1px 1px 10px #0000001a;
    z-index: 999;
}

.events-head.fix ul {
    margin-bottom: 0;
}

.evnt-regd button {
    padding: 10px 20px;
    font-size: 14px;
}


.ack-content.box-2 p {
    margin-bottom: 5px;
}

.ack-content.box-2 img {
    height: 35px;
}

.actvt-cover {
    border-radius: 16px;
    overflow: hidden;
}

.actvt-cover img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.faculty-items .authr-sec img {
    width: 45px;
    height: 45px;
}

.actvt-cover {
    max-height: 480px;
}

.actvt-rt.live-events h3 {
    width: 85%;
}

.signin-block.registration p {
    font-size: 14px;
}

.model-btn {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.model-btn button {
    font-size: 14px;
    padding: 10px 40px;
}

.modal-body.success-sec {
    background-color: #ECF4FE;
    text-align: center;
    padding: 40px 80px;
}

.modal-body.success-sec .close {
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 99;
}

.modal-content {
    border-radius: 1rem !important;
}

.modal-body.success-sec h4 {
    font-size: 22px;
    font-weight: 600;
    color: #333333;
}

.agenda-items p span {
    font-weight: 500;
    color: #212529;
}

.agenda-items div:last-child p {
    color: gray;
}

.ack-contact-sec h5 {
    font-size: 20px;
    font-weight: 500;
}

.agenda-items-lst {
	padding: 20px;
	margin-bottom: 7px;
	border: 1px solid #D9D8D8;
	border-radius: 15px;
}
.agenda, .faculty, .location-sec {
    padding-top: 50px;
}
.agenda-items-lst ul {
    padding-left: 15px;
    margin-bottom: 0;
}
.agenda-items-lst ul li {
	font-size: 15px;
	font-weight: 600;
    color: #393939;
}
.agenda-items-lst ul li::before {
	content: "\2022";
	color: #D3D3D3;
	font-weight: bold;
	display: inline-block;
	width: 1em;
	margin-left: 0em;
	font-size: 25px;
}
.my-events-sec h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}
.agenda, .cme-points, .acrd-points, .ack-sec, .location-sec, .faculty {
    scroll-margin-top: 50px;
}
a.event-share-btn {
    background: #EFEFEF;
    font-weight: 500;
    color: #393939;
    font-size: 13px;
    padding: 5px 15px;
    border-radius: 30px;
    display: inline-block;
}
a.event-share-btn span {
    color: #20C1AA;
    margin-left: 2px;
    font-size: 16px;
    font-weight: 400;
}
.evnts-bannr-sub {
    border-radius: 10px;
    background: #F7F7F7;
    padding: 15px 20px;
}
.evnts-bannr-sub h6 {
    margin-bottom: 5px;
}
.evnts-bannr-sub p {
    color: #393939;
    margin-bottom: 0px;
    font-weight: 600;
}
a.rounded-pill.green-out-btn {
    border: 1px solid #20C1AA;
    color: #20C1AA;
    font-weight: 600;
}
.event-dtls-sec {
	background: #f7f7f7;
	padding: 30px;
	border-radius: 10px;
    margin-bottom: 50px;
}
.ask-btn img {
    height: 17px;
    position: relative;
    top: -1px;
}

.canl-btn p a {
    font-weight: 700;
    color: var(--dark);
}

.agenda-items-lst.no-list ul li::before {
    display: none;
}
.agenda-items-lst.no-list li {
    padding-bottom: 15px;
    display: flex;
}
.agenda-items-lst.no-list li span {
    min-width: 180px;
}

.agenda-items-lst.no-list li:last-child {
    padding-bottom: 0;
}

.date-dtl {
	text-align: center;
	font-size: 12px;
	background: rgb(255,255,255);
	background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(239,239,239,1) 100%);
	height: 100%;
	padding: 10px 0;
	border-right: 1px solid #F6780F;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.event-dtls-lst {
	background: #fff;
	border-radius: 10px;
	margin-bottom: 10px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.date-dtl p {
	margin-bottom: 0;
	color: #393939;
	font-size: 14px;
    line-height: 10px;
}
.date-dtl span {
	font-size: 32px;
	font-weight: bold;
	color: #F6780F;
}
.event-lst {
    align-items: center;
}
.event-lst p{
    margin-bottom: 0;
    font-weight: 600;
}
span.cme-tag {
    border: 1px solid #F89206;
    padding: 5px 10px;
    color: #F89206;
    border-radius: 30px;
    margin-right: 10px;
    font-size: 13px;
    font-weight: 600;
}

span.paid-actvty {
    border: 1px solid #20C1AA;
    color: #20C1AA;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}
a.btn.rounded-pill.green-out-btn.event-dtls-btn {
    background: #20C1AA;
    color: #fff;
}
a.btn.rounded-pill.green-out-btn.event-dtls-btn:hover {
    color: #20C1AA;
    background: #fff;
}
.events-head ul {
    margin-bottom: 0;
}

.acrd-dtls {
	padding: 50px;
	background: #f7f7f7;
	border-radius: 15px;
}
.acrd-dtls p {
	color: #393939;
	font-weight: 500;
	font-size: .875rem;
}
.event-cntct-info {
	border-top: 1px solid #C7C7C7;
	border-bottom: 1px solid #C7C7C7;
	margin: 50px 0;
}
.event-cntct-info h2 {
	font-size: 1.375rem;
	color: #393939;
	font-weight: 500;
	margin-bottom: 1.25rem;
}
.event-cntct-info p{
    font-size: 0.938rem;
    color: #393939;
    font-weight: 600;
}
.provd-dtl {
	padding: 1.875rem 0;
}
.event-cntct-info h2 {
	font-size: 1.375rem;
	color: #393939;
	font-weight: 500;
	margin-bottom: 1.25rem;
}
.provd-dtl img {
	width: 80px;
}
img.es-logo {
	width: auto;
}
.cntct-dtl {
	background: #F4FAFC;
	width: 100%;
	height: 100%;
	padding: 1.875rem;
	display: flex;
	align-items: center;
}
.btn.faq-btn {
	border: 1px solid #20C1AA;
	color: #20C1AA;
	font-weight: 600;
	border-radius: 1.875rem;
	margin-top: 1.25rem;
}
.nav-link.slct-dt{
    width: 200px;
}
.event-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.event-lst-sec {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.event-lst-sec-one {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.event-lst-sec-two {
    display: flex;
    align-items: center;
}
p.evnt-user {
    background: #E5F4F8;
    padding: 5px 10px;
    border-radius: 5px;
    color: #333333;
    font-size: 0.875rem;
}
p.evnt-location {
    font-weight: 500;
}
.et-sec-tltp {
    opacity: 0;
    padding: 15px;
    border-radius: 10px;
    position: absolute;
    z-index: 999;
    display: none;
    top: 25px;
    width: 270px;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.et-sec {
    display: flex;
    align-items: center;
    position: relative;
}
.et-sec-tltp h6 {
    color: #393939;
    font-weight: 600;
}
.et-sec-tltp p {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 500;
}
.et-sec:hover .et-sec-tltp {
    opacity: 1;
    display: block;
}
.evnts-location {
    padding: 30px;
    border: 1px solid #D1D1D1;
    border-radius: 10px;
}
.evnts-location h6 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
.evnts-location p {
    margin-bottom: 0;
}
.my-events-sec.live-event-sec .evnts-bannr-sub {
    padding: 30px;
}
.events-points.live-events-points .agenda-items-lst ul {
    padding-left: 0;
}
.events-points.live-events-points .agenda-items-lst ul li::before {
    opacity: 0;
}
.location-sec .agenda-items-lst {
    height: 100%;
}
.location-sec .agenda-items-lst div h5 {
    margin-bottom: 0;
}
.live-events-faculty {
    background: #F7F7F7;
    padding: 20px;
    margin-bottom: 50px;
    border-radius: 15px;
}
.live-events-faculty h5 {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
    margin-left: 20px;
}
.activity-cover.live-event-cover {
    position: relative;
}
.live-events-banner-tags {
    position: absolute;
    z-index: 99;
    bottom: 10px;
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 0 5px;
}
.free-rgstr-tags{
    background: #F6780F;
    border-radius: 10px ;
    text-align: center;
}
p.free-tag {
    color: #333333;
    background: #fff;
    font-size: 11px;
    padding: 3px 0;
    border-radius: 20px;
    margin-bottom: -2px;
}
p.rgstr-tag {
    color: #fff;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 17px;
    margin-bottom: -7px;
    padding-bottom: 10px;
}
p.cme-tg {
    background: #fff;
    color: #F89206;
    border: 1px solid #F89206;
    padding: 1px 10px;
    margin-bottom: 0;
    border-radius: 20px;
}
.deact-btn {
    line-height: 1.3;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #A9A9A9;
    border-radius: 20px;
    margin-bottom: 0;
}
a.btn.ask-btn {
    background: #FF9F1C;
    padding: 10px 15px;
    color: #fff;
    border-radius: 18px;
    margin-left: 5px;
}
a.btn.ask-btn.green-btn {
    background: #3fbeb3;
}
.evnt-alrdy-rgstrd {
    display: flex;
    align-items: center;
    margin: 10px 0;
}
.agenda-items-lst ul li span{
    font-weight: 700;
}
.event-lst h6 {
    font-size: 17px;
    margin-bottom: 0;
    color: #393939;
    font-weight: 600;
}
/* myevents */





/******************* Responsive ******************/
@media(max-width:1720px) {
    .recent-card a.btn {
        height: auto;
        display: inline-block;
        margin-top: 10px;
        padding: 13px 20px !important;
    }

    .logos {
        margin-bottom: 5px;
    }
}

@media(max-width:1500px) {
    .catagory .inner-sec {
        padding: 7px 15px;
    }

    .download-btn {
        bottom: 30px;
    }

    .download-btn img {
        height: 30px;
    }

    .activity-tab .nav-tabs .nav-link {
        padding: 13px 19px 10px;
        font-size: 16px;
    }
}

@media(min-width:1400px) {
    .container {
        max-width: 1400px;
    }
}

@media(max-width:1400px) {
    .event .card-image {
        min-width: 190px;
    }

    .recent-card {
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
    }

    .recent-card a {
        margin-top: 10px;
    }

    .download-link a img {
        height: 30px;
    }

    .qr-img {
        height: 90px;
    }

    .download-content {
        flex-direction: column-reverse;
    }

    .banner {
        height: 250px;
    }

    .sidebar {
        width: 270px;
    }

    .main-wrap {
        width: calc(100% - 270px);
        margin-left: 270px;
    }

    .main-wrap {
        width: calc(100% - 270px);
        margin-left: 270px;
        padding: 3rem 2rem;
    }
}

@media(max-width:1330px) {
    .event .card-image {
        min-width: 170px;
        height: 100%;
    }

    .support-content h2 {
        font-size: 2.75rem;
    }

    .support-content h1 {
        font-size: 1.8rem;
    }

    .download-btn img {
        height: 25px;
    }

    .download-btn {
        bottom: 20px;
    }

    .activity-tab .nav-tabs .nav-link {
        padding: 10px 15px 10px;
        font-size: 14px;
    }
}

@media(min-width:1400px) {
    .col-xl-2-5 {
        width: 20%;
    }
}

@media(min-width:1200px) {

    /* .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: calc(100% - 66px);
    } */

    .right-wrap {
        border-left: 1px solid #CEC7C7;
    }
}

@media(max-width:1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: calc(100% - 66px);
    }

    .play-btn span {
        height: 80px;
        width: 80px;
        font-size: 30px;
    }

    h1 {
        font-size: 2.525rem;
    }

    h6 {
        font-size: 1.1rem;
    }

    .card-image {
        min-width: 150px;
        height: 100%;
    }

    .download-btn {
        bottom: 30px;
    }

    .download-btn img {
        height: 30px;
    }

    .download-btn {
        bottom: 40px;
    }

    .activity-cover+.catagory {
        width: auto;
    }

    .social-media {
        float: right;
    }

    .right-block {
        border-top: 1px solid #cec7c7;
    }

    .catagory .inner-sec {
        padding: 7px 8px;
    }

    .filter-options .nav-link {
        font-size: .838rem;
    }

    .responsive-table th,
    .responsive-table-input-matrix tr td {
        font-size: .9rem;
    }

    /* FE Dashboard */

    .sidebar .navbar {
        display: none;
        position: absolute;
        top: 60px;
        background-color: #fff;
        width: 300px;
        left: 10px;
        box-shadow: 2px 11px 23px #00000030;
        border-radius: 20px;
        padding: 0;
    }

    .sidebar {
        width: 100%;
        height: 60px;
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        padding: 0 35px;
        align-items: center;
        overflow-y: initial;
    }

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

    .profile-pic {
        width: 40px;
        height: 40px;
        overflow: hidden;
        margin: initial !important;
    }

    .profile-box h5 {
        font-size: .8rem;
        font-weight: 600;
        margin-bottom: 0;
        margin-left: 5px;
    }

    .star img {
        height: 25px;
    }

    .points span {
        font-size: .8rem;
    }

    .profile-nav {
        height: 30px;
        width: 40px;
        background: transparent;
        border: navajowhite;
        font-size: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark);
    }

    .main-wrap {
        width: 100%;
        margin-left: 0;
        padding: 2rem;
        margin-top: 60px;
    }

    .card-icon img {
        height: 25px;
    }

    .card-icon {
        height: 80px;
        width: 65px;
    }

    .profile-wrap {
        border-radius: 25px;
        min-height: auto;
    }

    /* FE Dashboard end */

    /* Events */
    .ack-contact-sec a.reg-btn {
        display: inline-block;
    }

    .ack-contact-sec {
        display: block;
    }
    .evnt-alrdy-rgstrd{display: block;}
    /* Events */
}

@media(max-width:992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: calc(100% - 66px);
    }

    .demand .card-image {
        max-height: 200px;
        min-height: 200px;
        height: 200px;
    }

    .support-cover {
        height: 350px;
    }

    .card.big-card,
    .event-video {
        min-height: 450px;
    }

    .card.big-card .card-body {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
    }

    .recent-card a {
        margin-top: 0;
    }

    .carousel-item::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: #ffffffb3;
    }

    .carousel-item img {
        object-position: left;
    }

    .navbar-collapse {
        position: absolute;
        right: 0px;
        top: 65px;
        text-align: center;
        background: var(--lightprimary);
        width: 300px;
        z-index: 99;
        box-shadow: 0px 10px 10px #0003;
        border-radius: 10px;
        overflow: hidden;
        min-height: 140px;
        padding: 10px;
    }

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

    .nav-link.active,
    .nav-link:hover {
        background: #fff;
        color: var(--primary) !important;
        border-radius: 6px;
        box-shadow: 0px 2px 2px #e1e0e0;
    }

    .demand .card {
        height: 100%;
    }

    /* .accordion.actvty-accrdn {
        position: fixed;
        width: 300px;
        top: 0;
        height: 100%;
        left: 0;
        background: #fff;
        z-index: 99;
        overflow: auto;
        margin-top: 60px;
        padding: 50px 0;
    } */
    .sign-in-bg {
        padding: 50px 0;
    }

    .sign-up-bg {
        padding: 50px 30px;
    }

    .banner {
        background-position-x: 20%;
    }

    .exam-head {
        display: block;
        padding: 10px 30px;
    }

    .exam-step-sec span {
        height: 35px;
        width: 35px;
        margin: 0 5px;
    }

    .exam-step-sec {
        padding-top: 10px;
        margin-top: 10px;
        border-top: 2px solid #6fcec6;
    }

    .step-count+span {
        width: auto !important;
        height: auto !important;
        padding: 5px 20px;
        font-size: .9rem;
    }

    .question-block {
        padding: 30px;
    }

    .examinee {
        padding: 15px 30px;
    }

    .full-video {
        min-height: 500px;
    }

    #pills-home {
        top: 58px;
    }

    #pills-profile {
        top: 58px;
    }

    .filter-border {
        border-top: 1px solid #CEC7C7;
    }

    .border-hide-md {
        border: none !important;
    }

    .exam-modal-box.exam-pass::before {
        background-size: cover;
    }

    .profile-card h4 {
        font-size: 1rem;
    }

    .card.profile-card .card-body h1 {
        font-size: 2rem;
    }

    .card-icon {
        height: 70px;
        width: 55px;
        padding: 18px 13px;
    }

    .card-icon img {
        height: 20px;
    }

    .fe-table p {
        font-size: .75rem;
    }

    .table-list .table-img {
        height: 60px;
        width: 70px;
        min-width: 70px;
    }

    .sidebar .nav-link {
        font-size: .9rem;
    }

    .nav-img img {
        height: 20px;
    }

    .navbar-light .menu .nav-link {
        margin-bottom: 5px;
    }

    /* Events */
    .actvt-cover {
        max-height: 350px;
    }

    .modal-body.success-sec {
        padding: 20px;
    }

    .events-items {
        padding: 10px 20px;
        font-size: 17px;
    }
    a.btn.rounded-pill.green-out-btn.event-dtls-btn {
        font-size: 13px;
        padding: 8px 15px;
    }
    .event-lst p {
        font-size: 13px;
    }
    span.cme-tag, span.paid-actvty {
        font-size: 12px;
    }
    .event-lst-sec {
        display: block;
    }
    .deact-btn {
        font-size: 14px;
    }
    .my-events-sec h3 {
        font-size: 25px;
    }
    /* Events */
}

@media(max-width:767px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 100%;
    }

    .play-btn {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .play-btn span {
        height: 60px;
        width: 60px;
        font-size: 20px;
        margin: 20px;
    }

    .mobile img {
        height: 240px;
    }

    .recent-card {
        flex-direction: column;
    }

    .recent-card a {
        margin-top: 10px;
    }

    .support-content h1 {
        font-size: 1.3rem;
    }

    .support-content h2,
    h1 {
        font-size: 2rem;
    }

    .download-content h5 {
        font-size: 1rem;
    }

    h5 {
        font-size: 1.2rem;
    }

    .site-nav {
        padding-left: 0px;
    }

    .banner-content {
        width: calc(100% - 110px);
    }

    .catagory .inner-sec {
        padding: 7px 4px;
    }

    .download-btn img {
        height: 40px;
    }

    .activity-tab .nav-tabs .nav-link {
        border-radius: .5rem !important;
        margin-bottom: 12px;
    }

    .exam-step-sec {
        display: block;
        padding-top: 10px;
    }

    .full-video {
        min-height: 400px;
    }

    .card.big-card,
    .event-video {
        min-height: 400px;
    }

    .full-video .play-btn span {
        margin: auto;
    }

    .exam-modal-box {
        padding: 50px 30px;
    }

    .exam-modal-box h2 {
        font-size: 1.7rem;
    }

    /* FE Dashboard */

    .user-profile {
        background-position-y: 0;
    }

    .fe-table .card-header {
        display: none;
    }

    .table-list {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    .fe-table p {
        font-size: 1rem;
    }

    .table-list-box {
        margin-bottom: 12px;
        border-bottom: 1px solid #cec7c7;
        height: 100%;
        padding: 10px;
    }

    .table-list-box span {
        font-weight: 600;
    }

    .row.table-list-box .col-md-6:first-child span {
        display: inline-block;
        margin-bottom: 7px;
    }

    .table-box {
        border-right: 1px solid #cec7c7;
    }

    /* FE Dashboard end */

    /* Events */

    .events-items {
        padding: 10px 15px;
    }

    .events-items {
        font-size: 16px;
    }

    .events-points h1 {
        font-size: 20px !important;
    }

    .acrd-img {
        width: 80px;
        height: 80px;
        min-width: 80px;
        margin-bottom: 10px;
    }
    .date-dtl {
        display: flex;
        align-items: baseline;
        justify-content: center;
        border-right: none;
        border-bottom: 1px solid #F6780F;
        border-radius: 0 !important;
    }
    .date-dtl p {
        margin: 0 5px;
        font-size: 14px;
    }
    .event-lst {
        margin: 10px 0;
    }
    .event-lst-sec {
        display: block;
        margin-bottom: 10px;
    }
    .live-events-faculty h5 {
        margin-left: 0;
    }
    /* Events */

    .agenda-items-lst.no-list li {
        flex-direction: column;
    }
    .date-dtl-in {
        display: flex;
        align-items: center;
    }

}

@media(max-width:575px) {
    .mobile {
        margin-bottom: 30px;
    }

    .event .card-image {
        min-width: 100%;
        height: 200px;
    }

    .recent .nav-tabs .nav-link {
        font-size: 1.4rem;
    }

    .site-item {
        height: 24px;
        padding: 1px 7px 12px;
    }

    .site-nav {
        margin-top: 8px;
    }

    .recent-card a {
        margin-top: 0px;
    }

    h5 {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .support-content {
        padding: 20px;
    }

    .logo img {
        height: 50px;
    }

    .card.big-card .card-body .date {
        font-size: .87rem;
    }

    .tag-name {
        font-size: 20px;
        margin-left: 10px;
    }

    footer p {
        font-size: 11px;
    }

    .footer-link li {
        font-size: .87rem;
    }

    .catagory .inner-sec {
        padding: 7px 9px;
    }

    .social-media {
        float: initial;
    }

    .activity-area h3 {
        font-size: 1.5rem;
    }

    .navbar-brand div img {
        height: 26px;
    }

    .sign-in-box {
        padding: 50px 30px;
        min-height: auto;
    }

    .form-label {
        font-size: .8rem;
    }

    .navbar-brand {
        height: 40px;
    }

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

    .step-count+span {
        margin: 15px 0px 0 !important;
    }

    .card.big-card,
    .event-video,
    .full-video {
        min-height: 300px;
    }

    #pills-profile {
        top: 116px;
    }

    #pills-contact {
        top: 175px;
    }

    .activity-area h3 {
        font-size: 1.2rem;
    }

    .exam-modal-box {
        width: 90%;
    }

    .exam-modal-box img {
        height: 70px;
    }

    .exam-modal-box h5 {
        font-size: 1rem;
    }

    .exam-modal-box h2 {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }

    .sign-up-bg {
        padding: 0px 10px;
    }

    .fe-table p {
        font-size: .9rem;
    }

    .profile-nav {
        font-size: 1.5rem;
    }

    .card-body .table-list-box:last-child {
        border: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .table-box {
        border-bottom: 1px solid #cec7c7;
    }

    .card-icon {
        height: 110px;
        width: 85px;
        padding: 28px 23px;
    }

    .card-icon img {
        height: 30px;
    }

    /* FE Dashboard */
    .profile-nav {
        font-size: 1.5rem;
    }

    .nav-img img {
        height: 24px;
    }

    .sidebar .navbar {
        width: 275px;
    }

    .sidebar .nav-link {
        padding: .9rem 1rem;
    }

    /* FE Dashboard end */

    /* Events */

    .agenda-time {
        width: 100%;
        min-width: 100%;
        margin-bottom: 6px;
    }

    .agenda-items {
        align-items: flex-start;
        flex-direction: column;
    }

    .acrd-sec {
        display: block;
    }

    .schedule-box {
        font-size: 13px;
    }

    .event-catg {
        font-size: 14px;
    }

    .reg-btn {
        font-size: 15px;
    }

    .events-items {
        font-size: 13px;
    }

    .acrd-items h6 {
        font-size: 18px;
    }

    .model-btn {
        flex-direction: column;
    }

    .model-btn button {
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding: 10px 20px;
    }
    .btn {
        padding: 8px 15px;
        font-size: .8rem;
    }
    .my-events-sec h3{
        font-size: 22px;
    }
    .acrd-dtls {
        padding: 20px;
    }
    .event-btns {
        display: block;
    }
    /* Events */
    .event-dtls-tags {
        margin-bottom: 10px;
    }
    .my-events-sec.live-event-sec .evnts-bannr-sub {
        padding: 20px;
    }
    .evnts-bannr-sub h6 {
        font-size: .9rem;
    }
    .agenda-items-lst.no-list ul {
        padding-left: 0;
    }
    .events-points h5 {
        font-size: 15px;
    }
}

@media(max-width:400px) {
    .download-btn img {
        height: 30px;
    }

    .activity-tab .tab-content {
        padding: 15px;
    }

    .activity-tab .nav-tabs {
        padding: 0 10px;
    }

    .logo-text {
        font-size: 17px;
    }

    .navbar-toggler {
        padding: .1rem .3rem;
        font-size: 1rem;
    }

    .sign-in-bg {
        padding: 0px;
    }

    .banner h1 {
        font-size: 1.7rem;
    }

    .table-qstn {
        flex-direction: column;
    }

    .responsive-table th,
    .responsive-table td {
        margin: .5em 0;
    }

    .main-wrap {
        padding: 2rem 1rem;
    }

    .sidebar {
        padding: 0 15px;
    }

    .card-icon img {
        height: 25px;
    }

    .card-icon {
        height: 90px;
        width: 65px;
        padding: 20px 18px;
    }

    /* events */

    .schedule-box {
        display: inline-block;
    }

    .event-catg {
        text-align: center;
    }

    .agenda-box,
    .ack-content {
        padding: 20px;
    }

    .ack-contact-sec {
        padding: 15px;
    }

    .ack-contact-sec a.reg-btn {
        padding: 10px 30px;
    }

    .schedule-box {
        font-size: 12px;
    }

    /* events */

    .deact-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
}

@media(max-width:375px) {
    .btn {
        padding: 8px 20px;
        font-size: .875rem;
    }

    .recent .nav-tabs .nav-link {
        font-size: 1.2rem;
    }

    .recent .nav.nav-tabs {
        justify-content: center;
    }

    .card.big-card,
    .event-video {
        min-height: 370px;
    }

    h2 {
        font-size: 1.7rem;
    }

    h6 {
        font-size: 1rem;
    }

    .recent-card {
        flex-direction: column;
    }

    .recent-card a {
        margin-top: 10px;
    }

    .navbar-collapse {
        width: 100%;
    }

    .download-btn {
        bottom: 30px;
    }

    .es-time.border {
        height: 50px;
        padding-left: 60px !important;
    }

    .powerd .site-login a {
        font-size: 15px;
    }

    .sign-in-box {
        padding: 30px 15px;
    }

    .navbar-brand {
        height: 35px;
    }

    .examinee {
        padding: 15px;
    }

    .es-time span {
        width: 50px;
    }

    .sign-in-body p a {
        font-size: .7rem;
        color: var(--dark);
    }

    .exam-modal-box {
        width: 95%;
        padding: 30px 10px;
    }

    .exam-modal-box h2 {
        font-size: 1.2rem;
    }

    .cred-sec h6 {
        font-size: 1.05rem;
    }

    p {
        font-size: .805rem;
    }

    .question-block h6,
    .question-block ul li label {
        font-size: .85rem;
    }

    .question-block {
        padding: 20px;
    }

    .sidebar .navbar {
        width: 280px;
        left: 7px;
    }
}