@charset "UTF-8";

:root {
    --primary-color: #162c65;
    --secondary-color: #fabe29;
    --dark-color: #1f1b20;
    --bg-color: #f8f9fa;
    --white-color: #ffffff;
    --black-color: #000000;
    --text-gray-color: #606060;
    --transition: all 0.3s ease 0s;
}
*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}
html {
    scroll-behavior: smooth
}
body,
html {
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 22px;
    font-style: normal;
    color: var(--black-color);
    font-family: "Noto Sans", serif;
}
h1,h2,h3 {
    margin: 0;
}
h4,h5,h6 {
    margin: 0;
}
p {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--black-color);
}
p:last-child {
    margin-bottom: 0
}
a,
button {
    cursor: pointer;
    text-decoration: none;
    color: var(--black-color);
    transition: var(--transition);
}
a, button, img, input, textarea {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}
a:focus {
    text-decoration: none;
    outline: 0
}
a:hover {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto
}
ul {
    margin: 0;
    padding: 0
}
li {
    list-style: none;
    transition: var(--transition);
}
.form-control {
    border-radius: 30px;
    padding: 10px 15px;
    height: 40px;
    font-size: 14px;
    color: #878787;
    outline: 0;
    border-color: #878787;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 .0rem rgba(13, 110, 253, .25);
}
.container-fluid {
    padding-right: 80px;
    padding-left: 80px;
}
.section-padding {
    padding: 50px 0 50px 0;
}
.pad-top {
    padding-top: 50px;
}
.pad-bottom {
    padding-bottom: 50px;
}
.section-heading-center {
    display: flex;
    justify-content: center;
    align-content: center;
    position: relative;
    text-align: center;
}
.section-heading-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.section-heading {
    margin-bottom: 15px;
}
.main-head {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}
.section-heading-center .main-head {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.inline-main-btn {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.main-btn {
    font-size: 13px;
    font-weight: 500;
    line-height: 35px;
    height: 36px;
    padding: 0 20px;
    border-radius: 50px;
    border: 0;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.right-menu .main-btn i {
    padding-right: 5px;
    padding-left: 0;
}
.main-btn i {
    padding-left: 5px;
}
.right-menu .main-btn i {
    position: relative;
}
.btn-1 {
    background: var(--primary-color);
    color: var(--white-color);
}
.btn-1:hover {
    background: var(--secondary-color);
    color: var(--black-color);
}
.btn-2 {
    background: var(--secondary-color);
    color: var(--black-color);
}
.btn-2:hover {
    background: var(--primary-color);
    color: var(--white-color);
}
.btn-white {
    background: var(--white-color);
    color: var(--primary-color);
}
.btn-white:hover {
    background: var(--secondary-color);
    color: var(--black-color);
}

.test-btn {
    color: #000000;
    background: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-size: 13px;
    font-weight: 500;
    line-height: 35px;
    height: 36px;
    padding: 0 20px;
    border-radius: 50px;
    gap: 5px;
}
.test-btn:hover {
    color: #ffffff;
    background: var(--primary-color);
}
.test-btn:after {
    content:'';
    top:0;
    transform:translateX(100%);
    width:100%;
    height:220px;
    position: absolute;
    z-index:1;
    animation: slide 2s infinite;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%);
}
@keyframes slide {
    0% {transform:translateX(-100%);}
    100% {transform:translateX(100%);}
}


/*--------------------------------------------
           header section start
--------------------------------------------*/
.inline-menu .container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.menu-section {
    padding: 0;
    display: flex;
    align-items: center;
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 1%), 0 2px 4px -2px rgb(0 0 0 / 4%);
}
.header-top-section {
    padding: 5px 0;
    background: var(--primary-color);
}
.header-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-social-list-icon {
    width: 26px;
    height: 26px;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    font-size: 12px;
    display: inline-block;
}
.header-social-list-icon:hover {
    border: 1px solid #fff;
    color: var(--primary-color);
    background: #fff;
}
.header-social-inline {
    display: flex;
    column-gap: 3px;
    align-items: center;
}
.header-social-inline li {
    color: var(--white-color);
    font-size: 14px;
}
.top-info a {
    color: var(--white-color);
}
.top-info a:hover {
    color: var(--secondary-color);
}
.logo img {
    width: auto;
    height: 50px;
}
.main-header {
    background: #fff;
}
.inline-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: #01133cf5;
    z-index: 99;
}
.search-box-fil {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-box-fil input {
    border: 1px solid #fff;
    background: #fff;
    padding: 15px;
    height: 50px;
    border-radius: 30px 0 0 30px;
    width: 350px;
}
.search-box-fil button {
    height: 50px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: #fff;
    width: 60px;
    font-size: 20px;
    border-radius: 0 30px 30px 0;
}
.closed-button {
    color: #fff;
    position: absolute;
    right: 60px;
    top: 60px;
    font-size: 54px;
    cursor: pointer;
}
.all-search {
    cursor: pointer;
    margin-right: 20px;
    font-size: 20px;
}

/*--------------------------------------------
           header section end
--------------------------------------------*/


/*--------------------------------------------
           banner section start
--------------------------------------------*/
.banner-section:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 300px;
    opacity: 0.8;
    background: var(--primary-color);
}
.banner-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
}
.banner-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.banner-text .main-head {
    font-size: 50px;
    line-height: 50px;
    color: #ffffff;
    margin-bottom: 15px;
}
.banner-text p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}

/*--------------------------------------------
           banner section end
--------------------------------------------*/


/*--------------------------------------------
           home section start
--------------------------------------------*/
.z-index-1 {
    z-index: 1;
}
.heading-white .main-head {
    color: #ffffff;
}
.section-bg {
    background: var(--bg-color);
}

/*--------------------------------------------
           home section end
--------------------------------------------*/


/*--------------------------------------------
        footer section start
--------------------------------------------*/
.footer-section {
    position: relative;
    background: #001038;
}
.footer-section:before {
    content: "";
    background: url(../images/footer-bg.png);
    width: 100%;
    height: 130px;
    background-position: left bottom;
    position: absolute;
    bottom: 0;
    background-size: contain;
    opacity: 0.1;
}
.footer-widget-menu {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}
.footer-social-inline {
    display: flex;
    column-gap: 5px;
    align-items: center;
    width: 100%;
    justify-content: center;
}
.footer-social-list-icon:hover i{
    background: #ffffff;
    color: var(--primary-color);
}
.footer-social-inline a {
    margin-bottom: 0 !important;
}
.footer-social-inline li {
    margin-bottom: 0 !important;
    color: #fff;
    font-weight: 600;
}
.footer-social-list-icon i {
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    color: #fff;
    line-height: 29px;
    text-align: center;
    position: relative;
    font-size: 12px;
    display: inline-block;
    border-radius: 50%;
    transition: var(--transition);
}
.main-footer {
    display: grid;
    width: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: repeat(1, minmax(0px, 1fr));
    padding: 50px 0 30px 0;
}
.footer-title {
    font-size: 22px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 700;
    padding-bottom: 20px;
    margin-bottom: 0;
    position: relative;
}
.footer-widget .footer-widget-menu a {
    font-size: 13px;
    line-height: 16px;
    width: fit-content;
    color: #ffffff;
    display: flex;
}
.footer-widget .footer-widget-menu a:hover {
    color: var(--secondary-color);
}
.footer-widget .footer-widget-menu ul li {
    margin-bottom: 5px;
}
.footer-widget p{
    font-size: 14px;
    line-height: 26px;
    color: #ffffff;
}
.footer-bottom {
    padding: 20px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid #ffffff;
}
.copyright-content-link {
    color: #ffffff;
}
.copyright-content-link:hover {
    color: #ffffff;
}
.footer-bottom p {
    font-size: 12px;
    line-height: 24px;
    color: #ffffff;
    margin: 0;
}
.contact-info i {
    font-size: 13px;
    margin-right: 10px;
    background: #fff;
    width: 26px;
    height: 26px;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    border-radius: 50%;
}
.contact-info a:hover i {
    color: #000;
}
.contact-info a {
    margin-left: 36px;
}
.extra-link a {
    font-size: 12px;
    line-height: 24px;
    color: #ffffff;
    margin: 0;
    position: relative;
    padding: 0 20px;
}
.extra-link a:hover {
    color: #ffffff;
}
.extra-link a:after {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #144583;
}
.extra-link a:last-child {
    padding-right: 0;
}
.extra-link a:last-child:after {
    display: none;
    opacity: 0;
}
#scroll__top {
    position: fixed;
    bottom: 80px;
    right: 25px;
    z-index: 99;
    outline: 0;
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 2px 22px rgba(0, 0, 0, .16);
    cursor: pointer;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}
#scroll__top:hover {
    color: var(--primary-color);
    background: var(--white-color)
}

#scroll__top.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}
#scroll__top svg {
    width: 20px;
    line-height: 1;
}

/*--------------------------------------------
        footer section end
--------------------------------------------*/


/*--------------------------------------------
          home page start
--------------------------------------------*/
.primary-bg {
    background: var(--primary-color);
}
.secondary-bg {
    background: var(--secondary-color);
}
.read-btn-for-mobile {
    display: none;
}
.login-bar {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

/*--------------------------------------------
          home page end
--------------------------------------------*/

/*----- breadcrumb-section start -----*/
.breadcrumb-section {
    background: #f0f0ff;
    padding: 10px 15px;
    margin-bottom: 50px;
}
.breadcrumb-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/breadcrumb-bg.png);
    width: 100%;
    height: 400px;
    background-size: contain;
    background-position: 100%;
    opacity: 0.1;
}
.breadcrumb-head {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
}
.breadcrumb-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.breadcrumb-section ul li a {
    color: var(--black-color);
    margin: 0;
    font-size: 12px;
    font-weight: 500;
}
.breadcrumb-section ul li a:hover {
    color: var(--secondary-color);
}
.breadcrumb-section ul li {
    color: var(--black-color);
    margin: 0;
    font-size: 12px;
    position: relative;
    padding-right: 10px;
    font-weight: 500;
}
.breadcrumb-section ul {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.breadcrumb-section ul li:last-child {
    padding-right: 0;
}
.breadcrumb-section ul li:before {
    content: "\f324";
    font-weight: 600;
    position: absolute;
    right: -2px;
    top: 0.5px;
    font-family: 'Font Awesome 6 Pro';
    font-size: 8px;
}
.breadcrumb-section ul li:last-child:before {
    display: none;
    opacity: 0;
}
/*----- breadcrumb-section end -----*/


/*about start*/
.about-grid {
    display: grid;
    width: 100%;
    grid-column-gap: 40px;
    grid-row-gap: 30px;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.about-extra-content p {
    margin-bottom: 15px;
}
.pad-p {
    margin-top: 15px;
}
.about-extra-content p:last-child {
    margin-bottom: 0;
}
.about-left {
    position: relative;
}
.feature-list {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 20px;
}
.feature-list img {
    height: 54px;
}
.about-content h4 {
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 3px;
}
.mission-vision-section {
    margin-top: 20px;
    margin-bottom: 25px;
}
.about-img {
    box-shadow: -20px 20px var(--secondary-color);
    margin-left: 20px;
    width: 97%;
    height: 100%;
    object-fit: cover;
}
.about-pad {
    padding-bottom: 80px;
}
/*about end*/

/*category page start*/
.category-grid.column-1 {
    display: grid;
    width: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: repeat(1, minmax(0px, 1fr));
}
.category-grid.column-1 .category-item .category-img img {
    height: 100px;
}
.category-grid {
    display: grid;
    width: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
}
.category-grid .category-item {
    position: relative;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 10px 0px #0000000a;
}
.category-item:before {
    content: "";
    background: url(../images/dots-shape.png) no-repeat;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: right bottom;
    opacity: 0.2;
    border-radius: 10px;
}
.category-item .category-img img {
    height: 150px;
    transition: var(--transition);
    width: 100%;
    object-fit: cover;
}
.category-item h4 {
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.category-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}
.category-img.bg-1:before {
    content: "";
    background: #b33771e0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.category-img.bg-2:before {
    content: "";
    background: #18b76dd6;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.category-img.bg-3:before {
    content: "";
    background: #fa983ae3;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.category-item ul {
    padding: 20px 20px 10px 20px;
}
.category-item-btn {
    padding-top: 0 !important;
    padding: 20px;
}
.category-item ul li a {
    color: #383838;
    margin-bottom: 10px;
    display: block;
    width: fit-content;
    position: relative;
}
.category-item ul li a:hover {
    color: #423ed8;
}
.category-item ul li a i {
    margin-right: 6px;
}
/*category page end*/

/*contact page start*/

.contact-box-inline {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.home-contact-image img {
    height: 521px;
    object-fit: cover;
    width: 100%;
}
.contact-form {
    border-radius: 0;
    padding: 40px;
    background: #fff;
}
.contact-form .form-group {
    margin-bottom: 15px;
}
.contact-form label {
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
}
.contact-form .form-control {
    font-size: 12px;
    height: 40px;
    padding: 10px 15px;
    background: #ffffff;
    border-radius: 6px;
    color: #000;
}
.contact-form textarea.form-control {
    height: 100px;
}
.home-contact-map iframe {
    height: 100%;
    filter: grayscale(100%);
    border: 0 solid #eff2f5;
    width: 100%;
    transition: var(--transition);
    margin-bottom: 0;
}
/*contact page end*/

/*Current Affairs start*/
.column-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}
.column-item h4 {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}
.column-item p {
    font-size: 12px;
    line-height: 18px;
    color: #424242;
    margin-top: 6px;
    margin-bottom: 10px;
    display: -webkit-box;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.column-item {
    background: #ffffff;
    padding: 10px;
    border-radius: 10px;
    transition: var(--transition);
}
.column-item:hover {
    box-shadow: 0 0 10px 0px #00000014;
}
.bg-box {
    background: #ecebff;
}
.category-box {
    background: #000000b5;
    color: #ffffff;
    font-size: 10px;
    padding: 8px;
    line-height: 11px;
    width: 100%;
    position: absolute;
    bottom: 0;
    border-radius: 0 0 10px 10px;
    text-align: center;
    font-weight: 500;
    transition: var(--transition);
}
.column-item-box:hover .category-box {
    background: var(--primary-color);
    color: #ffffff;
}
.gk-date {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc3545;
    font-size: 10px;
    color: #fff;
    line-height: 10px;
    padding: 5px 8px;
    border-radius: 4px;
}
.gk-date i{
    margin-right: 2px;
}
.gk-grid {
    display: grid;
    width: 100%;
    gap: 15px;
    grid-template-columns: repeat(5, minmax(0px, 1fr));
}
/*Current Affairs end*/

/*Home Test box start*/
.home-test-section {
    display: flex;
    background: var(--primary-color);
    border-radius: 100px;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    height: 120px;
}
.home-test-text {
    width: 50%;
}
.home-test-text .main-head {
    font-size: 24px;
    margin-bottom: 0;
    line-height: 34px;
    text-transform: capitalize;
}
.home-test-box {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}
.home-test-box .main-btn {
    height: 50px;
    padding: 0 30px;
    font-size: 16px;
}

/*Home Test box end*/


/*--------------------------------------------
        login and signup start
--------------------------------------------*/
.crs_log_wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #eff2f5;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #ffffff;
}

.crs_log__thumb {
    height: 200px;
    width: 100%;
    position: relative;
}

.crs_log__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.crs_log__caption {
    position: relative;
    padding: 0 2rem;
    width: 100%;
}

.rcs_log_123 {
    margin-top: -50px;
}

.rcs_log_123 .rcs_ico {
    background: #ffffff;
    display: flex;
    text-align: center;
    width: 90px;
    height: 90px;
    font-size: 40px;
    margin: 0 auto;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 0 10px 0 rgb(62 28 131 / 7%);
    -webkit-box-shadow: 0 0 10px 0 rgb(62 28 131 / 7%);
}

.Lpo09 {
    padding: 1rem 0;
    text-align: center;
}

.rcs_log_125 {
    text-align: center;
    position: relative;
    display: block;
    padding: 5px 10px 20px 10px;
    font-size: 16px;
    font-weight: 600;
    color: #535c75;
}

.rcs_log_126 .sl_btn {
    height: 50px;
    width: 90%;
    margin: 5px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f2f3f5;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    color: #535c75;
    background: #f7f8f9;
}

.rcs_log_126.full .sl_btn {
    width: 100%;
}

.rcs_log_126 .sl_btn i {
    margin-right: 10px;
    font-size: 18px;
}

.crs_log__footer {
    padding: 1rem;
    border-top: 1px solid #eaecf3;
    margin-top: 2rem;
}

.crs_log__footer p {
    font-weight: 600;
    font-size: 14px;
    color: #535c75;
    margin: 0;
}

.form-control {
    height: 45px;
    padding: 5px 15px;
    margin: 0 !important;
    box-shadow: none !important;
    background: #ffffff;
    border: 1px solid #e6ebf5;
    color: #707e9c;
    border-radius: 4px;
}

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

label {
    font-weight: 500;
    margin-bottom: 5px;
}

.text-info {
    color: #2196f3 !important;
}

.text-danger {
    color: #f33066 !important;
}

textarea.form-control {
    min-height: 100px;
}
.gender-area label {
    display: flex;
    align-items: center;
    margin-right: 15px;
    margin-top: 10px;
    cursor: pointer;
}
.gender-area .input-radio {
    box-shadow: 0px 0px 0px 1px #6d6d6d;
    font-size: 16px;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border: 3px solid #fff;
    background-clip: border-box;
    border-radius: 50%;
    appearance: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}
.input-radio:checked {
    box-shadow: 0px 0px 0px 1px var(--primary-color);
    background-color: var(--primary-color);
}


/*--------------------------------------------
        login and signup end
--------------------------------------------*/


/*learn page start*/
/*.learn-details {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 0 8px 0px #00000008;
}*/
.learn-item h4 {
    font-size: 14px;
    margin-bottom: 3px;
    line-height: 20px;
    position: relative;
    padding-left: 20px;
}
.learn-item h4 span {
    position: absolute;
    left: 0;
}
.learn-item ul li {
    color: #202020;
}
.learn-item h4 p {
    margin-bottom: 5px;
}
.learn-answer {
    background: #f0f0ff;
    padding: 15px;
    margin-top: 10px;
    display: none;
}
.learn-answer p {
    margin-bottom: 5px;
}
.learn-answer p span {
    font-weight: 600;
}
.learn-item .main-btn {
    margin-top: 10px;
    width: 125px;
}
.learn-item {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.learn-item:last-child {
    border-bottom: 0 solid #e7e7e7;
}

/*learn page end*/


/*pagination start*/
.active>.page-link, .page-link.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.page-link {
    color: var(--primary-color);
}
.page-link:hover {
    color: var(--primary-color);
}
.page-item.active .page-link:hover {
    color: #ffffff;
}
.page-link:focus {
    color: var(--primary-color);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}
/*pagination end*/


/*mock test start*/

.radio input[type=radio] {
    position: absolute;
    opacity: 0;
}
.radio input[type=radio] + .radio-label:before {
    content: "";
    background: #f4f4f4;
    border-radius: 100%;
    border: 1px solid #202020;
    display: inline-block;
    width: 15px;
    height: 15px;
    line-height: 15px;
    position: relative;
    top: 3px;
    margin-right: 6px;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}
.radio input[type=radio]:checked + .radio-label:before {
    background-color: var(--primary-color);
    box-shadow: inset 0 0 0 2px #f4f4f4;
    border-color: var(--primary-color);
}
.radio input[type=radio]:focus + .radio-label:before {
    outline: none;
    border-color: var(--primary-color);
}
.radio input[type=radio]:disabled + .radio-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}
.radio input[type=radio] + .radio-label:empty:before {
    margin-right: 0;
}
.radio label {
    color: #202020;
    margin: 0;
    font-weight: 400;
}

.related-test {
    background: #fff;
    padding: 15px;
    border-radius: 14px;
    box-shadow: 0 0 8px 0px #00000008;
}
/*mock test end*/


/*blog start*/
.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border: 2px solid #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}
.event-date span {
    color: #fff;
    font-size: 46px;
    line-height: 40px;
    font-weight: 700;
    display: block;
}
.sub-head {
    color: var(--primary-color);
    font-size: 16px !important;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 12px !important;
    margin-top: 15px;
}
.inner-service-content-area .main-head {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 10px;
}
.inner-service-content-area h1, .inner-service-content-area h2, .inner-service-content-area h3, .inner-service-content-area h4, .inner-service-content-area h5, .inner-service-content-area h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}
.related-current-affair-item h4 {
    font-size: 14px;
    margin-bottom: 5px;
    display: -webkit-box;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    height: 35px;
}
.related-current-affair-item img {
    width: 25%;
    height: 68px;
    float: left;
    margin-right: 10px;
    border-radius: 10px;
}
.related-current-affair-item .main-btn {
    height: 25px;
    font-size: 10px;
    line-height: 11px;
    font-weight: 500;
    padding: 0 12px;
}
.related-current-affair-item {
    display: block;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e7e7e7;
    height: 78px;
}
.related-current-affair-item:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 0px solid #e7e7e7;
}
.related-current-affair {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}
.related-current-affair .main-head {
    font-size: 20px;
    text-align: left;
    border-bottom: 2px solid var(--primary-color);
    width: 100%;
    padding-bottom: 10px;
    color: var(--primary-color);
}
/*blog end*/

.pagination-center nav {
    background: transparent;
}

/*daily current affairs start*/
.quiz-grid {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 0 8px 0px #00000008;
}
.quiz-grid a {
    display: block;
    color: var(--primary-color);
    margin-bottom: 10px;
    padding: 10px 15px;
    background: #f0f0ff;
    border-radius: 10px;
    font-weight: 600;
}
.quiz-grid a:hover {
    background: var(--secondary-color);
    color: #000;
}
.quiz-grid a:last-child {
    margin-bottom: 0;
}

/*daily current affairs end*/


/*test series start*/
.test-series-grid {
    display: grid;
    width: 100%;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: repeat(6, minmax(0px, 1fr));
}
.test-series-item {
    position: relative;
    background: #ecebff;
    padding: 15px;
    border-radius: 10px;
    height: 180px;
}
.test-series-box ul li {
    font-size: 12px;
    list-style: inside;
}
.test-series-box h4 {
    font-size: 14px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #cccaf5;
    color: #000;
}
.test-series-item .main-btn {
    position: absolute;
    left: 15px;
    bottom: 15px;
    width: calc(100% - 30px);
    padding: 0;
    font-size: 12px;
}
.test-series-sidebar .related-current-affair-item span {
    display: block;
    font-size: 10px;
}
.test-series-sidebar .related-current-affair-item h4 {
    margin-bottom: 0px;
    height: auto;
}
.test-series-details-box {
    background: #f0f0ff;
    padding: 20px;
    border-radius: 10px;
}
.badge-free {
    text-align: center;
    position: relative;
    border-radius: .25rem;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    line-height: normal;
    font-size: .75rem;
    text-transform: uppercase;
    overflow: hidden;
    background-image: linear-gradient(136deg, #75cd25 2%, #25cd71 64%);
    padding: 3px .5rem;
}
.badge-pro {
    text-align: center;
    position: relative;
    border-radius: .25rem;
    display: inline-block;
    font-weight: 600;
    line-height: normal;
    font-size: .75rem;
    text-transform: uppercase;
    padding: 3px .5rem;
    color: #000;
    background: linear-gradient(91.7deg, #e5d17d .29%, #fff4c6 49.29%, #e5d17d 100.37%);
    overflow: hidden;
}
.badge-paid {
    text-align: center;
    position: relative;
    border-radius: .25rem;
    display: inline-block;
    font-weight: 600;
    line-height: normal;
    font-size: .75rem;
    text-transform: uppercase;
    padding: 3px .5rem;
    color: #000;
    background: linear-gradient(91.7deg, #7da7e5 .29%, #c6cbff 49.29%, #7d7fe5 100.37%);
    overflow: hidden;
}
.test-series-list-item .badge-free, .test-series-list-item .badge-pro {
    width: 40px;
}
.test-series-details-box h6 {
    display: flex;
    gap: 5px
}
.test-series-list-item {
    background: #fff;
    margin-top: 15px;
    padding: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.right-box {
    display: flex;
    align-items: center;
    gap: 15px;
}
.test-series-list-item .main-btn {
    width: 135px;
}
.test-series-list-item-text h4 {
    font-size: 18px;
    margin-bottom: 2px;
}
.test-series-list-item-text span {
    font-size: 14px;
    color: #767676;
}
.modal-pro-text {
    display: flex;
    align-items: center;
    gap: 8px;
}
.note-list {
    display: grid;
    width: 100%;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
    margin-top: 15px;
}
.note-list h4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f3f3ff;
    border-radius: 10px;
    padding: 20px;
    font-size: 14px;
}
.note-list h4 img {
    height: 50px;
    margin-bottom: 10px;
}

/*----- payment modal start -----*/
#paymentModal .modal-header .badge-pro {
    top: 2px;
}
.payment-section {
    display: flex;
    gap: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}
.payment-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    text-align: center;
    align-items: center;
    background: #ebebff;
    padding: 20px 15px;
    border-radius: 14px;
}
.payment-item .icon-box {
    width: 54px;
    height: 54px;
    text-align: center;
    background: #423ed8;
    border-radius: 50%;
    color: #fff;
    line-height: 54px;
    font-size: 20px;
    margin-bottom: 5px;
}
.payment-item h4 {
    font-size: 12px;
    line-height: 16px;
}
.pay-text {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
}
#paymentModal .modal-footer {
    justify-content: space-between;
}
/*----- payment modal end -----*/



/*test series end*/


/*testimonial series start*/
.testimonial-grid {
    display: grid;
    width: 100%;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
}
.testimonial-bg:before {
    content: "";
    background: url(../images/pattern.png);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}
.testimonial-item {
    background: var(--secondary-color);
    border-radius: 14px;
    padding: 20px;
}
.testimonial-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}
.testimonial-text img {
    height: 20px;
    margin-bottom: 8px;
}
.testimonial-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}
.testimonial-text p {
    display: -webkit-box;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    text-align: center;
}
.testimonial-text p i {
    margin-right: 3px;
}
.testimonial-icon img {
    height: 46px;
}
/*testimonial series end*/


/*------ user sidebar start ------*/
.user-sidebar {
    background: #fff;
    border-radius: 14px 14px 0 0;
}
.user-sidebar ul li a {
    padding: 10px 15px;
    display: flex;
    border-bottom: 1px solid #ededed;
    align-items: center;
    column-gap: 10px;
}
.user-sidebar ul li a:hover {
    color: var(--primary-color);
}
.user-sidebar ul li:last-child a {
    border-bottom: 0 solid #efefef;
}
.user-sidebar-heading h4 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
}
.user-sidebar-heading img {
    width: 94px;
    height: 94px;
    object-fit: cover;
    border: 5px solid #423ed82b;
    border-radius: 50%;
}
.user-sidebar-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #f0f0ff;
    padding: 20px 15px;
    border-radius: 14px 14px 0 0;
    position: relative;
}
.user-sidebar-heading .badge-free {
    position: absolute;
    left: 15px;
    top: 15px;
}
/*------ user sidebar end ------*/


/*------ user body start ------*/
.dashboard-useful-box {
    display: grid;
    width: 100%;
    padding: 20px 0;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
    text-align: center;
}
.useful-box a {
    font-size: 16px;
    margin-top: 10px;
    font-weight: 600;
    display: block;
}
.useful-box a:hover {
    color: var(--primary-color);
}
.useful-box img {
    height: 70px;
}
.user-card-section .test-series-grid {
    grid-template-columns: repeat(4, minmax(0px, 1fr));
}
.popular-test-series .main-head {
    font-size: 18px;
}
.popular-test-series {
    padding: 20px 0;
}
.popular-test-series .owl-carousel .owl-nav.disabled {
    top: 38%;
}
.popular-test-series .owl-dots {
    display: none;
}
.popular-test-series .right-dots .owl-nav .owl-prev {
    background: var(--primary-color) !important;
    width: 24px;
    height: 24px;
    left: 0;
}
.popular-test-series .right-dots .owl-nav .owl-next {
    background: var(--primary-color) !important;
    width: 24px;
    height: 24px;
    right: 0;
}
.popular-test-series .right-dots .owl-nav .owl-prev span, .popular-test-series .right-dots .owl-nav .owl-next span {
    width: 10px;
    height: 10px;
}
.user-img-preview {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 50%;
}
#user_profile_img {
    display: none;
}
.profile-edit-btn {
    font-size: 24px;
    position: absolute;
    right: -15px;
    top: 30px;
    background: #fff;
    padding: 5px;
    border-radius: 50%;
    color: var(--primary-color);
}
.user-card-section.user-test-series-section .test-series-details-box {
    background: #ffffff;
    padding: 15px;
    margin-bottom: 10px;
}
.user-card-section.user-test-series-section .test-series-details-box .main-head {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}
.test-series-view-details {
    position: absolute;
    right: 15px;
    bottom: 15px;
    color: #423ed8;
}
.user-result {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
}
.user-result P {
    margin-bottom: 0;
    font-size: 12px;
}
.correct {
    color: #25cd71;
}
.in-correct {
    color: #f44336;
}
.user-test-series-result-box {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    position: relative;
}
.header-result-box h4 {
    font-size: 16px;
    color: var(--primary-color);
}
.header-result-box {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ededed;
    position: relative;
}
.header-result-box  p {
    font-size: 12px;
    color: #767676;
    margin-top: 2px;
    margin-bottom: 0;
    display: block;
}
.grid-test-series-result {
    display: grid;
    width: 100%;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.header-result-box .badge-free, .header-result-box .badge-pro{
    position: absolute;
    right: 0;
    top: 0;
}
.reattempt-link {
    font-size: 12px;
    color: var(--primary-color);
    position: absolute;
    right: 0;
}
.user-sidebar ul li a.active {
    background: var(--primary-color);
    color: #fff;
}
.user-card-pass-alert {
    background: #0096880f;
    border: 1px solid #009688;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
}
.user-card-pass-alert p {
    margin-bottom: 0;
    font-size: 16px;
    color: #009688;
}
.user-card-pass-alert .btn-2 {
    background: #009688;
    color: #ffffff;
}

/*------ user body end ------*/

.top-result-box h2 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #27ae60;
    background: #27ae601a;
    margin-bottom: 30px;
    padding: 15px;
    text-align: center;
}
.note-box {
    background: #f0f0ff;
    padding: 15px;
    margin-top: 10px;
}
.note-box p {
    margin-bottom: 5px;
}
.pages li {
    list-style: disc;
    margin-top: 5px;
}
.pages ol, .pages ul {
    padding-left: 2rem;
}
.about-extra-content ul {
    padding-left: 2rem;
}
.about-extra-content ul li {
    list-style: disc;
    margin-bottom: 5px;
}
.practice-item {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}
.practice-item:hover {
    color: var(--secondary-color);
}

