:root {
    --clrpri: rgb(25 100 205);
    --clrpri75: rgb(25 100 205 / 75%);
    --clrpri50: rgb(25 100 205 / 50%);
    --clrpri20: rgb(25 100 205 / 20%);
    --clrsec: rgb(30 60 90);
    --clrsec75: rgb(30 60 90 / 75%);
    --clrsec50: rgb(30 60 90 / 50%);
    --clrsec20: rgb(30 60 90 / 20%);
    --black: #303030;
    --textclr: #555555;
    --trans30: all 0.3s ease;
    --font12: 0.75rem;
    --font13: 0.813rem;
    --font14: 0.875rem;
    --font16: 1rem;
    --font18: 1.125rem;
    --font20: 1.25rem;
    --font30: 1.875rem;
    --font32: 2rem;
    --orange: #ff6c00;
}
html {
    scroll-behavior: smooth;
}
body {
    font-size: var(--font16);
    color: var(--textclr);
    font-weight: 400;
    padding-top: 80px;
}
body,
button,
input,
select,
textarea {
    font-family: "Poppins", sans-serif;
}

a {
    color: var(--black);
    text-decoration: none !important;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}
p {
    color: var(--textclr);
    font-size: 0.95rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
}
h1,
h2 {
    font-weight: 700;
}
h3,
h4,
h5,
h6 {
    font-weight: 500;
}

ul {
    padding-left: 0px;
    list-style-type: none;
    margin: 0;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
}

@media (min-width: 1366px) {
    .cmpad {
        max-width: 1460px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (max-width: 1366px) {
    .cmpad {
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (max-width: 991px) {
    .cmpad {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (max-width: 767px) {
    .cmpad {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media (max-width: 575px) {
    html {
        font-size: 90%;
    }
}

@media (min-width: 768px) {
    ::-webkit-scrollbar {
        width: 10px;
        height: 6px;
    }
    ::-webkit-scrollbar-track {
        background-color: #eee;
    }
    ::-webkit-scrollbar-thumb {
        background-color: #3a3a3a;
    }
    ::-webkit-scrollbar-thumb:hover {
        background-color: #444;
    }

    .custscroll::-webkit-scrollbar,
    .custscroll::-webkit-scrollbar-thumb {
        border-radius: 13px;
        width: 6px;
        height: 6px;
        background-clip: padding-box;
        background: transparent;
    }
    .custscroll::-webkit-scrollbar-track {
        background: transparent;
    }
    .custscroll:hover::-webkit-scrollbar-thumb {
        background-color: #ccc;
    }
    .custscroll::-webkit-scrollbar-thumb:hover {
        background-color: #999;
    }

    .custscrollA::-webkit-scrollbar {
        border-radius: 13px;
        width: 6px;
        height: 6px;
        background-clip: padding-box;
        background: rgb(0 0 0 / 5%);
    }
    .custscrollA::-webkit-scrollbar-track {
        background: transparent;
    }
    .custscrollA::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 6px;
    }
    .custscrollA::-webkit-scrollbar-thumb:hover {
        background-color: #999;
    }
}

.btn {
    padding: 0 15px;
    min-height: 40px;
    border-radius: 0.3rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--clrpri);
    color: #fff;
}
.btn-primary:hover {
    background-color: var(--clrsec);
}

.btn-secondary {
    background-color: var(--clrsec);
    color: #fff;
}
.btn-secondary:hover {
    background-color: var(--clrpri);
}

.btn-white {
    background-color: #fff;
    color: var(--black);
}
.btn-white:hover {
    background-color: var(--clrpri);
    color: #fff;
}
.btn-outline {
    color: #333;
    border: 1px solid #999999;
}
.btn-outline:hover {
    background-color: var(--clrsec);
    color: #fff;
    border: 1px solid var(--clrsec);
}
.btn-secondary:hover img,
.btn-white:hover img,
.btn-outline:hover img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social {
    display: flex;
    flex-flow: wrap;
    gap: 5px;
}
.social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #d8e5f7;
}
.social a:hover {
    background-color: var(--black);
}
.social a img {
    width: 14px;
    max-height: 14px;
    filter: hue-rotate(215deg);
}
.social a:hover img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.morebtn {
    display: inline-flex;
    gap: 3px;
    align-items: center;
    color: var(--black);
    font-weight: 600;
    cursor: pointer;
}
.morebtn:after {
    content: "";
    display: flex;
    width: 14px;
    height: 1.5px;
    background-color: var(--clrsec);
}
.morebtn:hover:after {
    animation: moveRight 1s infinite;
}

h2.mainhead {
    font-weight: 800;
    font-size: 1.8rem;
}

.posrel {
    position: relative !important;
}

@keyframes moveRight {
    0% {
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
    }
    50% {
        transform: translateX(5px);
        -webkit-transform: translateX(5px);
    }
    100% {
        transform: translate(0px);
        -webkit-transform: translate(0px);
    }
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*PULSE*/
@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

/*---------------------------------------*/
/*::::::::::::::::HEADER:::::::::::::::::*/
/*---------------------------------------*/
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    background-color: #fff;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid #eee;
}
header .headmain {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: var(--trans30);
    position: relative;
}
header .logocol {
    flex: 1 0 auto;
    max-width: 250px;
    transition: 0.3s;
}
header.active .logocol {
    max-width: 180px;
    transition: 0.3s;
}
header.active .headmain {
    padding: 0;
}

header .logocol img {
    height: 60px;
    object-fit: contain;
    object-position: left;
}
header .menucol {
    flex: 1 0;
    padding: 0 1rem;
}
header .usercol {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
header .headmenu {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    align-items: center;
}
header .megamenu .mainli {
    color: var(--black);
    display: flex;
    font-weight: 500;
}
header .megamenu .mainli:hover {
    color: var(--clrpri);
}
header .usercol .btn {
    padding: 0 25px;
}

.flexVcenter {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mymodal .modal-content {
    border: none;
    overflow: hidden;
}
@media (min-width: 576px) {
    .mymodal .modal-dialog {
        max-width: 800px;
    }
}
.mymodal .modal-body {
    padding: 0;
}
.mymodal .cen {
    display: flex;
    align-items: flex-start;
    flex-flow: column;
    justify-content: center;
}
.mymodal .left {
    background-image: url(../img/images/login-bag1.webp);
    background-size: cover;
    background-position: center;
    min-height: 450px;
    padding: 50px;
    display: flex;
    align-items: flex-start;
    flex-flow: column;
    justify-content: flex-end;
    position: relative;
}
.mymodal .left::before {
    content: "";
    position: absolute;
    background: linear-gradient(0deg, #0000004d, #0000001c);
    inset: 0;
    width: 100%;
    height: 100%;
}
.mymodal .left h5,
.mymodal .left h2 {
    color: white;
    position: relative;
}
.mymodal .right h5 {
    font-size: 1.3rem;
    font-weight: 700;
}
.mymodal .right p {
    line-height: 20px;
}
label {
    font-size: 0.8rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.myform input,
.myform textarea,
.myform select {
    width: 100%;
    padding: 8px 13px;
    font-size: 0.85rem;
    border: 1px solid #0000001c;
    border-radius: 0.3rem;
    transition: 0.3s;
    color: #666;
}
.myform input:focus,
.myform textarea:focus,
.myform select:focus {
    border: 1px solid var(--clrpri);
    outline: none;
}
.myform input::placeholder,
.myform textarea::placeholder {
    color: #33333357;
    font-size: 0.8rem;
}
.myform input[type="checkbox"] {
    width: auto;
}

button {
    background: unset;
}
.otp-sec {
    display: flex;
    gap: 3px;
}
.otp-sec input {
    width: 50px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 8px;
}
.wrong {
    font-size: 0.85rem !important;
}

.link-color {
    color: var(--orange);
    transition: 0.3s;
    cursor: pointer;
}
.link-color:hover {
    color: var(--clrpri);
}

.com {
    font-size: 1.6rem;
    font-weight: 700;
}

.close {
    position: absolute;
    background: #1964cd;
    top: 1rem;
    right: 1.5rem;
    border-radius: 50px;
    padding: 8px;
    cursor: pointer;
        z-index: 9;
}
.close img {
    width: 10px;
}
.tick {
    width: 80px;
    margin: auto;
    margin-bottom: 20px;
}

/*---------------------------------------*/
/*::::::::::::::::SLIDER:::::::::::::::::*/
/*---------------------------------------*/

.slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
}
.slider .slideimg {
    height: calc(100vh - 80px);
    position: relative;
}
.slider .slideimg::before {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, rgb(0 0 0 / 30%), transparent);
    left: 0;
    width: 100%;
    height: 100%;
}
.slider .slideimg img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.slider .btn {
    padding: 12px 30px;
}
.slider .con {
    max-width: 500px;
}
.slider .herocont {
    position: absolute;
    top: 50%;
    z-index: 9;
    width: 100%;
    transform: translateY(-50%);
}
.slider .herocont h1 {
    color: white;
}
.slider .btn-outline {
    color: #ffffff;
    border: 1px solid #ffffff;
}
.slider .btn-outline:hover {
    background-color: var(--clrsec);
    color: #fff;
    border: 1px solid var(--clrsec);
}
.caption {
    text-transform: uppercase;
    font-size: 0.85rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 500;
}

.count-list {
    display: flex;
    flex-flow: wrap;
    gap: 13px;
}
.count-list li {
    flex: 1 0 25%;
    max-width: 25%;
}
.count-list p {
    margin-bottom: 0;
    font-size: 0.85rem;
    line-height: 20px;
    color: white;
}
.count-list li img {
    width: 23px;
    filter: brightness(0) invert(1);
}
.count-list .count-sec {
    /* border: 1px solid #1964cd30; */
    border-radius: 10px;
    padding: 15px;
}
.count-list .count-sec .count-img {
    width: 40px;
    height: 41px;
    display: flex;
    background: #ff6c00;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.slider .pagi {
    position: absolute;
    bottom: 1rem;
    width: 100%;
}
.mainpagination {
    position: relative;
    text-align: left;
    display: flex;
    gap: 5px;
    bottom: auto !important;
    top: auto !important;
    margin-top: 15px;
}
.mainpagination .swiper-pagination-bullet {
    background-color: var(--black);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 !important;
    border: 1px solid rgb(255 255 255 / 20%);
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
    border-radius: 5px;
}
.mainpagination .swiper-pagination-bullet-active {
    background-color: var(--clrpri);
    box-shadow: 0 0 0 2px rgb(255 255 255 / 25%);
    width: 20px;
}

/*---------------------------------------*/
/*::::::::::::::CATEGORY:::::::::::::::::*/
/*---------------------------------------*/

.sub-para {
    max-width: 600px;
    font-size: 0.95rem;
}

.cat-box {
    background-color: #1964cd0f;
    border-radius: 0.5rem;
    text-align: center;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: relative;
}
.cat-box .cat-img {
    width: 70px;
    height: 70px;
    /* margin: auto; */
    margin-bottom: 20px;
    background: white;
    padding: 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.cat-box .cat-img img {
    width: 35px;
}
.cat-box .cat-con h5 {
    font-size: 1rem;
    font-weight: 500;
}
.cat-box .cat-con p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.cat-box:hover .cat-img {
    background-color: var(--orange);
}
.cat-box:hover .cat-img img {
    filter: brightness(0) invert(1);
}
.swiper-button-next,
.swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background: var(--clrpri);
    border-radius: 50%;
    transition: 0.3s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--clrsec);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1rem !important;
    color: white;
}
.swiper-button-next.cat-next,
.swiper-button-prev.cat-prev {
    position: unset;
}

/*---------------------------------------*/
/*:::::::::::::::TWO BOX:::::::::::::::::*/
/*---------------------------------------*/

.two-box {
    border-radius: 0.5rem;
    padding: 25px 40px;
    box-shadow: 0px 0px 20px #00000012;
    display: flex;
    align-items: center;
}
.two-box img {
    width: 300px;
}
.two-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 30px;
}
.two-box p {
    max-width: 400px;
    font-size: 0.9rem;
}
.two-box .btn {
    padding: 0 25px;
}

/*---------------------------------------*/
/*:::::::::::::::COURSES:::::::::::::::::*/
/*---------------------------------------*/

.head-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: wrap;
}

.cat-box.course-box {
    text-align: left;
    padding: 10px;
    align-items: flex-start;
}
.cat-box .course-img {
    border-radius: 0.3rem;
    overflow: hidden;
    margin-bottom: 10px;
}
.cat-box .course-con {
    padding: 0 8px;
    width: 100%;
}
.cat-box .course-con h5 {
    font-size: 1rem;
    line-height: 23px;
    margin-bottom: 8px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.cat-box .course-con .btn {
    font-size: 0.85rem;
    padding: 8px 18px;
    min-height: auto;
    position: relative;
    z-index: 2;
}
.cat-box .course-con ul {
    display: flex;
    flex-flow: wrap;
    column-gap: 10px;
    row-gap: 5px;
    border-bottom: 1px dashed #1964cd3d;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.cat-box .course-con ul li {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 5px;
}
.cat-box .course-con ul li img {
    width: 13px;
}

.cat-box.course-box:hover .course-img img {
    transform: scale(1.1);
}

/*---------------------------------------*/
/*:::::::::::::::ABOUT:::::::::::::::::*/
/*---------------------------------------*/

.about .btn {
    width: max-content;
    padding: 0 30px;
}
.about h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 3px;
}
.about p {
    margin-bottom: 0;
}
.vis-box {
    display: flex;
    gap: 20px;
}
.vis-box .vis-img {
    width: 40px;
}

.vis-box .vis-con {
    width: calc(1005 - 40px);
}
.abt-img {
    width: 500px;
    margin: auto;
}
.about h1 {
    font-size: 2.1rem;
    line-height: 45px;
}

/*---------------------------------------*/
/*:::::::::::::TESTIMONIALS::::::::::::::*/
/*---------------------------------------*/
.cat-box.testi-box {
    min-height: auto;
    padding: 20px;
}
.cat-box.testi-box .qoutes {
    width: 30px;
    margin: auto;
    margin-bottom: 10px;
}
.cat-box.testi-box p {
    /*text-overflow: ellipsis;*/
    /*overflow: hidden;*/
    /*display: -webkit-box;*/
    /*-webkit-line-clamp: 3;*/
    /*-webkit-box-orient: vertical;*/
    font-size: 0.9rem;
}
.cat-box.testi-box .testi-img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 5px;
}
.cat-box.testi-box .testi-img h5 {
    font-size: 1rem;
    color: #1964cd;
    margin-bottom: 3px;
    font-weight: 600;
}
.cat-box.testi-box .testi-img p {
    color: #0000009e;
    margin-bottom: 0;
    font-size: 0.85rem;
}

/* \\\\\\\\\\\\\\FOOTER////////////// */

footer {
    background-color: #00419d;
    background-image: url(../img/images/footer-bag.svg);
    background-size: cover;
    background-position: center;
}

footer h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}
footer h5 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}
footer p,
footer a {
    color: rgb(255 255 255 / 90%);
    font-size: 0.9rem;
    transition: 0.3s;
}
footer a:hover {
    color: white;
}
footer .menulist li:not(:last-child) {
    padding-bottom: 10px;
}
.text-right {
    text-align: right;
}

footer .footlink {
    display: flex;
    flex-flow: wrap;
    gap: 15px;
}

footer .social a {
    width: 30px;
    height: 30px;
    background-color: #ffffff17;
}

footer .social a img {
    width: 13px;
    max-height: 13px;
}

footer .social a img {
    filter: brightness(0) invert(1);
}

footer .social a:hover {
    background-color: #ffffff41;
}

footer .footlink li a {
    display: flex;
    gap: 5px;
}
footer .footlink li a img {
    width: 15px;
}
.menulist.menulist50 {
    display: flex;
    flex-flow: wrap;
}
.menulist.menulist50 li {
    flex: 1 0 50%;
    max-width: 50%;
}

.foot-img {
    width: 260px;
    margin-bottom: 25px;
}
footer .add-box {
    background-color: #1964cd63;
    border-radius: 20px;
    padding: 20px;
    margin-top: -20px;
    color: white;
    text-align: center;
    height: 100%;
    min-height: 240px;
    display: flex;
    align-items: center;
    flex-flow: column;
}

footer .add-box p {
    font-size: 0.85rem;
}

footer .add-box .img-box {
    width: 60px;
    height: 60px;
    background: #ffffff29;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 50%;
}

footer .add-box img {
    width: 30px;
}

.con-list li {
    display: flex;
    gap: 10px;
}
.con-list img {
    width: 15px;
}

.con-list li span {
    width: 30px;
    height: 30px;
    background-color: #1964cd2b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
.con-list li:not(:last-child) {
    padding-bottom: 10px;
}
.con-list li p {
    margin-bottom: 0;
    flex: 1 0;
}
.con-box {
    background: #1964cd17;
    padding: 30px;
    border-radius: 0.5rem;
    position: sticky;
    top: 5rem;
}
.sub-add {
    padding: 20px;
    border: 1px solid #00000017;
    border-radius: 10px;
    min-height: 270px;
}
.sub-add h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

footer .con-list li {
    color: rgb(255 255 255 / 90%);
    font-size: 0.9rem;
    transition: 0.3s;
}
footer .con-list li span {
    background-color: #ffffff26;
}
footer .con-list li span img {
    filter: brightness(0) invert(1);
}
.loc {
    font-size: 0.95rem;
    color: #ff6528;
    text-decoration: underline !important;
    transition: 0.3s;
}
.loc:hover {
    color: #b33807;
}

.sub-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid #1964cd1f;
    border-radius: 10px;
}
.sub-sec span {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background-color: #1964cd17;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sub-sec img {
    width: 50px;
}
.sub-sec h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/*mobilw css*/

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: 0;
    opacity: 0;
    overflow: hidden;
    background-color: #fff;
    box-shadow: -20px 0 20px rgb(0 0 0 / 10%);
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    border-top: 4px solid #1964cd;
}

.sidebar.show {
    width: 320px;
    opacity: 1;
}

.sidebar .sidehead {
    padding: 15px;
    border-bottom: 1px solid #eee;
    /* background: #1a1a1a; */
    /* border-radius: 0 0 2rem 2rem;*/
}

.sidebar .sidehead .logo {
    width: 180px;
    display: flex;
    /*justify-content: center; */
    /* margin: auto; */
}

.sidebar .sidehead .closebtn {
    font-size: 1rem;
    padding: 8px;
    border: none;
    background-color: #cd6219;
    position: absolute;
    top: 7px;
    right: 0.5rem;
    color: white !important;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    border-radius: 50px;
    height: 26px;
    width: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar .sidehead .closebtn img {
    filter: brightness(0) invert(1);
}

.sidebar .sidehead .closebtn:hover {
    color: #3a3a3a;
}

.sidebar .sidemenu {
    padding: 15px;
    overflow-y: auto;
    height: calc(100vh - 95px);
}

.sidebar .sidemenu ul.menulist {
    display: flex;
    flex-flow: column;
}

.sidebar .sidemenu ul.menulist li:not(:last-child) {
    margin-bottom: 10px;
}

.sidebar .sidemenu ul.menulist li a {
    color: #333;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 0.5rem;
    cursor: pointer;
    background: #1964cd0d;
    font-weight: 400;
    font-size: 0.95rem;
    box-shadow: unset;
    gap: 10px;
}
.sidebar .sidemenu ul.menulist li a img {
    filter: hue-rotate(215deg);
    width: 20px;
}
.seperate{
    padding: 10px;
}

.sidebar ul.social {
    padding: 0 15px;
    display: flex;
    padding-left: 0;
}

.sidebar ul.social li a i {
    color: #2f2483;
    padding-right: 35px;
}
.sidebar .accordion-item {
    border: unset;
}

/* //////// MOBILE RESPONSIVE ////////// */
.mob-menu img {
    width: 18px;
    filter: brightness(0) invert(1);
}
.mob-menu {
    padding: 10px;
    border: none;
    background: #e5831b;
    border-radius: 5px;
    height: 40px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    header .headmenu {
        gap: 15px;
    }
    header .cmpad {
        padding-left: 30px;
        padding-right: 30px;
    }
    header .usercol .btn {
        width: max-content;
    }
}

@media (max-width: 991px) {
    header .menucol {
        display: none;
    }
    header .usercol {
        width: 100%;
        gap: 20px;
    }
    .text-right {
        text-align: left;
    }
}
@media (max-width: 575px) {
    .btn-group span {
        display: none;
    }
    header .usercol .btn {
        padding: 10px;
    }
    header .usercol {
        gap: 10px;
    }
    .count-list {
        gap: 0;
    }
    .count-list li {
        flex: 1 0 33.3333%;
        max-width: 33.3333%;
    }
    .cat-box {
        min-height: 200px;
    }
    .about h1 {
        line-height: 35px;
    }
    .sub-para {
        margin-bottom: 0 !important;
    }
    .head-flex {
        gap: 10px;
    }
    .two-box {
        padding: 25px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
        flex-flow: column-reverse;
        text-align: center;
    }
    .two-box img {
        width: 230px;
        margin: auto;
    }
    .mymodal .left {
        min-height: 350px;
        padding: 30px;
    }
    .close {
        top: -23rem;
    }
    .cat-box .course-con h5 {
        -webkit-line-clamp: 2;
    }
    
}

@media (min-width: 992px) {
    .mob-menu {
        display: none;
    }
}

@media (max-width: 425px) {
    header .logocol {
        max-width: 200px;
    }
}

@media (max-width: 767px) {
    .dsk {
        display: none;
    }
}
@media (min-width: 768px) {
    .mob {
        display: none;
    }
}


.readmore .morebtn{
    color: var(--clrpri);
}

.readmore .morebtn:after{
    background-color: var(--clrpri);
}






