: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
}

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: #6A6666;
    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-color: #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;
}

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: 390px;
    position: relative;
}

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

.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;
}
.card:hover .hover-shade {
    opacity: 1;
}

.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;
}

.event .card-image {
    width: 230px;
}

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

header {
    box-shadow: 0px 3px 6px #0000000A;
    background-color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999999;
}

.navbar-brand {
    height: 40px;
}
.sign-in-header .navbar-brand {
    height: 50px;
    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;
}

.icon img {
    height: 20px;
}

/* Banner */

.banner {
    height: 300px;
    background-image: url('../img/banner/banner-2.png');
    background-size: cover;
    background-position-x: 60%;
    position: relative;
}
.carousel-item {
    height: 290px;
}

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

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

.banner-content div::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 100%;
    background: #F78E1E;
    left: -30px;
    top: 0;
    border-radius: 10px;
}
.header-height {
    margin-top: 88px;
}
/* Explore */

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

.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(--dark) !important;
}

.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.875rem;
    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;
}

/* 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: 2rem;
    line-height: 1.1;
}

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

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

.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;
}

.play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 999;
}

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

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

.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: auto;
    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: 11px 25px;
    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;
}

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

.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;
}

.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: 30px;
}

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

.powerd img {
    height: 70px;
}

.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;
}
.clear-btn {
    background: #ededed;
    color: var(--dark);
    font-size: .65rem;
    padding: 5px 13px;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid var(--lightgray);
}
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 */


.card-tag {
    position: absolute;
    z-index: 999;
    background: #2d2222cf;
    border-radius: 20px;
    padding: 5px 20px;
    color: #fff;
    font-weight: 500;
    top: 15px;
    font-size: .8rem;
}
.card-tag.cme-type {
    right: 15px;
    background: #ffffffe6;
    color: #000;
}
.card-tag.c-type {
    left: 15px;
}
.card-content-right span {
    font-size: 0.65rem;
}
.footer-logo img {
    height: 50px;
}

/* partner */

.owl-item div {
    height: 130px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 3px 6px #00000029;
    margin: 20px;
    border-radius: 20px;
    transition: .4s ease-in-out all;
}

.owl-item div:hover {
    box-shadow: 0px 0px 3px #00000029;
    transition: .4s ease-in-out all;
}

.owl-item div img {
    height: 60px;
    width: 100%;
    object-fit: contain;
}

/* partner end */

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

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

    .download-btn {
        bottom: 30px;
    }

    .download-btn img {
        height: 30px;
    }
}
@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-content {
        width: 770px;
    }
    .demand .card-image {
        max-height: 200px;
        min-height: 200px;
        height: 200px;
    }
}

@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: 30px;
    }

    .download-btn {
        bottom: 30px;
    }
}

@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;
        height: 100%;
    }
}

@media(max-width:1199px) {

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

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

    h6 {
        font-size: 1.1rem;
    }

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

    .download-btn {
        bottom: 30px;
    }

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

    .download-btn {
        bottom: 10px;
    }

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

    .social-media {
        float: right;
    }
    .right-wrap {
        border-top: 1px solid #cec7c7;
    }
    .adv-img>img {
        height: 400px;
    }
    .banner-content {
        width: 80%;
    }
}

@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;
    }

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

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

    .demand .card {
        height: 100%;
    }
    .sign-up-bg {
        padding: 50px 30px;
    }
    .programs{width: 50%;}
    #pills-profile,
    #pills-home {
        top: 58px;
    }
}

@media(max-width:768px) {

    .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: 1.7rem;
    }

    .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;
    }
    .reg-header p,
    .reg-btn-head {
        font-size: .7rem;
    }
    .activity-area .catagory span {
        font-size: .7rem;
    }
    .powerd img {
        height: 60px;
    }
    .download-btn {
        bottom: 20px;
    }

    .download-btn img {
        height: 20px;
    }
    #pills-profile {
        top: 116px;
    }
    .banner-content {
        width: calc(100% - 110px);
    }
    #pills-home {
        top: 58px;
    }
}

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

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

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

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

    .site-item {
        height: 30px;
        padding: 1px 5px 12px;
    }

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

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

    h5 {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .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;
    }
    .card-body.spnsrd-cndnt {
        height: auto !important;
        padding: 20px !important;
    }
    .qr-img {
        margin: 0 auto;
    }
    .cea-dmand {
        padding: 13px 10px 30px 10px;
    }
    .sign-up-bg {
        padding: 0px 10px;
    }
    .sign-in-box {
        padding: 50px 30px;
        min-height: auto;
    }
    .activity-area .catagory span {
        font-size: .65rem;
    }
    .programs {
        width: 100%;
    }
    .adv-2 img {
        height: 380px;
        object-fit: contain;
    }
    .banner-content h1 {
        font-size: 1.7rem;
    }
}

@media(max-width:400px) {
    .download-btn img {
        height: 30px;
    }
    .sign-in-bg {
        padding: 0px;
    }
    .site-item {
        height: 27px;
        padding: 1px 5px 12px;
    }
}

@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;
    }
    .sign-in-box {
        padding: 30px 15px;
    }
}
