/*-------======================= common css start =======================------- */

* {
    margin: 0;
    padding: 0;
}

:root {
    --main-color: #609513;
    --second-color: #098346;
    --white: #fff;
    --black: #000;
    --light: #D9D9D9;
    --blue: #007bff;
    --indigo: #6610f2;
    --voilet: #683091;
    --pink: #e83e8c;
    --red: #dc3545;
    --text: #585858;
    --notice-bg: #d9d9d941;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --teal: #20c997;
    --cyan: #17a2b8;
    --gray: #6c757d;
    --gray-2: #343a40;
    /* font-size */
    --font-size150: 150px;
    --font-size97: 97px;
    --font-size60: 60px;
    --font-size50: 50px;
    --font-size55: 55px;
    --font-size45: 45px;
    --font-size32: 32px;
    --font-size30: 30px;
    --font-size40: 40px;
    --font-size26: 26px;
    --font-size24: 24px;
    --font-size20: 20px;
    --font-size18: 18px;
    --font-size16: 16px;
    --font-size12: 12px;
    --font-size13: 13px;
    --font-size14: 14px;
    --font-size10: 10px;
    --font-size8: 8px;
    --font-size9: 9px;
    --font-size7: 7px;
    --font-size6: 6px;
    /* font-weight */
    --font-normal: 400;
    --font-semi-bold: 500;
    --font-bold: 700;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.bg-area {
    width: 100%;
}

.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: var(--white);
    box-shadow: 0 0 10px var(--light);
}

ul,
h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
    padding: 0;
}

ol {
    padding-left: 1rem;
}


/* ========= header start ========= */

.wraper-right .header {
    text-align: center;
}

.header {
    background-color: var(--main-color);
    padding: 10px 20px;
}

.header h3 {
    font-size: var(--font-size18);
    color: var(--white);
}


/* ========= header end ========= */


/* ========= common-btn start ========= */

.common-btn {
    display: inline-block;
    font-size: var(--font-size16);
    font-weight: var(--font-normal);
    color: var(--white);
    text-align: center;
    line-height: 28px;
    border-radius: 8px;
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
    outline: none;
    padding: 8px 25px;
    transition: all linear .2s;
}

.common-btn-2 {
    width: 100%;
    font-size: var(--font-size16);
    font-weight: var(--font-normal);
    color: var(--white);
    text-align: center;
    line-height: 28px;
    border-radius: 8px;
    background-color: var(--second-color);
    border: 2px solid var(--second-color);
    outline: none;
    padding: 5px 0;
    transition: all linear .2s;
}

.common-btn:hover {
    color: var(--main-color);
    background-color: transparent;
    border: 2px solid var(--main-color);
}

.common-btn-2:hover {
    color: var(--second-color);
    background-color: transparent;
    border: 2px solid var(--second-color);
}


/* ========= common-btn end ========= */


/* ========= table start ========= */

.table-content {
    background-color: var(--white);
    padding: 20px;
    margin: 20px 0;
}

.page-item.active .page-link {
    color: var(--white);
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.table-content .table thead tr {
    font-size: var(--font-size14);
    color: var(--white);
    background-color: var(--main-color);
}

.table-content .table tbody tr td {
    font-size: var(--font-size12);
    color: var(--black);
}

.form-control:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 0.2rem transparent;
}

.page-link:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 0.2rem transparent;
}

.page-link {
    font-weight: var(--font-semi-bold);
    color: var(--main-color);
}

.page-link:hover {
    color: var(--main-color);
    background-color: transparent;
}

.table-responsive {
    padding: 20px 0;
}


/* ========= table end ========= */


/* ====== normal table start ======== */

.course-table {
    height: 400px;
    overflow-y: scroll;
}

.course-table .search input {
    width: 30%;
    border: 1px solid var(--light);
    outline: none;
    border-radius: 3px;
    padding: 4px 10px;
    margin-bottom: 20px;
}

.course-table .search input:focus {
    border-color: var(--second-color);
}

.course-table table.table {
    white-space: nowrap;
    color: var(--black);
    font-size: 14px;
}

.course-table.table th {
    font-weight: var(--font-bold);
    font-size: var(--font-size14);
    color: var(--black);
}

.course-table.table td {
    font-weight: var(--font-normal);
    font-size: var(--font-size14);
    color: var(--black);
}


/* ===== normal table end ======== */


/* ========= form start ========= */

.form-content label {
    color: var(--main-color);
    font-size: var(--font-size16);
    font-weight: var(--font-semi-bold);
    line-height: 20px;
    margin-bottom: 10px;
}

.form-content input {
    width: 100%;
    border: 1px solid var(--light);
    outline: none;
    border-radius: 3px;
    padding: 8px 10px;
    margin-bottom: 20px;
}

.form-content input:focus {
    border-color: var(--second-color);
}

.form-content input::placeholder {
    color: var(--black);
    font-size: var(--font-size14);
    font-weight: var(--font-normal);
    line-height: 20px;
}

.form-content select {
    margin-bottom: 20px;
}

.form-content {
    padding: 40px;
    border-radius: 5px;
    border-top: 5px solid #008000;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    box-shadow: 0 0 8px var(--light);
}

.form-content h1 {
    color: var(--red);
    font-size: var(--font-size18);
    font-weight: var(--font-bold);
    margin-bottom: 20px;
    line-height: 30px;
}


/* ========= form end ========= */


/* ========= card-details li end ========= */

.card-details li {
    margin: 7px 0;
}

.card-details li a {
    font-size: var(--font-size16);
    color: var(--text);
    margin-right: 5px;
    line-height: 25px;
}

.card-details li a i {
    font-size: var(--font-size16);
    color: var(--main-color);
    margin-right: 5px;
    transition: all linear .1s;
}

.card-details li a:hover {
    color: var(--main-color);
    text-decoration: underline var(--second-color);
}

.card-details li a:hover i {
    margin-right: 10px;
}


/* ========= card-details li end ========= */


/* =============history  start ============ */

.history-content,
.exams-roules-content {
    padding: 30px 20px;
}

.history-content p {
    font-weight: var(--font-normal);
    font-size: var(--font-size14);
    color: var(--text);
    text-align: justify;
    line-height: 30px;
    margin-bottom: 30px;
}

.exams-roules-content li {
    font-weight: var(--font-normal);
    font-size: var(--font-size16);
    color: var(--black);
    text-align: justify;
    line-height: 28px;
    margin-bottom: 10px;
}


/* ===========history  end ========== */


/* ========== principle start ============== */

.wraper-left .principal-wraper {
    margin-top: 20px;
}

.wraper-left .principal-wraper .principal-img {
    width: 300px;
    height: 350px;
    border-radius: 5px;
    margin: auto;
    box-shadow: 0 0 8px var(--light);
}

.wraper-left .principal-wraper .principal-img img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.wraper-left .principal-wraper .principal-content {
    margin: 20px 0;
    padding: 20px;
}

.wraper-left .principal-wraper .principal-content h3 {
    font-size: var(--font-size30);
    font-weight: var(--font-bold);
    color: var(--black);
    line-height: 45px;
}

.wraper-left .principal-wraper .principal-content p {
    font-size: var(--font-size16);
    font-weight: var(--font-normal);
    color: var(--black);
    line-height: 30px;
    text-align: justify;
    margin: 20px 0;
}


/* =========== principle end ============== */


/*============= poricolpona card  start =============*/

.poricolpona-wraper {
    padding: 20px;
}

.poricolpona-wraper .tea button {
    padding: 5px 8px;
    border-radius: 8px;
    border: 1px solid #008000;
    margin-bottom: 10px;
    font-weight: 500;
    transition: .3s;
}

.poricolpona-wraper .porcolpona-card .table {
    margin-top: 20px;
}

.poricolpona-wraper .porcolpona-card {
    padding: 20px;
    box-shadow: 0 0 8px var(--light);
}

.poricolpona-wraper .porcolpona-img {
    width: 200px;
    height: 200px;
    margin: auto;
}

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


/*============= poricolpona card  end =============*/


/* =========== common-card start ========== */

.common-card-content {
    padding: 10px 20px;
}

.common-card-content .common-card-list {
    box-shadow: 0 0 3px var(--light);
    padding: 10px;
    margin-bottom: 20px;
}

.common-card-content .common-card-list .common-card-img {
    width: 100%;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
}

.common-card-content .common-card-list .common-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.common-card-content .common-card-list .common-card-heading h2 {
    display: inline-block;
    font-weight: var(--font-bold);
    font-size: var(--font-size18);
    color: var(--second-color);
    line-height: 28px;
    transition: all linear .2s;
    margin-top: 10px;
}

.common-card-content .common-card-list .common-card-heading h2:hover {
    color: var(--main-color);
}

.common-card-content .common-card-list .common-card-title p {
    font-weight: var(--font-semi-bold);
    font-size: var(--font-size12);
    color: var(--gray);
    margin: 10px 0;
}

.common-card-content .common-card-list .common-card-title h3 {
    font-weight: var(--font-bold);
    font-size: var(--font-size14);
    color: var(--gray-2);
    line-height: 26px;
}


/* =========== common-card  end ========== */


/* ========== pdf start ============= */

.qty-container {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    height: 40px;
    overflow: hidden;
}

.qty-container .input-qty {
    text-align: center;
    padding: 6px 10px;
    border: none;
    max-width: 80px;
}

.qty-container .qty-btn-minus,
.qty-container .qty-btn-plus {
    border: none;
    padding: 10px 13px;
    background-color: var(--light);
    font-size: 10px;
    height: 40px;
    width: 34px;
    transition: 0.3s;
}

.qty-container .qty-btn-plus {
    margin-left: 1px;
}

.qty-container .qty-btn-minus {
    margin-right: -1px;
}


/* ===== read title start ======== */

.overlay2 {
    width: 100%;
    height: 100vh;
    background-color: var(--light);
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
}

.showoverlay2 {
    opacity: 1;
    z-index: 9999;
}

.btn-login2 {
    z-index: 1;
}

.buy-now-cart2 {
    width: 70%;
    height: auto;
    margin: 0 auto;
    background-color: var(--white);
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: all linear -1s;
}

.showcart2 {
    top: 75%;
}

.buy-now-cart2 .buy-icon2 i {
    position: absolute;
    right: 0;
    top: 0;
    color: var(--white);
    cursor: pointer;
    font-size: 40px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: var(--main-color);
}


/* popup end */

.buy-now-cart2 .buy-now-datails2 {
    padding: 50px;
}

.buy-now-cart2 .buy-now-datails2 .buy-now-content {
    background-color: var(--light);
    border: 15px solid var(--light);
}

.buy-now-cart2 .buy-now-datails2 .buy-now-content .cart-document {
    width: 100%;
    height: 100vh;
    overflow: scroll;
}

.buy-now-cart2 .buy-now-datails2 .buy-now-content .cart-document img {
    margin-bottom: 20px;
    height: auto;
}

.buy-now-cart2 .buy-now-content img {
    width: 100%;
    height: 100%;
}


/* ========== pdf end ============= */


/*-------======================= common css start =======================------- */


/* ================================================== */

.top-header {
    background: var(--voilet);
    border-top: 4px solid var(--second-color);
    color: var(--light);
    border-radius: 5px 5px 0 0;
    font-size: 13px;
    padding: 4px;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header li {
    list-style: none;
    display: inline-block;
    padding: 0px 10px;
    border-left: 1px solid var(--light);
    text-align: end;
    justify-content: end;
}

.top-header li a {
    font-weight: var(--font-normal);
    font-size: var(--font-size13);
    color: var(--white);
    transition: all linear .2s;
}

.top-header li a:hover {
    color: var(--light);
    text-decoration: underline;
}

.top-logo a {
    font-weight: var(--font-normal);
    font-size: var(--font-size13);
    color: var(--white);
    background-color: var(--main-color);
    border: 1px dashed var(--pink);
    border-radius: 5px 5px 20px 0;
    padding: 5px 15px;
    transition: all linear .2s;
}

.top-logo a:hover {
    color: var(--light);
}


/* ======================================== */


/* navber section start  */

.header-bottom {
    box-shadow: 0 2px 2px var(--shadow);
    z-index: 100;
}

.header-bottom .navber ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--light);
}

.header-bottom .navber a.menu,
.header-bottom .navber .menu-home {
    display: block;
    color: var(--black);
    font-size: var(--font-size12);
    font-weight: var(--font-semi-bold);
    line-height: 25px;
    padding: 12px 8px;
    border-right: 1px solid #e5e5e5;
    transition: all linear .2s;
}

.header-bottom .navber .menu-home:hover,
.header-bottom .navber a.menu:hover {
    background-color: var(--second-color);
    color: var(--white);
}

.header-bottom .navber a.menu i {
    margin-left: 6px;
}


/* sub-menu  */

.header-bottom .navber .dp-menu li a {
    display: block;
    color: var(--gray-2);
    font-size: 12px;
    font-weight: var(--font-semi-bold);
    line-height: 40px;
    transition: all linear .2s;
}

.header-bottom .navber .dp-menu li a:hover {
    color: var(--black);
    background-color: var(--light);
}

.header-bottom .navber ul li .dmenu {
    width: 400px;
}

.header-bottom .navber ul li .dp-menu {
    position: absolute;
    width: auto;
    background-color: var(--white);
    border-top: 3px solid var(--second-color);
    box-shadow: 0 0 10px var(--light);
    padding: 15px;
    z-index: 1000;
    display: none;
}

.header-bottom .navber ul.dp-nine,
.header-bottom .navber ul.dp-ten {
    right: 88px;
}

.header-bottom .navber ul li ul li a {
    padding: 0 10px;
}

.header-bottom .navber ul li ul li ul {
    padding: 0;
    border-top: 4px solid transparent;
}

.navber ul li:focus-within>ul,
.navber ul li:hover>.dp-menu {
    display: initial;
}

#menu-bar {
    display: none;
}

header label {
    font-size: 20px;
    color: var(--black-3);
    cursor: pointer;
    display: none;
}


/* ============== drop-down end ============== */


/* ================================================== */


/*------ ========= banner section start ========= ------- */

.carousel-inner {
    overflow: hidden;
}

.carousel-item {
    width: 100%;
    height: 270px;
    background: no-repeat scroll center;
    background-size: cover;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all linear .3s;
}

.carousel-item img:hover {
    transform: scale(1.01);
}

.carousel-caption {
    position: absolute;
    top: 0%;
    color: #fff;
    text-align: center;
    background-color: #17a2b8;
}

.carousel-caption h2 {
    font-size: 40px;
    font-weight: 500;
}

.carousel-caption p {
    font-size: 18px;
    font-weight: 400;
}

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 44%;
    width: 4%;
    height: 30px;
}

.titleBar {
    z-index: 2;
    display: flex;
    position: absolute;
    padding: 20px 30px;
    transition: all 0.3s ease 0s;
    color: yellow;
    font-weight: bold;
    align-items: center;
    font-size: 25px;
    margin-top: 138px;
    text-shadow: rgb(0, 0, 0) -1px -1px 10px, rgb(0, 0, 0) 1px -1px 10px, rgb(0, 0, 0) -1px 1px 10px, rgb(0, 0, 0) 1px 1px 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.titleBar-img {
    width: 90px;
    height: 80px;
    margin-right: 20px;
}

.titleBar-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}


/* main  */

.wraper-left {
    box-shadow: 0 0 8px var(--light);
}

.user-wrapper {
    padding-top: 40px;
}


/* .wraper-right  */

.instructor {
    box-shadow: 0 0 10px var(--light);
}

.instructor .instructor-content .instructor-img {
    width: 100%;
    height: 270px;
    padding: 10px 15px;
    box-shadow: 0 0 7px var(--light);
    border-radius: 5px;
}

.instructor .instructor-content .instructor-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.instructor .instructor-content h3 {
    font-size: 15px;
    font-weight: normal;
    color: #414141;
    text-align: center;
    line-height: 30px;
    margin: 10px 0;
}


/* important-link" */

.important-link {
    box-shadow: 0 0 10px var(--light);
}

.important-link .card-details li {
    border-bottom: 1px solid var(--light);
    line-height: 40px;
    padding-left: 16px;
}


/* contact-map */

.map-wrapper {
    overflow: hidden;
}


/* national-wrapper */

.national-wrapper .video iframe {
    width: 100%;
    height: 200px;
}


/* official-content */

.official-content {
    width: 100%;
    height: 200px;
    overflow-y: scroll;
    padding: 15px;
    overflow-x: hidden;
}


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


/*-------======== footer section  start ========------- */


/* footer */

.footer-wrapper {
    margin-top: 40px;
}

.footer-img img {
    width: 100%;
}

.copyright-text p {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 10px;
}

.copyright-text p a {
    font-weight: var(--font-semi-bold);
    font-size: var(--font-size16);
    color: var(--red);
    text-align: center;
    margin: 0;
}


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