/* ============================== comment  css  start =================================  */

@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* font-family: 'Oxygen', sans-serif;
font-family: 'Poppins', sans-serif; */

* {
    margin: 0;
    padding: 0;
}

 :root {
    --black: #333;
    --black-2: #222;
    --black-6: #575757;
    --main-color: #379444;
    --shadow: #30308654;
    --body-color: #f4f7fd;
    --overlay: #00000080;
    --bg-color: #111827;
    --white: #ffffff;
    --transparent: transparent;
    --gmail: #EA4335;
    --aqua: #00ffff;
    --aqua-light: #E9F8F3B2;
    --outline: #00ACEE;
    /* social icons color start  */
    --linkedin: #0072b1;
    --behance: #053eff;
    --youtube: #bb0000;
    --pinterest: #cb2027;
    --dribbble: #ea4c89;
    --facebook: #3B5998;
    --twitter: #00acee;
    --google: #dd4b39;
    --instagram: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    /* social icons color end  */
    /* font-weight */
    --font-normal: 400;
    --font-semi-bold: 500;
    --font-bold: 700;
}

.bg-area {
    width: 100%;
}

body {
    overflow-x: hidden;
    background-color: var(--body-color);
}

.container {
    margin: 0 auto;
}

ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

p {
    color: var(--black-6);
    font-weight: 500;
    line-height: 25px;
    font-size: 18px;
}


/* common heading start  */

.section-heading {
    width: 80%;
    margin: 30px auto;
    text-align: center;
}

.section-heading h2 {
    color: var(--main-color);
    font-weight: 600;
    font-family: 'Oxygen', sans-serif;
    line-height: 45px;
    font-size: 36px;
}


/* common heading end  */


/* common btn start  */

.common-btn {
    display: inline-block;
    background-color: var(--main-color);
    border: 2px solid transparent;
    border-radius: 4px;
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    text-transform: capitalize;
    outline: none;
    cursor: pointer;
    padding: 4px 20px;
    transition: all linear .2s;
}

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

.common-w-btn {
    display: inline-block;
    background-color: var(--main-color);
    border: 2px solid transparent;
    border-radius: 4px;
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    outline: none;
    cursor: pointer;
    padding: 4px 20px;
    transition: all linear .2s;
}

button {
    box-shadow: none;
}


/* admission-btn  */

.admission-btn {
    text-align: center;
}

.admission-btn button i {
    margin-left: 6px;
}

.admission-test {
    display: inline-block;
    color: var(--black-2);
    font-size: 22px;
    font-weight: 600;
    transition: all linear .2s;
}

.admission-test:hover {
    color: var(--main-color);
}

.admission-test a {
    display: inline-block;
    color: var(--black-2);
    font-size: 22px;
    font-weight: 600;
    transition: all linear .2s;
}

.admission-test a:hover {
    color: var(--main-color);
}

.admission-test a i {
    color: var(--main-color);
    font-size: 22px;
}


/* common btn end  */


/* product-price start  */

.product-price span {
    color: var(--main-color);
    font-size: 17px;
    font-weight: 600;
}

.product-price .product-price-old {
    text-decoration: line-through;
    padding-right: 10px;
}

.btn-2 {
    background-color: var(--main-color);
    padding: 5px 10px;
    border: none;
    color: #ffffff;
    text-transform: capitalize;
    border-radius: 5px;
    margin-top: 10px;
    width: 100%;
    border: 2px solid var(--main-color);
    transition: .2s;
}

.btn-2:hover {
    border: 2px solid var(--main-color);
    color: var(--main-color);
    border-radius: 5px;
    background-color: #ffffff;
}


/* product-price end  */


/* ========== common icon start ========== */

.social-icons li a i,
.social-icons i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    border-radius: 8px;
    box-shadow: 0 0 8px var(--light-gray);
    transition: all linear .3s;
    margin-top: 20px;
    margin-right: 6px;
}

.social-icons li {
    margin-top: 0;
    transition: all linear .2s;
}

.social-icons li:hover {
    margin-top: -8px;
}

.fa-facebook-f {
    background: var(--facebook);
    color: var(--white);
}

.fa-twitter {
    background: var(--twitter);
    color: var(--white);
}

.fa-google {
    background: var(--google);
    color: var(--white);
}

.fa-linkedin-in {
    background: var(--linkedin);
    color: var(--white);
}

.fa-behance {
    background: var(--behance);
    color: var(--white);
}

.fa-youtube {
    background: var(--youtube);
    color: var(--white);
}

.instagram-bg {
    background: var(--instagram);
    color: var(--white);
}

.fa-pinterest {
    background: var(--pinterest);
    color: var(--white);
}

.fa-dribbble {
    background: var(--dribbble);
    color: var(--white);
}


/* ========== common icon end ========== */


/* card common start  */

.common-card {
    background-color: var(--white);
    box-shadow: 0 0 10px var(--shadow);
    border-radius: 3px;
    overflow: hidden;
    transition: all linear .2s;
}

.common-card:hover {
    box-shadow: 0 0 8px 4px var(--shadow);
}

.common-card .card-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.common-card .card-img2 {
    width: 100%;
    height: 240px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding-top: 15px;
}

.common-card:hover img {
    transform: scale(1.2);
}

.common-card:hover .w-img {
    transform: scale(1);
}

.common-card .card-img img {
    width: 100%;
    height: 100%;
    transition: all linear .2s;
}

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

.card-content h2 {
    color: var(--black-2);
    font-size: 19px;
    line-height: 30px;
    font-weight: 700;
    transition: all linear .2s;
}

.title-prixe {
    display: flex;
}

.common-card:hover a h2 {
    color: var(--main-color);
}

.common-card .card-content a h3 {
    display: inline-block;
    color: var(--black-6);
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.common-card .card-content .details-icon span {
    color: var(--main-color);
    font-size: 16px;
    line-height: 27px;
    font-weight: 600;
    padding-bottom: 30px;
    margin-top: 30px;
}


/* card common end  */


/*  common slide start   */

.slick-initialized .slick-slide {
    display: block;
    margin: 8px 7px;
}

.slick-prev:before {
    width: 32px;
    height: 32px;
    content: url(../images/angle-left.svg);
    transform: rotate(180deg);
    position: absolute;
    left: -6px;
    border-radius: 50%;
    background: var(--main-color);
    padding: 5px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.slick-next:before {
    width: 32px;
    height: 32px;
    content: url(../images/angle-left.svg);
    position: absolute;
    right: -4px;
    border-radius: 50%;
    background: var(--main-color);
    padding: 5px;
    text-align: center;
    align-items: center;
    justify-content: center;
}


/*  common slide end   */


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

.form-heading {
    width: 100%;
    text-align: start;
}

.form-heading h2 {
    display: inline-block;
    font-size: 22px;
    font-weight: var(--font-bold);
    color: var(--black);
    cursor: pointer;
    transition: all linear .1s;
}

.form-heading h2:hover {
    color: var(--main-color);
}

.form-heading {
    width: 100%;
    text-align: start;
}

form .form-input label,
form .form-input input {
    width: 100%;
}

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

form .form-input input,
form .form-input textarea {
    width: 100%;
    font-weight: var(--font-normal);
    font-size: 14px;
    color: var(--black);
    border: 1px solid var(--transparent);
    box-shadow: 0px 0px 5px var(--shadow);
    outline: none;
    border-radius: 4px;
    padding: 14px 15px;
    margin-bottom: 10px;
    transition: all linear .2s;
}

form .form-input input:focus,
form .form-input textarea:focus {
    border-color: var(--main-color);
}

form .form-input input::placeholder,
form .form-input textarea::placeholder {
    font-weight: var(--font-normal);
    font-size: 14px;
    color: var(--gray);
}

form .form-input .check {
    position: relative;
}

form .form-input .check i {
    position: absolute;
    right: 1%;
    top: 28%;
    line-height: 49px;
    font-size: 10px;
    line-height: 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: var(--white);
    background-color: var(--main-color);
    text-align: center;
    margin-right: 10px;
}


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


/*========= common pagination start =========== */

.language-course .pagination-wrapper .gallery-items {
    display: flex;
    flex-flow: row wrap;
    position: relative;
}

.language-course .pagination-wrapper .gallery-items .item {
    position: relative;
    width: calc(100% / 4 - 20px);
    margin: 10px;
}

.language-course .pagination-wrapper .gallery-items .item.hide {
    display: none;
}

.language-course .pagination-wrapper .gallery-items .item.show {
    display: block;
    animation: show .5s ease;
}

@keyframes show {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.language-course .pagination-wrapper .pagination-btn {
    width: 100%;
    padding: 15px;
    text-align: center;
}

.language-course .pagination-wrapper .pagination-btn div {
    display: inline-block;
    margin: 0 10px;
}

.language-course .pagination-wrapper .pagination-btn .page {
    font-size: 14px;
    font-weight: var(--font-semi-bold);
    color: var(--main-color);
}

.language-course .pagination-wrapper .pagination-btn .prev,
.language-course .pagination-wrapper .pagination-btn .next {
    color: var(--main-color);
    border: 1px solid var(--main-color);
    background-color: transparent;
    font-size: 15px;
    padding: 7px 15px;
    cursor: pointer;
}

.language-course .pagination-wrapper .pagination-btn .prev.disabled,
.language-course .pagination-wrapper .pagination-btn .next.disabled {
    border-color: var(--main-color);
    color: var(--white);
    pointer-events: none;
    background-color: var(--main-color);
}


/* design-courses */

.pagination-wrapper .gallery-items {
    display: flex;
    flex-flow: row wrap;
    position: relative;
}

.pagination-wrapper .gallery-items .item {
    position: relative;
    width: calc(100% / 4 - 20px);
    margin: 10px;
}

.pagination-wrapper .gallery-items .item.hide {
    display: none;
}

.pagination-wrapper .gallery-items .item.show {
    display: block;
    animation: show .5s ease;
}

@keyframes show {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.pagination-wrapper .pagination-btn {
    width: 100%;
    padding: 15px;
    text-align: center;
}

.pagination-wrapper .pagination-btn div {
    display: inline-block;
    margin: 0 10px;
}

.design-courses .pagination-wrapper .pagination-btn .page {
    font-size: 14px;
    font-weight: var(--font-semi-bold);
    color: var(--main-color);
}

.pagination-wrapper .pagination-btn .prev,
.pagination-wrapper .pagination-btn .next {
    color: var(--main-color);
    border: 1px solid var(--main-color);
    background-color: transparent;
    font-size: 15px;
    padding: 7px 15px;
    cursor: pointer;
}

.pagination-wrapper .pagination-btn .prev.disabled,
.pagination-wrapper .pagination-btn .next.disabled {
    border-color: var(--main-color);
    color: var(--white);
    pointer-events: none;
    background-color: var(--main-color);
}


/*======== common pagination end ============ */


/* =============== common css end ===============  */


/* =========== all pages hearder section start ===========  */

.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    line-height: 80px;
    background-color: var(--white);
    box-shadow: 0 0 10px var(--shadow);
    z-index: 9999;
}

.header-area .menu {
    display: flex;
    justify-content: space-between;
}

.header-area .logo {
    height: 60px;
}

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

.header-area .lg-navber {
    display: flex;
    justify-content: center;
}

.header-area .lg-navber ul {
    display: flex;
    justify-content: start;
}

.header-area .lg-navber ul li {
    transition: all linear .2s;
}

.header-area .lg-navber ul li a {
    color: var(--main-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 70px;
    margin: 0 10px;
    border-bottom: 1px solid transparent;
    transition: all linear .2s;
}

.header-area .lg-navber ul li a:hover {
    color: var(--black);
    border-bottom: 1px solid var(--main-color);
}

.header-area .header-right {
    display: flex;
    align-items: center;
    line-height: 80px;
}

.header-area .header-right .icon-cards-btn {
    line-height: 30px;
    border-radius: 4px;
    margin-left: 10px;
}


/* dropdown start  */

.header-area .drop-down {
    position: relative;
}

.header-area .lg-navber ul li ul {
    position: absolute;
    top: 53px;
    left: 0;
    display: none;
    width: 208px;
    height: auto;
    box-sizing: 0 0 4px var(--shadow);
}

.header-area .lg-navber ul li ul li a {
    line-height: 30px;
    background-color: var(--main-color);
    color: var(--white);
    padding: 4px 0px;
    border-radius: 5px;
}

.header-area .lg-navber ul li ul li a:hover {
    color: var(--white);
}

.header-area .lg-navber ul li:hover ul {
    display: initial;
}


/* dropdown end  */

.header-area .icon-cards {
    display: flex;
    text-align: center;
    background-color: var(--main-color);
}

.header-area .icon-cards a h3 {
    color: var(--white);
    font-size: 15px;
    padding: 0 8px;
}


/* header end  */


/* mb header start  */

.mb-header-tab-area {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 0 4px var(--shadow);
    z-index: 99999;
}

.side-menu-area {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 2px var(--shadow);
    z-index: 99999;
}

.side-menu-area .navber ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    text-align: center;
}

.side-menu-area .navber .menu {
    display: block;
    color: var(--black-2);
    font-size: 14px;
    font-weight: 600;
    line-height: 50px;
}

.side-menu-area .navber .menu:hover {
    background-color: transparent;
    color: var(--main-color);
}

.side-menu-area .navber ul li a {
    color: var(--white);
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 30px;
    transition: all linear .3s;
}

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

#menu-bar {
    display: none;
}

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

.mb-header-tab {
    display: flex;
    justify-content: space-between;
}

.mb-header-tab label {
    margin-bottom: 0px;
}

.mb-header-tab i {
    color: var(--main-color);
    font-size: 24px;
    line-height: 60px;
}

.mb-header-tab .mb-header-logo {
    height: 50px;
    margin-top: 6px;
}

.mb-header-tab .mb-header-logo img {
    width: 100%;
    height: 100%;
}


/* mb header end  */


/* ========= all pages hearder section end ==========  */


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

.footer-area {
    background-color: var(--white);
    /* background-color: #cddfd5; */
    /* background-color: var(--black-2); */
    margin-top: 40px;
    color: var(--black-2);
}

.footer-area .container {
    border: 1.5px solid var(--main-color);
    border-radius: 10px;
}

.footer-area .footer-content {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.footer-area .footer-cta .single-cta .cta-text {
    padding-left: 15px;
    display: inline-block;
}

.footer-area .footer-cta .single-cta .cta-text h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}

.footer-area .footer-cta .single-cta .cta-text span {
    color: var(--white);
    font-size: 14px;
}

.footer-area .footer-content .footer-widget .footer-logo {
    width: 150px;
    height: 51px;
    margin-bottom: 6px;
}

.footer-area .footer-content .footer-widget .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-area .footer-content .footer-widget .footer-logo a {
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}

.footer-area .footer-content .footer-widget .footer-text p {
    color: var(--gray-2);
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 14px;
}

.footer-area .footer-content .footer-widget ul.footer-icons li a i {
    margin-right: 15px;
}

.footer-area .footer-content .footer-widget .footer-app img {
    width: 110px;
    height: 35px;
    margin-right: 8px;
}

.footer-area .footer-content .footer-widget .footer-wedget-headling h3 {
    color: var(--main-color);
    font-family: var(--font-family-inter);
    font-size: 20px;
    font-weight: var(--font-bold);
    margin-bottom: 30px;
    margin-top: 10px;
}

.footer-area .footer-content .footer-widget ul {
    padding: 0;
}

.footer-area .footer-content .footer-widget ul li {
    display: block;
    margin-bottom: 10px;
}

.footer-area .footer-content .footer-widget ul li a {
    font-family: var(--font-family-inter);
    font-weight: var(--font-semi-bold);
    font-size: 14px;
    color: var(--black-2);
    transition: all linear .2s;
}

.footer-area .footer-content .footer-widget ul li a:hover {
    color: var(--main-color);
    text-decoration: underline;
}

.subscribe {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.footer-area .subscribe input {
    width: 100%;
    height: 45px;
    color: var(--black);
    background: var(--white);
    outline: none;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    padding: 0 10px;
}

.footer-area .subscribe input::placeholder {
    font-family: var(--font-family-inter);
    font-weight: var(--font-semi-bold);
    font-size: 14px;
    color: var(--black);
}

.footer-area .subscribe button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-color: var(--main-color);
    padding: 0 15px;
    border: none;
}

.footer-area .subscribe button i {
    color: var(--white);
    font-size: 18px;
    line-height: 30px;
}


/* copyright  */

.copyright-area {
    margin: auto;
    background-color: var(--white);
    padding: 15px 0;
    /* border-top: 1.5px solid var(--main-color); */
}

.copyright-area .copyright-text p {
    font-family: var(--font-family-inter);
    font-weight: var(--font-semi-bold);
    font-size: 14px;
    color: var(--black);
    margin: 0;
}

.copyright-area .copyright-text p a {
    font-weight: var(--font-bold);
    color: var(--main-color);
}


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


/*-------======= scroll button start ======= ------- */

.scroll-button-area .scroll-btn {
    position: fixed;
    bottom: 100px;
    right: 45px;
    width: 40px;
    height: 40px;
    color: var(--white);
    background-color: var(--main-color);
    border-radius: 50%;
    display: none;
    padding: 0;
}

.scroll-button-area .scroll-btn i {
    font-size: 20px;
    line-height: 40px;
}


/*-------======= scroll button end =======------ */


/*====== filter gellary section start ==========  */

.filter-area .container h2 {
    color: var(--black);
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0;
    padding-left: 5px;
    margin-top: 70px;
}

.filter-area .art-work-content {
    padding: 20px 10px;
}

.filter-area .art-work-content a:hover {
    color: var(--main-color);
}

.filter-area .art-work-content h4 {
    color: var(--black);
    font-size: 22px;
    font-weight: 400px;
    transition: all linear .3s;
}

.filter-area .art-work-content h4:hover {
    color: var(--main-color);
}

.filter-area .art-work-content p {
    color: var(--black-6);
    font-size: 16px;
    font-weight: 400px;
    margin-bottom: 10px;
}

.filter-area .row,
.row>.column {
    padding: 8px;
}

.column {
    display: none;
    margin-bottom: 20px;
    width: 24.35%;
}

.filter-area .row:after {
    content: "";
    display: table;
    clear: both;
}


/* Content */

.filter-area #myBtnContainer {
    text-align: center;
    margin-bottom: 20px;
}

.filter-area .content {
    box-shadow: 0 0 6px var(--shadow);
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
}

.filter-area .content .art-img {
    height: 210px;
    position: relative;
    border: 2px solid var(--main-color);
    padding: 30px;
}

.filter-area .content .img-01 {
    height: 210px;
    position: relative;
    border: 2px solid var(--main-color);
    padding: 30px;
}

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

.filter-area .content .art-img .overly {
    width: 100%;
    height: 100%;
    background-color: var(--black);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all linear .3s;
}

.filter-area .content .img-01 .overly {
    width: 100%;
    height: 100%;
    background-color: var(--black);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all linear .3s;
}

.filter-area .content .overly:hover {
    opacity: 40%;
    cursor: pointer;
}

.filter-area .content i {
    background: var(--aqua);
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--white);
}

.show {
    display: block;
}

.filter-area .filter-btn {
    border: none;
    outline: none;
    background-color: var(--bg-color-2);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    margin-right: 10px;
    padding: 8px 16px;
    cursor: pointer;
    box-shadow: 0 0 4px var(--shadow);
    transition: all linear .3s
}

.filter-area .filter-btn:hover {
    color: var(--white);
    background-color: var(--main-color);
}

.filter-area .filter-btn.active {
    color: var(--white);
    background-color: var(--main-color);
}


/*========= filter gellary section end  =========*/


/*====== exhibition-first section start ==========  */

.exhibition-first-area {
    margin-top: 40px;
}

.exhibition-first-area .container h2 {
    color: var(--black);
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0;
    padding-left: 5px;
}

.exhibition-first-area .art-work-content {
    padding: 20px 10px;
}

.exhibition-first-area .art-work-content a:hover {
    color: var(--main-color);
}

.exhibition-first-area .art-work-content h4 {
    color: var(--black);
    font-size: 22px;
    font-weight: 400px;
    transition: all linear .3s;
    margin-left: 20px;
}

.exhibition-first-area .art-work-content h4:hover {
    color: var(--main-color);
}

.exhibition-first-area .row,
.row>.column {
    padding: 8px;
}

.exhibition-first-area .column {
    display: none;
    margin-bottom: 20px;
    width: 100%;
}

.exhibition-first-area .row:after {
    content: "";
    display: table;
    clear: both;
}


/* Content */

.exhibition-first-area #myBtnContainer {
    text-align: center;
    margin-bottom: 20px;
}

.exhibition-first-area .content {
    box-shadow: 0 0 6px var(--shadow);
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
}

.exhibition-first-area .content h2 {
    color: var(--main-color);
    font-size: 25px;
    font-weight: bold;
    text-align: center;
}

.exhibition-first-area .art-work-content .currenet-exhibition {
    margin-left: 50px;
    margin-top: 20px;
}

.exhibition-first-area .art-work-content .currenet-exhibition .Current-img img {
    width: 40px;
    height: 60px;
}

.exhibition-first-area .art-work-content .currenet-exhibition .Current-content a {
    color: var(--black-2);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-left: 18px;
}

.exhibition-first-area .art-work-content .currenet-exhibition .Current-content a p {
    color: var(--black-6);
    font-size: 18px;
    margin-left: 20px;
}

.exhibition-first-area .content i {
    background: var(--aqua);
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--white);
}

.exhibition-first-area .filter-btn {
    border: none;
    outline: none;
    background-color: var(--white);
    color: var(--main-color);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    margin-right: 10px;
    padding: 20px 60px;
    cursor: pointer;
    box-shadow: 0 0 4px var(--shadow);
    transition: all linear .3s
}

.exhibition-first-area .show {
    display: block;
}

.exhibition-first-area .filter-btn:hover {
    color: var(--white);
    background-color: var(--main-color);
}

.exhibition-first-area .active {
    color: var(--white);
    background-color: var(--main-color);
    transition: all linear .3s
}

.exhibition-first-area .active:hover {
    background-color: var(--white);
    color: var(--main-color);
}


/*========= exhibition-first section end  =========*/


/* ================ about-left ================ */

.about-area .about-category-group {
    border-radius: 5px;
}

.about-area .about-category-group .accordion-button {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    border: none;
    outline: none;
}

.about-area .about-category-group .items {
    background-color: var(--white);
}

.about-area .about-category-group .items .top-category-img {
    padding: 3px;
}

.about-area .about-category-group .items .top-category-img a img {
    width: 100%;
}

.about-area .about-category-group .items .top-category-content a {
    font-size: 16px;
    color: #000;
}

.about-area .about-details p {
    font-size: 10px;
    color: #000;
}


/* ================ about-right ================ */

.about-information {
    margin-left: 15px;
}

.about-information .share-icon {
    text-align: center;
}

.about-information .share-icon .social-icons {
    justify-content: center;
}

.about-information .social-icons li a i {
    margin-top: 10px;
}

.about-information .share-icon span {
    color: var(--black-3);
    font-size: 24px;
    font-weight: 300;
}

.about-info-header h2 {
    color: var(--black-3);
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
}

.about-profile {
    border-radius: 4px;
    box-shadow: 0 0 10px var(--shadow);
    overflow: hidden;
}

.about-profile .about-profile-img {
    width: 100%;
    height: 280px;
    padding: 8px;
}

.about-profile .about-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    border: 2px solid var(--shadow);
}

.about-profile .about-profile-btn {
    text-align: center;
    margin: 10px;
}

.about-profile .about-profile-btn a {
    color: var(--white);
    background-color: var(--main-color);
    border: 2px solid transparent;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    padding: 7px 10px;
    transition: all linear .2s;
}

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

.about-profile .about-profile-content table {
    width: 100%;
}

.about-profile .about-profile-content {
    padding: 0 15px;
}

.about-profile .about-profile-content table .td {
    padding: 5px 0;
    padding-left: 8px;
}

.about-profile .about-profile-content table td strong {
    font-size: 16px;
    font-weight: 500;
}

.about-area .about-profile .about-profile-content .artist-type {
    border-top: 1px solid var(--black-9);
    border-bottom: 1px solid var(--black-9);
    padding: 10px;
}


/* =================== right end ============== */


/* ========= comment section start ===========  */

.comment-area {
    margin-bottom: 50px;
}

.comment-area .comment-card {
    background-color: var(--white);
    box-shadow: 0 0 10px var(--shadow);
    border-radius: 3px;
    overflow: hidden;
    transition: all linear .2s;
}

.comment-area .comment-card:hover {
    box-shadow: 0 0 8px 4px var(--shadow);
}

.comment-area .comment-card .comment-content {
    padding: 40px;
}

.comment-area .comment-card .comment-content i {
    font-size: 30px;
    color: var(--main-color);
}

.comment-area .comment-card .comment-content p {
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
    margin: 15px 0;
}

.comment-area .comment-card .comment-content h3 {
    font-size: 20px;
    line-height: 26px;
    color: var(--black);
    margin-bottom: 0;
}

.comment-area .comment-card .comment-content span {
    font-size: 15px;
    line-height: 22px;
    color: var(--black-6);
}


/* ========== comment section end =============  */


/* ============================== comment  css  end =================================  */


/* ============================== index  css  strt =================================  */


/* ======== new slide section start ======== */


/* skills  skills-silde slick-initialized slick-slider slick-dotted */

.new-slide-area {
    margin-top: 70px;
    padding: 55px 0;
    /* background-color: var(--bg-color); */
}

.new-slide-area .new-slide {
    width: 100%;
    position: relative;
}

.new-slide-area .new-slide img {
    width: 100%;
}

.new-slide-area .new-slide .slide-corner-img {
    position: absolute;
    top: -10px;
    right: -15px;
    width: 10%;
    z-index: 999;
}

.new-slide-area .new-slide .arrow-1 {
    position: absolute;
    bottom: -10px;
    left: 200px;
    width: 8%;
}

.new-slide-area .new-slide .arrow-2 {
    position: absolute;
    bottom: -10px;
    right: 200px;
    width: 8%;
}


/* banner-btn  */

.new-slide-area .new-slide .banner-btn {
    position: absolute;
    left: 40%;
    bottom: -18px;
    z-index: 999;
}

.new-slide-area .new-slide .banner-btn .enroll-btn {
    margin-right: 60px;
}

.new-slide-area .new-slide .banner-btn .common-btn:hover {
    background-color: var(--white);
}

.new-slide-area .new-slide .skills-slide-area .skills-silde {
    width: 95%;
    height: 400px;
    background-color: transparent;
    padding: 65px 0;
    margin-top: 80px;
    position: absolute;
    top: -110px;
    left: 50%;
    transform: translate(-50%);
    border-radius: 10px;
}

.new-slide-area .new-slide .skills-slide-area .skills-card .skills-img {
    width: 100%;
    height: 300px;
    position: relative;
}

.new-slide-area .new-slide .skills-slide-area .skills-card .skills-img img {
    width: 1050px;
    height: 300px;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%);
}

.skills-slide-area .slick-slide {
    margin: 10px 0;
}

.slick-dots li button {
    display: none;
}


/* .new-year-area .slick-prev:before {
     background-color: var(--main-color);
     opacity: .95;
     left: -11px;
 }


 .new-year-area .new-year-heading h1,
 .new-year-area .new-year-heading p {
     color: var(--white);
 }

 .new-year-area .card {
     width: 100%;
     height: 260px;
     background-color: var(--white);
     box-shadow: 0 0 3px 0 var(--shadow);
     border-radius: 3px;
     overflow: hidden;
 }

 .new-year-area .card img {
     width: 100%;
     height: 100%;
 }

 .new-year-area .items {
     width: 90%;
     margin: 0px auto;
     margin-top: 100px;
 }

 .slick-slide {
     margin: 10px;
 } */


/* ========= new slide section end ======== */


/* ========== conuting section star =========== */

.counting-area {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 70px;
}

.counting-area .counting-icon {
    width: 100%;
    height: 100%;
    color: var(--black-2);
    padding: 50px 0;
}

.counting-area .counting-icon i {
    color: var(--main-color);
    font-size: 40px;
    margin: 10px 20px;
}

.counting-area .counting-count {
    color: var(--h2);
    font-family: 'Oxygen', sans-serif;
    text-align: center;
}

.counting-area .counting-count h2 {
    font-size: 25px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.counting-area .counting-count span {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 10px 0;
}


/* ========== counting section end ========== */


/* ====== chategory section start =======  */

.chategory-area {
    padding: 50px 0;
}

.chategory-area .chategory-card {
    width: 100%;
    padding: 30px;
    color: var(--black);
    background-color: var(--white);
    box-shadow: 0 0 3px 0 var(--shadow);
    border-radius: 3px;
    justify-content: space-between;
    transition: all linear .3s;
}

.chategory-area .chategory-card:hover {
    color: var(--main-color);
    box-shadow: 0 0 8px 0 var(--shadow);
}

.chategory-area .chategory-card .chategory-icon i {
    color: var(--main-color);
    font-size: 60px;
    margin: 20px 20px 0 0;
}

.chategory-area .chategory-card .chategory-content h2 {
    color: var(--black-2);
    font-size: 30px;
    line-height: 70px;
    margin: 20px 20px 0 0;
}

.chategory-area .chategory-card .chategory-content h2:hover {
    color: var(--main-color);
}

.chategory-area .chategory-card .chategory-arrow i {
    color: var(--main-color);
    font-size: 25px;
    margin-top: 35px;
}


/* ====== chategory section end =========  */


/* ====== crash-course section start =======  */

.crash-course-area {
    margin-bottom: 80px;
}


/* ====== crash-course section end =========  */


/* ======== admisson section start =========  */

.admisson-area {
    margin-bottom: 80px;
}


/* ====== admisson section end =========  */


/* ====== maximum section start ========  */

.maximum-area {
    margin-bottom: 80px;
}


/* ========= admisson section end ============  */


/* ============================== index  css  end =================================  */


/* ======================== admission destils css  start ===========================  */


/*===== admission-details start  =====*/

.admission-details-area {
    margin-top: 150px;
}


/*===== admission-details end  =====*/


/* ======================== admission destils css  end ===========================  */


/* ============================== all-art-details page start ========================= */


/*===== artwork img zoom section =========*/

.all-art-details-area {
    margin-top: 110px;
}


/* xzoom start  */

.xzoom-area .xzoom-thumbs {
    margin: 20px 0;
    text-align: start;
}

.xzoom-area .xzoom {
    width: 100%;
    height: 450px;
    object-fit: contain;
    box-shadow: 1px 4px 8px var(--shadow);
}

.xzoom-area .xzoom-gallery {
    border: 1px solid var(--shadow);
}

.xzoom-area .xzoom-gallery:hover {
    border: 1px solid var(--main-color);
    box-shadow: 1px 4px 8px var(--shadow);
}

.xzoom-area .xzoom-lens {
    cursor: zoom-in;
}


/* xzoom end  */


/*===== all-art-details-content =======*/

.all-art-details-area .all-art-details-header a {
    font-size: 28px;
    font-weight: 400;
    color: var(--black-3);
    letter-spacing: 2px;
    text-align: end;
}

.all-art-details-area .all-art-details-header p {
    font-size: 16px;
    font-weight: 400;
    color: var(--black-3);
    text-align: justify;
}

.all-art-details-area .all-art-details-content {
    justify-content: end;
}

.all-art-details-area .all-art-details-content h3 {
    font-size: 18px;
    font-weight: 400;
    color: var(--black-3);
    margin-top: 20px;
}

.all-art-details-area .all-art-details-content ul li {
    font-size: 16px;
    font-weight: 400;
    color: var(--black-6);
}

.all-art-details-area .all-art-details-content ul li span {
    font-size: 16px;
    font-weight: 400;
    color: var(--black-6);
}

.all-art-details-area .all-art-details-content .view-more {
    border-top: 1px solid var(--black-9);
}

.all-art-details-area .all-art-details-content .view-more .art-details-price {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: var(--black-3);
    margin: 15px 0;
}

.all-art-details-area .art-share a {
    font-size: 18px;
    font-weight: 500;
    color: var(--black-3);
    transition: all linear .3s;
}

.all-art-details-area .art-share a:hover {
    color: var(--main-color);
}

.all-art-details-area .product-option {
    margin-top: 5px;
}

.all-art-details-area .product-option .framing h6 {
    font-size: 25px;
    font-weight: 400;
    text-transform: capitalize;
    color: #000;
}

.all-art-details-area .product-option .framing .option {
    margin-top: 20px;
}

.all-art-details-area .product-option .framing .option button {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 10px 53px;
    outline: none;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    background-color: white;
}

.all-art-details-area .product-option .framing .option .no-frame {
    margin-left: -6px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    background-color: var(--main-color);
    color: white;
}

.all-art-details-area .product-option .medium {
    margin-top: 20px;
}

.all-art-details-area .product-option .medium h6 {
    font-size: 25px;
    font-weight: 400;
    text-transform: capitalize;
    color: #000;
}

.all-art-details-area .product-option .medium #input-zone {
    margin-top: 10px;
    border: 2px solid var(--main-color);
    font-size: 18px;
    color: #000;
    font-weight: 500;
    outline: none;
    padding: 10px 10px;
    width: 100%;
    border-radius: 6px;
}

.all-art-details-area .product-option .sizing .size {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.all-art-details-area .product-option .sizing .size h6 {
    font-size: 25px;
    font-weight: 400;
    text-transform: capitalize;
    color: #000;
}

.all-art-details-area .product-option .sizing #input-zone {
    margin-top: 10px;
    border: 2px solid var(--main-color);
    font-size: 18px;
    color: #000;
    font-weight: 500;
    outline: none;
    padding: 10px 10px;
    width: 100%;
    border-radius: 6px;
}

.all-art-details-area .product-option .classic-area .classic {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.all-art-details-area .product-option .classic-area .classic h6 {
    font-size: 25px;
    font-weight: 400;
    text-transform: capitalize;
    color: #000;
}

.all-art-details-area .product-option .classic-area .all-button {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.all-art-details-area .product-option .classic-area .all-button button {
    width: 35px;
    height: 35px;
    outline: none;
    border: 2px solid black;
}

.all-art-details-area .product-option .classic-area .all-button button img {
    width: 25px;
    height: 25px;
}


/* ========== about-the-work section start  =========== */

.about-work-area {
    margin-top: 20px;
}

.about-work-area .about-work {
    border-bottom: 1px solid var(--shadow);
    margin-bottom: 10px;
    padding: 10px 10px;
}

.about-work-area .about-work span {
    padding: 12px 0;
}

.about-work-area .about-work span a {
    font-size: 23px;
    line-height: 25px;
    color: var(--main-color);
}

.about-work-content {
    border: 1px solid var(--shadow);
    border-radius: 4px;
    padding: 15px;
    margin-top: 20px;
}

.about-work-area .about-work-content p {
    color: var(--black-6);
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    line-height: 30px;
    border-radius: 4px;
    /* padding: 15px; */
    margin: 10px 0;
}

.about-work-area .about-art-details .about-work-content h4 {
    font-size: 20px;
}

.about-work-area .about-work-details {
    height: 500px;
    box-shadow: 0 0 2px 2px var(--shadow);
}

.about-work-area .about-work-details .about-work-img {
    width: 150px;
    height: 150px;
    align-items: center;
    border-radius: 50%;
    margin-left: 90px;
    border: 5px solid var(--black-9);
    position: relative;
}

.about-work-area .about-work-details .about-work-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
}

.about-work-area .about-work-details a {
    text-align: center;
    color: #000;
}

.about-work-area .about-work-details h2 {
    color: var(--black-3);
    font-size: 24px;
    font-weight: 400;
    transition: all linear.3s;
}

.about-work-area .about-work-details h2:hover {
    color: var(--main-color);
}

.about-work-area .about-work-details p {
    text-align: center;
}

.about-art-work-top {
    border: 1px solid var(--shadow);
    border-radius: 4px;
    padding: 15px;
}

.about-work-area .about-art-details .about-art-work-top h4 {
    font-size: 20px;
}

.about-art-work-top ul {
    margin-bottom: 0;
}

.about-art-work-top .about-art-work-top-content {
    margin-right: 100px;
}

.about-work-area .about-information .about-profile-content .share-new {
    margin: 10px 0;
    margin-left: 60px;
}


/* about the work section end */


/* ============================== all-art-details page end ========================= */


/*=============================== all-course page end ================================*/


/* ====== skill silde section start ====== */

.skills-slide-area .skills-silde {
    width: 100%;
    height: 500px;
    background-color: var(--shadow);
    padding: 65px 0;
    margin-top: 80px;
}

.skills-slide-area .skills-silde .skills-slide-content {
    padding-right: 80px;
}

.skills-slide-area .skills-silde .skills-slide-content h2 {
    color: var(--white);
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    margin: 30px 0;
}

.skills-slide-area .skills-silde .skills-slide-content p {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-align: justify;
}

.skills-slide-area .skills-silde .skills-slide-content .skills-slide-btn {
    height: 60px;
    font-weight: 600;
}

.skills-slide-area .skills-card .skills-img {
    width: 100%;
    height: 350px;
}

.skills-slide-area .skills-card .skills-img img {
    width: 100%;
    height: 100%;
}

.skills-slide-area .slick-slide {
    margin: 10px 0;
}

.skills-slide-area .slick-dots li {
    margin: 0 3px;
}

.skills-slide-area .slick-dots li button::before {
    font-size: 45px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    opacity: .55;
    color: var(--main-color);
}

.skills-slide-area .slick-dots li.slick-active button::before {
    opacity: .90;
    color: var(--main-color);
}


/* ====== skill silde section end ======== */


/* =======skills-course section start====== */

.skills-course-area {
    margin-top: 50px;
}

.skills-course-area .skills-course-card {
    width: 250px;
    height: 180px;
    background-color: var(--white);
    box-shadow: 0 0 4px 0 var(--shadow);
    border-radius: 3px;
}

.skills-course-area .skills-course-card:hover {
    box-shadow: 0 0 10px 0 var(--shadow);
}

.skills-course-area .skills-course-card .skills-course-content {
    padding: 20px;
    text-align: center;
}

.skills-course-area .skills-course-card .skills-course-content i {
    color: var(--main-color);
    font-size: 40px;
    margin-bottom: 25px;
}

.skills-course-area .skills-course-card .skills-course-content h2 {
    display: inline-block;
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
    transition: all linear .2s;
}

.skills-course-area .skills-course-card .skills-course-content h2:hover {
    color: var(--main-color);
}

.skills-course-area .skills-course-card .skills-course-content span {
    color: var(--black-6);
    font-size: 15px;
    font-weight: 600;
}


/* ======= skills-course section  end ==========*/


/* skills section strat  */

.skills-area {
    margin-bottom: 50px;
}


/*======= popular section strat ======= */

.popular-area .popular-card {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 3px;
    box-shadow: 0 0 4px var(--shadow);
    overflow: hidden;
    cursor: pointer;
}

.popular-area .popular-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    opacity: 20%;
    transition: all linear .2s;
}

.popular-area .popular-card:hover {
    box-shadow: 0 0 7px var(--shadow);
    background-color: var(--main-color);
    opacity: 90%;
}

.popular-area .popular-card img {
    width: 100%;
    height: 100%;
}

.popular-area .popular-card .popular-content {
    position: absolute;
    bottom: -41px;
    left: 0px;
    text-align: center;
    width: 100%;
    height: 120px;
    transition: all 0.2s linear 0s;
}

.popular-area .popular-card:hover .popular-content {
    bottom: 25px;
}

.popular-area .popular-card .popular-content h2 {
    font-size: 26px;
    font-weight: 500;
    color: var(--white);
    /* margin-bottom: 25px; */
}

.popular-area .popular-card .popular-content p {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    /* margin-bottom: 25px; */
}

.popular-area .popular-card .popular-content .popular-details {
    position: absolute;
    width: 100%;
}

.popular-area .popular-card .popular-content .popular-details a button {
    font-size: 18px;
    color: var(--white);
    background-color: var(--main-color);
    border: none;
}


/*======= popular section end ========= */


/*============================= all-course page end ============================*/


/* =========================== art-about page start =========================== */


/* about section start  */

.about-area {
    margin-top: 110px;
}

.about-area .about-header h1 {
    color: var(--black-3);
    font-size: 40px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
}

.about-area .about-details h2 {
    color: var(--black-3);
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
}

.about-area .about-details p {
    color: var(--black-8);
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    text-align: justify;
    margin: 15px 0;
}

.about-area .about-details span {
    color: var(--black-8);
    font-size: 24px;
    font-weight: 400;
}

.about-area .about-details .share {
    color: var(--black-3);
    font-size: 24px;
    font-weight: 400;
    display: block;
    margin-bottom: 15px;
}

.about-area .about-details .about-share {
    width: 100%;
    height: 40px;
}


/*  
 .about-area .about-details .about-share ul {
     display: flex;
 }
 
 .about-area .about-details .about-share ul li {
     margin-right: 5px;
     transition: all linear .1s;
 }
 
 .about-area .about-details .about-share ul li:nth-child(1):hover {
     margin-top: -5px;
 }
 
 .about-area .about-details .about-share ul li:nth-child(2):hover {
     margin-top: -5px;
 }
 
 .about-area .about-details .about-share ul li:nth-child(3):hover {
     margin-top: -5px;
 }
 
 .about-area .about-details .about-share ul li:nth-child(4):hover {
     margin-top: -5px;
 }
 
 .about-area .about-details .about-share ul li:nth-child(5):hover {
     margin-top: -5px;
 }
 
 .about-area .about-details .about-share ul li:nth-child(6):hover {
     margin-top: -5px;
 }
 
 .about-area .about-details .about-share ul li:nth-child(7):hover {
     margin-top: -5px;
 }
 
 .about-area .about-details .about-share ul li a {
     color: var(--white);
     padding: 7px 10px;
     font-size: 13px;
     font-weight: 500;
     display: flex;
     border-radius: 4px;
     box-shadow: 0 0 4px var(--black);
 }
 
 .about-area .about-details .about-share span {
     color: var(--white);
     font-size: 13px;
     font-weight: 500;
 }
 
 .about-area .about-details .about-share a i {
     font-size: 16px;
     margin-right: 10px;
 }
 
 .about-area .about-details .about-share .facebook {
     background-color: var(--facebook);
 }
 
 .about-area .about-details .about-share .messenger {
     background-color: var(--messenger);
 }
 
 .about-area .about-details .about-share .whatsapp {
     background-color: var(--whatsapp);
 }
 
 .about-area .about-details .about-share .gmail {
     background-color: var(--gmail);
 }
 
 .about-area .about-details .about-share .linkedin {
     background-color: var(--linkdin);
 }
 
 .about-area .about-details .about-share .twitter {
     background-color: var(--twitter);
 }
 
 .about-area .about-details .about-share .pinterest {
     background-color: var(--pinterest);
 } */


/* ======== about section end ==============  */


/* ============================== art-about page  end ============================== */


/* =============== artist-category page start ================*/


/* category start  */

.artist-category-area {
    margin-top: 110px;
}

.index-artist {
    margin-top: 40px;
}

.artist-category-area .artist-category-group {
    border-radius: 5px;
    overflow: hidden;
}

.artist-category-area .artist-category-group span {
    font-size: 15px;
    line-height: 20px;
}

.artist-category-area .items {
    padding: 10px 13px 10px;
    background-color: var(--white);
}

.artist-category-area label {
    display: block;
    margin-bottom: 10px;
}

.artist-category-area .accordion-button:not(.collapsed) {
    color: var(--main-color);
    background-color: transparent;
    box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0 var(--bs-accordion-border-color);
}

.accordion-button:not(.collapsed)::after {
    color: var(--main-color);
    transform: var(--transparent);
}

.artist-category-area .accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    box-shadow: transparent;
    outline: none;
    border: none;
}

.artist-category-area .accordion-button {
    border: none;
    outline: none;
}


/* category search  */

.artist-category-area .accordion-body .items .category-search {
    padding: 6px 10px;
    width: 100%;
    outline: none;
    border-radius: 3px;
    border: 1px solid #961414;
}

.artist-category-area .accordion-body .items .category-search:focus {
    outline: .5px solid var(--bs-accordion-btn-focus-border-color);
    border: 1px solid transparent;
}


/* category search  */

.artist-category-area .top-search {
    position: relative;
    border-radius: 15px;
    border: 2px solid var(--main-color);
    padding: 5px 6px;
    -webkit-text-fill-color: var(--black-6);
    background-color: var(--white);
}

.artist-category-area .top-search .search-bar {
    border: none;
    outline: none;
    width: 100%;
    border-radius: 15px;
}

.artist-category-area .top-search i {
    position: absolute;
    right: 10px;
    top: 10px;
}

.artist-category-area .accordion-button {
    width: 100%;
    padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
    font-size: 18px;
    color: var(--bs-accordion-btn-color);
}

.artist-category-area .accordion {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-focus-border-color: #86b7fe;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem none;
    --bs-accordion-active-color: #000;
}


/* right  */

.artist-category-area .art-category {
    box-shadow: 0 0 13px 2px var(--shadow);
    background-color: var(--white);
    border-radius: 4px;
    padding: 20px 10px;
}

.artist-category-area .art-category .text {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.artist-category-area .art-category .text .textt samp {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-2);
    text-transform: capitalize;
}

.artist-category-area .art-category .text .textt span {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-2);
    text-transform: capitalize;
}

.artist-category-area .art-category .text .textt .digit-3 {
    padding-left: 9px;
}

.artist-category-area .art-category .art-category-description {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background-color: var(--main-color);
    position: relative;
    margin: 0 auto;
}

.artist-category-area .art-category .art-category-description img {
    position: absolute;
    top: 0;
    left: 0;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 2px solid var(--main-color);
}

.artist-category-area .art-category h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--black-2);
    padding-top: 20px;
    text-align: center;
}

.artist-category-area .art-category h4:hover {
    color: var(--main-color);
}

.artist-category-area .art-category p {
    font-size: 18px;
    font-size: 600;
    color: var(--black-2);
    margin-bottom: 15px;
    text-align: center;
}

.artist-category-area .art-category span {
    font-size: 16px;
    color: var(--black-6);
    line-height: 1px;
}

.artist-category-area .art-category .View-button button {
    background-color: var(--main-color);
    border: 2px solid transparent;
    border-radius: 4px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    outline: none;
    cursor: pointer;
    padding: 3px 5px;
    transition: all linear .2s;
    margin-top: 18px;
}

.artist-category-area .art-category .View-button button:hover {
    color: var(--main-color);
    border: 2px solid var(--main-color);
    background-color: transparent;
}

.artist-category-area .art-category .View-button-1024 {
    margin: 0 auto;
}

.artist-category-area .art-category .View-button-1024 button {
    background-color: var(--main-color);
    border: 2px solid transparent;
    border-radius: 4px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    outline: none;
    cursor: pointer;
    padding: 3px 6px;
    transition: all linear .2s;
    display: none;
}

.artist-category-area .art-category .View-button-1024 button:hover {
    color: var(--main-color);
    border: 2px solid var(--main-color);
    background-color: transparent;
}

.artist-category-area .art-category .art-category-img {
    height: 210px;
}


/* ==== pagination-start ==== */

.pagination {
    width: 100%;
    background-color: var(--main-color);
    border-radius: 4px;
}

.pagination ul {
    display: flex;
    margin: 0 auto;
}

.pagination ul li {
    padding: 6px;
}

.pagination ul li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    text-transform: capitalize;
    border: 1px solid var(--main-color);
    box-shadow: 0 0 5px 1px var(--shadow);
    padding: 2px 10px;
    border-radius: 4px;
}


/* ==== pagination-end ==== */


/* ================= artist-category page end ==================*/


/* ================== artwork-collect page start ============== */

.artwork-collect-area {
    margin-top: 130px;
}

.artwork-collect-area .clear-all {
    text-align: end;
}

.artwork-collect-area .clear-all a {
    color: var(--black);
    font-size: 18px;
    transition: all linear .3s;
}

.artwork-collect-area .clear-all a:hover {
    color: var(--main-color);
}

.artwork-collect-area .artist-category-group {
    border-radius: 5px;
    overflow: hidden;
}

.artwork-collect-area .artist-category-group span {
    font-size: 15px;
    line-height: 20px;
}

.artist-category-area .items {
    padding: 10px 13px 10px;
    background-color: var(--white);
}

.artwork-collect-area label {
    display: block;
    margin-bottom: 10px;
}

.artwork-collect-area .accordion-item {
    margin-top: 5px;
}

.artwork-collect-area .accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: transparent;
    box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0 var(--bs-accordion-border-color);
}

.artwork-collect-area .accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    box-shadow: transparent;
    outline: none;
    border: none;
}

.artwork-collect-area .accordion-button {
    border: none;
    outline: none;
}


/* category search  */

.artwork-collect-area .accordion-body .items .category-search {
    padding: 6px 10px;
    width: 100%;
    outline: none;
    border-radius: 3px;
    border: 1px solid var(--black-3);
}

.artwork-collect-area .accordion-body .items .category-search:focus {
    outline: .5px solid var(--outline);
    border: 1px solid transparent;
}


/*  search  */

.artwork-collect-area .top-search {
    position: relative;
    border-radius: 15px;
    border: 2px solid var(--main-color);
    padding: 5px 6px;
    -webkit-text-fill-color: var(--black-6);
    background-color: var(--white);
}

.artwork-collect-area .top-search .search-bar {
    border: none;
    outline: none;
    width: 100%;
    border-radius: 15px;
}

.artwork-collect-area .top-search i {
    position: absolute;
    right: 10px;
    top: 10px;
}

.artwork-collect-area.accordion-button {
    width: 100%;
    padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
    font-size: 18px;
    color: var(--bs-accordion-btn-color);
}

.artwork-collect-area .accordion {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-focus-border-color: #86b7fe;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem none;
    --bs-accordion-active-color: #000;
}


/* top category  */

.artwork-collect-area .top-category-header {
    padding: 0;
}

.artwork-collect-area .accordion-body .top-category-img {
    width: 100%;
    height: 130px;
}

.artwork-collect-area .accordion-body .top-category-img img {
    width: 100%;
    height: 100%;
}

.artwork-collect-area .accordion-body .top-category-content {
    display: flex;
    justify-content: space-between;
    margin: 20px 5px;
}

.artwork-collect-area .accordion-body .top-category-content .top-category-art a {
    text-transform: uppercase;
    color: var(--black-3);
    font-size: 18px;
    transition: all linear .3s;
}

.artwork-collect-area .accordion-body .top-category-content .top-category-art a:hover {
    color: var(--main-color);
}

.artwork-collect-area .accordion-body .top-category-content .top-category-follow a {
    color: var(--white);
    font-size: 16px;
    background-color: var(--black);
    padding: 10px 15px;
    border-radius: 3px;
    transition: all linear .3s;
}

.artwork-collect-area .accordion-body .top-category-content .top-category-follow a:hover {
    background-color: var(--main-color);
}


/* right  */

.artwork-collect-area .art-category {
    box-shadow: 0 0 13px 2px var(--shadow);
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
}

.artwork-collect-area .art-category .art-category-img {
    height: 210px;
    padding: 30px;
    border: 2px solid var(--main-color);
}

.artwork-collect-area .art-category .art-category-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.artwork-collect-area .art-category .art-work-content {
    padding: 20px 10px;
}

.artwork-collect-area .art-category .art-work-content .a {
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    transition: all linear .2s;
}

.artwork-collect-area .art-category .art-work-content .a:hover {
    color: var(--main-color);
}

.artwork-collect-area .art-category .art-work-content p {
    font-size: 16px;
    color: var(--black-6);
    margin-bottom: 0;
}

.artwork-collect-area .art-category .art-work-content .art-work-content-btn {
    display: flex;
    justify-content: space-between;
}

.artwork-collect-area .art-category .art-work-content .art-work-content-btn .art-btn {
    padding: 0px 20px;
    font-size: 14px;
    margin-top: 10px;
    background-color: var(--main-color);
    border: 2px solid transparent;
    border-radius: 4px;
    color: var(--white);
    text-align: center;
    outline: none;
    cursor: pointer;
    transition: all linear .2s;
}

.artwork-collect-area .art-category .art-work-content .art-work-content-btn .art-btn:hover {
    color: var(--main-color);
    border: 2px solid var(--main-color);
    background-color: transparent;
    box-shadow: 1px 1px var(--shadow);
}

.artwork-collect-area .art-category .art-work-content .art-work-content-btn span {
    font-size: 20px;
    font-weight: 600;
    color: var(--black-2);
    margin-top: 17px;
}


/* ======================= artwork-collect page end ========================== */


/* ============================ blog  page start =============================== */


/* -======== Recent News section start ====== */

.recent-news-area {
    margin-top: 120px;
}

.recent-news-area .recent-news-heading {
    width: 100%;
    text-align: center;
}

.recent-news-area .recent-news-wraper .top-search {
    position: relative;
    border-radius: 15px;
    border: 2px solid var(--main-color);
    padding: 5px 6px;
    -webkit-text-fill-color: var(--black-6);
    background-color: var(--white);
}

.recent-news-area .recent-news-wraper .top-search .search-bar {
    border: none;
    outline: none;
    width: 100%;
    border-radius: 15px;
}

.recent-news-area .recent-news-wraper .top-search i {
    position: absolute;
    right: 10px;
    top: 10px;
}

.recent-news-area .recent-news-wraper .artist-category-group {
    border-radius: 5px;
    overflow: hidden;
}

.recent-news-area .recent-news-wraper .artist-category-group span {
    font-size: 15px;
    line-height: 20px;
}

.recent-news-area .recent-news-wraper .items {
    padding: 10px 13px 10px;
    background-color: var(--white);
}

.recent-news-area .recent-news-wraper label {
    display: block;
    margin-bottom: 10px;
}

.recent-news-area .recent-news-wraper .accordion-item {
    margin-top: 5px;
    background-color: var(--white);
    box-shadow: 0 0 1px 1px var(--shadow);
    border-radius: 5px;
}

.recent-news-area .recent-news-wraper .accordion-item h5 {
    padding-bottom: 5px;
    font-size: 20px;
    color: var(--black);
}

.recent-news-area .recent-news-wraper .accordion-item .filter {
    height: 250px;
    overflow: auto;
}

.recent-news-area .recent-news-wraper .accordion-button:not(.collapsed) {
    color: var(--black-2);
    font-size: 20px;
    font-weight: 700;
    background-color: transparent;
    box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0 var(--bs-accordion-border-color);
}

.recent-news-area .recent-news-wraper .accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    box-shadow: transparent;
    outline: none;
    border: none;
}

.recent-news-area .recent-news-wraper .accordion-button {
    border: none;
    outline: none;
}

.recent-news-area .recent-news-wraper .books-price h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--black-2);
    margin-bottom: 20px;
}

.recent-news-area .recent-news-wraper .books-price .price-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.recent-news-area .recent-news-wraper .books-price label {
    font-size: 18px;
    font-weight: 700;
}

.recent-news-area .recent-news-wraper .books-price p {
    font-size: 18px;
    font-weight: 700;
}

.recent-news-area .recent-news-wraper .books-price .range-slider {
    position: relative;
    margin: 15px 0 30px 0;
}

.recent-news-area .recent-news-wraper .books-price .range-fill {
    height: 6px;
    background-color: var(--main-color);
    position: absolute;
    z-index: 1;
}

.recent-news-area .recent-news-wraper .books-price input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    position: absolute;
    left: 0;
}

.recent-news-area .recent-news-wraper .books-price input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: var(--main-color);
    cursor: pointer;
    margin-top: -5px;
    position: relative;
    z-index: 1;
}

.recent-news-area .recent-news-wraper .books-price input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    background: var(--main-color);
    border-radius: 3px;
    border: none;
}

.recent-news-area .recent-news-wraper .rate i {
    font-size: 16px;
    color: #e4d500;
}

.recent-news-area .best-instuctor-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 8px var(--shadow);
}

.recent-news-area .best-instuctor-card .instuctor-content {
    text-align: start;
    margin-top: 10px;
}

.recent-news-area .best-instuctor-card .instuctor-img {
    width: 100%;
    height: 200px;
}

.recent-news-area .best-instuctor-card .instuctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-news-area .best-instuctor-card .instuctor-content span {
    font-family: 'Poppins', sans-serif;
    font-weight: var(--font-bold);
    font-size: 24px;
    color: var(--black);
    line-height: 31px;
}

.recent-news-area .best-instuctor-card .instuctor-content span:hover {
    color: var(--main-color);
}

.recent-news-area .best-instuctor-card .instuctor-content .text {
    font-family: 'Poppins', sans-serif;
    font-weight: var(--font-semi-bold);
    font-size: 16px;
    line-height: 28px;
    margin: 10px 0;
}

.recent-news-area .best-instuctor-card .recent-news-btn {
    text-align: center;
    border-top: 1px solid var(--shadow);
    padding-top: 25px;
}


/* blog-pagination  */

.blog-pagination .gallery-items {
    display: flex;
    flex-flow: row wrap;
    position: relative;
}

.blog-pagination .gallery-items .item {
    position: relative;
    width: calc(100% / 3 - 20px);
    margin: 10px;
}

.blog-pagination .gallery-items .item.hide {
    display: none;
}

.blog-pagination .gallery-items .item.show {
    display: block;
    animation: show .5s ease;
}

@keyframes show {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.blog-pagination .pagination-btn {
    width: 100%;
    padding: 15px;
    text-align: center;
}

.blog-pagination .pagination-btn div {
    display: inline-block;
    margin: 0 10px;
}

.blog-pagination .pagination-btn .page {
    font-size: 14px;
    font-weight: var(--font-semi-bold);
    color: var(--main-color);
}

.blog-pagination .pagination-btn .prev,
.blog-pagination .pagination-btn .next {
    color: var(--main-color);
    border: 1px solid var(--main-color);
    background-color: transparent;
    font-size: 15px;
    padding: 7px 15px;
    cursor: pointer;
}

.blog-pagination .pagination-btn .prev.disabled,
.blog-pagination .pagination-btn .next.disabled {
    border-color: var(--main-color);
    color: var(--white);
    pointer-events: none;
    background-color: var(--main-color);
}


/* blog-details-pagination  */

.blog-details-pagination .gallery-items {
    display: flex;
    flex-flow: row wrap;
    position: relative;
}

.blog-details-pagination .gallery-items .item {
    position: relative;
    width: calc(100% / 4 - 20px);
    margin: 10px;
}

.blog-details-pagination .gallery-items .item.hide {
    display: none;
}

.blog-details-pagination .gallery-items .item.show {
    display: block;
    animation: show .5s ease;
}

@keyframes show {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.blog-details-pagination .pagination-btn {
    width: 100%;
    padding: 15px;
    text-align: center;
}

.blog-details-pagination .pagination-btn div {
    display: inline-block;
    margin: 0 10px;
}

.blog-details-pagination .pagination-btn .page {
    font-size: 14px;
    font-weight: var(--font-semi-bold);
    color: var(--main-color);
}

.blog-details-pagination .pagination-btn .prev,
.blog-details-pagination .pagination-btn .next {
    color: var(--main-color);
    border: 1px solid var(--main-color);
    background-color: transparent;
    font-size: 15px;
    padding: 7px 15px;
    cursor: pointer;
}

.blog-details-pagination .pagination-btn .prev.disabled,
.blog-details-pagination .pagination-btn .next.disabled {
    border-color: var(--main-color);
    color: var(--white);
    pointer-events: none;
    background-color: var(--main-color);
}


/* -======== Recent News section end ====== */


/* ======= subscribe section star====== */

.subscribe-area {
    margin-top: 60px;
    background-color: var(--aqua-light);
}

.subscribe-area .section-heading {
    width: 100%;
    text-align: start;
}

.subscribe-area .subscribe-wrapper {
    padding: 100px 0;
}

.subscribe-area .subscribe-wrapper .subscribe-img {
    position: relative;
    height: 330px;
    width: 100%;
    padding: 30px;
    border: 1px solid var(--main-color);
    border-radius: 70px;
}

.subscribe-area .subscribe-wrapper .subscribe-img .subscribe-big-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.subscribe-area .subscribe-wrapper .subscribe-img .subscribe-big-img {
    width: 100%;
    height: 280px;
}

.subscribe-area .subscribe-img .subscribe-small-img .small-img-1 {
    position: absolute;
    top: -20px;
    right: -46px;
    width: 130px;
    height: 80px;
}

.subscribe-area .subscribe-img .subscribe-small-img .small-img-2 {
    position: absolute;
    bottom: 25px;
    right: -17px;
    width: 50px;
    height: 50px;
}

.subscribe-area .subscribe-img .subscribe-small-img .small-img-3 {
    position: absolute;
    top: 26px;
    left: -32px;
    width: 40px;
    height: 40px;
}

.subscribe-area .subscribe-wrapper .join-world-heading {
    margin: 0;
    font-size: 10px;
}

.subscribe-area .subscribe-wrapper .join-world-heading p {
    font-weight: var(--font-normal);
    font-size: 30px;
    margin-top: 30px;
}

.subscribe-area .subscribe-wrapper .subscribe-content {
    padding-left: 70px;
}

.subscribe-content .subscribe-heading {
    margin: 0;
}

.subscribe-content form {
    display: flex;
    justify-content: space-between;
    height: 60px;
    margin-top: 60px;
}

.subscribe-content input {
    width: 380px;
    height: 60px;
    font-weight: var(--font-semi-bold);
    font-size: 18px;
    color: var(--black-2);
    background-color: var(--white);
    outline: none;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    padding: 0 10px;
}

.subscribe-content input::placeholder {
    color: var(--black-2);
    font-size: 18px;
}

.subscribe-content input:focus {
    border-color: var(--green);
}


/* ======= subscribe section end ==== */


/* ============================ blog  page start =============================== */


/* ============================== blog-category  css  strt =================================  */

.recent-news-area .recent-news-wraper .about-details h2 {
    color: var(--black-3);
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
}

.recent-news-area .recent-news-wraper .about-details p {
    color: var(--black-8);
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    text-align: justify;
    margin: 15px 0;
}

.recent-news-area .recent-news-wraper .about-details span {
    color: var(--black-8);
    font-size: 24px;
    font-weight: 400;
}

.recent-news-area .recent-news-wraper .about-category-group {
    border-radius: 5px;
}

.recent-news-area .recent-news-wraper .about-category-group .accordion-button {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    border: none;
    outline: none;
}

.recent-news-area .recent-news-wraper .about-category-group .items {
    background-color: var(--white);
}

.recent-news-area .recent-news-wraper .about-category-group .items .top-category-img {
    margin-left: -13px;
}

.recent-news-area .recent-news-wraper .about-category-group .items .top-category-img a img {
    width: 106%;
}

.recent-news-area .recent-news-wraper .about-category-group .items .top-category-content a {
    font-size: 16px;
    color: #000;
}

.blog-category-area {
    margin-top: 30px;
}


/* ============================== blog-category  css  end =================================  */


/* ============================ blog details page start =============================== */


/* ======= blog details section start ========== */

.blog-details-area .container {
    width: 1300px;
    margin: 0 auto;
}

.blog-details-area .heading-2 {
    width: 100%;
    text-align: start;
    margin: 10px 0;
}

.blog-details-area {
    margin-top: 120px;
}

.blog-details-heading h2 {
    font-family: 'Oxygen', sans-serif;
    font-size: 32px;
    color: var(--black);
}

.blog-details-area .sub-heading {
    margin: 20px 0;
}

.blog-details-area .sub-heading p {
    font-family: 'Poppins', sans-serif;
    font-weight: var(--font-bold);
    font-size: 24px;
    color: var(--main-color);
    display: block;
    text-align: start;
}

.blog-details-area .author {
    margin-right: 30px;
}

.blog-details-area .blog-details-wraper .blog-details-top {
    border-radius: 5px;
    margin-bottom: 40px;
    padding: 10px;
}

.blog-details-area .blog-details-wraper .blog-details-top .blog-details-img {
    height: 610px;
    box-shadow: 0 0 8px var(--shadow);
}

.blog-details-area .blog-details-wraper .blog-details-top .blog-details-img img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.blog-details-area .blog-details-wraper .blog-details-top .blog-content-heading {
    text-align: center;
    margin: 30px 0;
}

.blog-details-area .blog-details-content .text {
    font-family: 'Poppins', sans-serif;
    font-weight: var(--font-normal);
    font-size: 18px;
    text-align: justify;
    color: var(--black);
    line-height: 30px;
    margin-bottom: 20px;
}

.blog-details-area .blog-details-content ul {
    padding: 0 40px;
}

.blog-details-area .blog-details-content ul li {
    font-family: 'Poppins', sans-serif;
    font-weight: var(--font-normal);
    font-size: 18px;
    text-align: justify;
    color: var(--black);
    line-height: 30px;
    margin-top: 10px;
    list-style: disc;
}

.blog-details-area .blog-details-content ul li {
    font-family: 'Poppins', sans-serif;
    font-weight: var(--font-normal);
    font-size: 18px;
    text-align: justify;
    color: var(--black);
    line-height: 30px;
    margin-top: 10px;
    list-style: disc;
}

.blog-details-area .blog-details-bottom .blog-details-bottom-wraper {
    margin-bottom: 80px;
}

.blog-details-area .blog-bottom-content .bottom-content-heading h2 {
    display: inline-block;
    font-family: 'Oxygen', sans-serif;
    font-size: 18px;
    font-weight: var(--font-bold);
    color: var(--main-color);
    cursor: pointer;
}

.blog-details-area .blog-bottom-content .coaching .text {
    font-family: 'Poppins', sans-serif;
    font-weight: var(--font-normal);
    font-size: 18px;
    text-align: justify;
    color: var(--black);
    line-height: 28px;
}

.blog-details-area .details-bottom-img {
    width: 100%;
    height: 380px;
    border-radius: 10px;
    box-shadow: 0 0 8px var(--shadow);
    border: 20px solid var(--white);
}

.blog-details-area .details-bottom-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ========= blog details section end ============ */

.blog-card .text {
    width: 100%;
    height: 200px;
    background-color: var(--main-color);
}


/* card-right start */

.blog-details-area .card-right .card-right-img {
    width: 65px;
    height: 60px;
}

.blog-details-area .card-right .card-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details-area .card-right .card-right-header h3 {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    margin: 10px 0;
    text-align: start;
}

.blog-details-area .card-right-bottom {
    display: flex;
    border-top: 1px solid var(--shadow);
    padding: 10px 0;
}

.blog-details-area .card-right .card-right-content {
    padding: 0 10px;
}

.blog-details-area .card-right .card-right-content a {
    color: var(--main-color);
}

.blog-details-area .card-right .card-right-content a:hover {
    color: var(--main-color);
}

.blog-details-area .card-right .card-right-content h4 {
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    transition: all linear .3s;
}

.blog-details-area .card-right .card-right-content .product-price .product-price-new {
    color: var(--black);
    line-height: 22px;
    font-size: 15px;
    font-weight: var(--font-bold);
}

.blog-details-area .card-right .card-right-content .product-price .product-price-old {
    color: var(--main-color);
    font-size: 12px;
    font-weight: 600;
    text-decoration: line-through;
    padding-left: 5px;
}

.blog-details-category {
    margin-top: 13px;
}


/* ========= select-course section start ============ */

.blog-details-area .select-course-area {
    margin-top: 120px;
}

.blog-details-area .select-course-area .hello-info .text {
    font-size: 30px;
    margin: 22px 8px;
}

.blog-details-area .select-course-area .hello-info .text span {
    font-family: var(--font-family-Public);
    font-weight: var(--font-bold);
    font-size: 18px;
    color: var(--black);
}


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

.blog-details-area .subscribe {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.blog-details-area .footer-btn {
    margin-top: 30px;
}

.blog-details-area .subscribe input {
    width: 100%;
    height: 45px;
    color: var(--black);
    outline: none;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    padding: 0 10px;
}

.blog-details-area .subscribe input::placeholder {
    font-family: var(--font-family-inter);
    font-weight: var(--font-semi-bold);
    font-size: 14px;
    color: var(--gray-2);
}

.blog-details-area .subscribe button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-color: var(--main-color);
    padding: 0 15px;
    border: none;
}

.blog-details-area .subscribe button i {
    color: var(--white);
    font-size: 20px;
    line-height: 30px;
}


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


/* according start  */

.blog-details-area .select-category-group {
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10%;
}

.blog-details-area .accordion-body {
    padding: 10px;
    border: 0;
}

.blog-details-area .select-category-group span {
    color: var(--black);
    font-size: 15px;
    line-height: 20px;
}

.blog-details-area .items {
    background-color: var(--white);
}

.blog-details-area label {
    display: block;
    margin-bottom: 10px;
}

.blog-details-area .accordion-item {
    margin-top: 5px;
}

.blog-details-area .accordion-button:not(.collapsed) {
    font-size: 20px;
    font-weight: var(--font-bold);
    color: var(--main-color);
    background-color: transparent;
    box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0 var(--bs-accordion-border-color);
}

.blog-details-area .accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    box-shadow: transparent;
    outline: none;
    border: none;
}

.blog-details-area .accordion-button {
    border: none;
    outline: none;
}


/* category search  */

.blog-details-area .accordion-body .items .select-according-course {
    display: flex;
    justify-content: space-between;
}

.blog-details-area .accordion-body .items .category-search {
    padding: 6px 10px;
    width: 100%;
    outline: none;
    border-radius: 3px;
    border: 1px solid #333;
}

.blog-details-area .accordion-body .items .category-search:focus {
    outline: .5px solid var(--bs-accordion-btn-focus-border-color);
    border: 1px solid transparent;
}

.blog-details-area .accordion-button {
    width: 100%;
    padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
    font-size: 20px;
    color: var(--bs-accordion-btn-color);
    font-weight: var(--font-bold);
}

.blog-details-area .accordion {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-focus-border-color: #86b7fe;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem none;
    --bs-accordion-active-color: #000;
}


/* according-end  */


/* -======= social-media section start ===== */

.social-media-area {
    margin-top: 40px;
}

.social-media-heading {
    width: 100%;
    text-align: start
}

.social-icons li a i,
.social-icons i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 0 8px var(--light-gray);
    transition: all 0.3s linear 0s;
    margin-top: 20px;
    margin-right: 6px;
}

.social-media-area .social-icons li a i:hover {
    color: var(--white);
    background-color: var(--main-color);
    box-shadow: 0 0 15px var(--shadow);
}


/* -=========== social-media-area section end ========= */


/* ============================ blog details page end =============================== */


/* ========================== book-category page start ========================== */


/* category start  */

.book-category-area {
    margin-top: 120px;
}


/* category search  */

.book-category-area .top-search {
    position: relative;
    border-radius: 15px;
    border: 2px solid var(--main-color);
    padding: 5px 6px;
    -webkit-text-fill-color: var(--black-6);
    background-color: var(--white);
}

.book-category-area .top-search .search-bar {
    border: none;
    outline: none;
    width: 100%;
    border-radius: 15px;
}

.book-category-area .top-search i {
    position: absolute;
    right: 10px;
    top: 10px;
}


/* country search  */

.book-category-area .clear-all {
    text-align: end;
}

.book-category-area .clear-all a {
    color: var(--black);
    font-size: 18px;
    transition: all linear .3s;
}

.book-category-area .clear-all a:hover {
    color: var(--main-color);
}

.book-category-area .artist-category-group {
    border-radius: 5px;
    overflow: hidden;
}

.book-category-area .artist-category-group span {
    font-size: 15px;
    line-height: 20px;
}

.book-category-area .items {
    padding: 10px 13px 10px;
    background-color: var(--white);
}

.book-category-area label {
    display: block;
    margin-bottom: 10px;
}

.book-category-area .accordion-item {
    margin-top: 5px;
}

.book-category-area .accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: transparent;
    box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0 var(--bs-accordion-border-color);
}

.book-category-area .accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    box-shadow: transparent;
    outline: none;
    border: none;
}

.book-category-area .accordion-button {
    border: none;
    outline: none;
}

.book-category-area .accordion-body .items .country-search {
    padding: 6px 10px;
    width: 100%;
    outline: none;
    border-radius: 3px;
    border: 1px solid var(--shadow);
}

.book-category-area .accordion-body .items .country-search:focus {
    border: 1px solid var(--main-color);
}

.book-category-area .accordion-button {
    width: 100%;
    padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
    font-size: 18px;
    color: var(--bs-accordion-btn-color);
}

.book-category-area .accordion {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-focus-border-color: #86b7fe;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem none;
    --bs-accordion-active-color: #000;
}


/* right  */

.book-category-area .book-category-card {
    background-color: var(--white);
    box-shadow: 0 0 3px 0 var(--shadow);
    border-radius: 3px;
    overflow: hidden;
    transition: all linear .2s;
}

.book-category-area .book-category-card:hover {
    box-shadow: 0 0 8px 0 var(--shadow);
}

.book-category-area .book-category-card .book-category-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.book-category-area .book-category-card .book-category-img img {
    width: 100%;
    height: 100%;
    padding: 20px 10px;
    object-fit: contain;
    transition: all linear .2s;
}

.book-category-area .book-category-card .book-category-content {
    border-top: 1px solid var(--shadow);
    /* text-align: center; */
}

.book-category-area .book-category-card .book-category-content a h2 {
    margin-bottom: 0;
}


/* =============================== book-category page end =============================*/


/* =================================== book-card page start ======================================= */


/* slider next-pre start */

.customer-also-area .slick-next:before {
    content: url(../images/angle-left.svg);
    right: -20px;
}

.customer-also-area .slick-prev:before {
    content: url(../images/angle-left.svg);
    left: -20px;
}


/* slider next-pre end */


/* =========== card section end =========== */

.card-area {
    background-color: var(--white);
    margin-top: 120px;
}


/* ========= image zoom============ */

.card-area .piclist {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card-area .piclist li {
    margin-top: 15px;
    width: 65px;
    height: 65px;
}

.card-area .piclist li img {
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px var(--shadow);
    border-radius: 3px;
    object-fit: contain;
    cursor: pointer;
}

.card-area .picZoomer {
    position: relative;
    width: 100%;
    border-radius: 3px;
    border: 1px solid var(--shadow);
}

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

.card-area .picZoomer-pic-wp,
.card-area .picZoomer-zoom-wp {
    border: 1px solid var(--white-2);
    height: 350px;
    padding: 25px;
}


/* ========== image zoom =========== */

.card-area .card-content h2 {
    color: var(--main-color);
    font-size: 25px;
    font-weight: 400;
    margin: 8px 0px;
}

.card-area .card-content .card-menu {
    flex-wrap: wrap;
}

.card-area .card-content .card-menu li {
    color: var(--black-3);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    padding: 0;
}

.card-area .card-content .card-menu li span {
    font-size: 16px;
}

.card-area .card-content .card-menu li span a {
    color: var(--main-color);
}

.card-area .card-content .card-info {
    display: flex;
    margin: 10px 0;
}

.card-area .card-content .card-info li {
    color: var(--main-color);
    margin-right: 5px;
}

.card-area .card-content .card-price {
    margin: 10px 0;
}

.card-area .card-content .card-price li {
    font-weight: 700;
    font-size: 20px;
    color: var(--black);
    margin-right: 10px;
}

.card-area .card-content .card-price .discount {
    color: var(--black-6);
    text-decoration: line-through;
}

.card-area .card-content .card-price .save {
    font-weight: 400;
    font-size: 16px;
    color: var(--black-6);
    line-height: 28px;
}

.card-area .card-content .cart-share li {
    font-size: 16px;
    font-weight: 400;
    margin: 10px 0;
}

.card-area .card-content .cart-share li a {
    color: var(--black);
    font-size: 16px;
    margin-right: 20px;
    transition: all linear .2s;
}

.card-area .card-content .cart-share li a:hover {
    color: var(--main-color);
    text-decoration: underline;
}

.card-area .card-content .cart-share li i {
    margin-right: 4px;
}


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

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

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

.card-area .queantity .queantity-count {
    margin-right: 20px;
    display: flex;
}

.card-area .queantity .queantity-count input {
    width: 45px;
    outline: none;
    padding: 28px 7px;
}

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

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

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


/* ====== buy now btn start ======= */

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

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

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

.buy-now-cart {
    width: 900px;
    background-color: var(--white);
    position: fixed;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: all linear -1s;
}

.showcart {
    top: 50%;
}

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


/* popup end */

.buy-now-cart .buy-now-datails {
    padding: 30px;
}

.buy-now-cart .buy-now-datails .buy-now-content .cart-document {
    margin: 0 15px;
}

.buy-now-cart .buy-now-datails .buy-now-content .cart-document p {
    width: 600px;
    color: var(--black-2);
    margin-top: 20px;
    line-height: 25px;
    font-size: 17px;
}

.buy-now-cart .buy-now-datails .buy-now-content .cart-document a {
    font-size: 16px;
    font-weight: 400;
    color: var(--main-color);
    text-transform: uppercase;
}

.buy-now-cart .buy-now-datails .buy-now-content .cart-document a:hover {
    color: var(--main-color);
    text-decoration: underline;
}

.buy-now-cart .buy-now-datails .buy-now-content .cart-info {
    flex: 0 0 180px;
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--shadow);
    position: relative;
}

.buy-now-cart .buy-now-datails .cart-info .cart-quantity {
    border-bottom: 1px solid var(--shadow);
    margin-bottom: 5px;
}

.buy-now-cart .buy-now-datails .cart-info>span {
    padding: 0 0 5px;
    display: flex;
    justify-content: space-between;
    color: var(--black-6);
    font-size: 14px;
    line-height: 20px;
}

.buy-now-cart .buy-now-datails .conform-btn {
    padding-left: 30;
}

.buy-now-cart .buy-now-datails .conform-btn .common-btn {
    background-color: var(--main-color);
    border: 2px solid transparent;
    transition: all linear .2s;
}

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

.buy-now-cart .buy-now-datails .conform-btn .conform-order {
    margin-left: 10px;
}


/* ===== buy now btn end ========== */


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

.overlay2 {
    width: 100%;
    height: 100vh;
    background-color: var(--overlay);
    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(--shadow);
    border: 15px solid var(--shadow);
}

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


/* ====== read title btn end ====== */


/* card-right start */

.card-area .card-right {
    background-color: var(--white);
    padding: 15px 0;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 1px 4px var(--shadow);
}

.card-area .card-right .card-right-header h3 {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    align-items: center;
    margin: 10px 0;
    text-align: center;
}

.card-area .card-right-bottom {
    display: flex;
    border-bottom: 1px solid var(--shadow);
    padding: 10px;
}

.card-area .card-right-bottom .right-img {
    width: 55px;
    height: 80px;
}

.card-area .card-right-bottom .right-img a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-area .card-right .card-right-content {
    padding: 0 10px;
}

.card-area .card-right .card-right-content a:hover {
    color: var(--main-color);
}

.card-area .card-right .card-right-content a {
    color: var(--black-1);
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    transition: all linear .3s;
}

.card-area .card-right .card-right-content h4:hover {
    color: var(--main-color);
    text-decoration: underline;
}

.card-area .card-right .card-right-content .product-price .product-price-new {
    font-size: 15px;
}

.card-area .card-right .card-right-content .product-price .product-price-old {
    color: var(--black-6);
    font-size: 12px;
}


/* =============== card section end =============== */


/*======== Specification section start ============ */


/*====== exhibition-first section start ==========  */

.specification-area {
    margin-top: 40px;
}

.specification-area .container h2 {
    color: var(--black);
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0;
    padding-left: 5px;
}

.specification-area .specification-content {
    padding: 20px 10px;
}

.specification-area .specification-content a:hover {
    color: var(--main-color);
}

.specification-area .specification-content h4 {
    color: var(--black);
    font-size: 22px;
    font-weight: 400px;
    transition: all linear .3s;
}

.specification-area .specification-content .past {
    margin-top: 20px;
}

.specification-area .specification-content h4:hover {
    color: var(--main-color);
}

.specification-area .specification-content p {
    color: var(--black-6);
    font-size: 16px;
    font-weight: 400px;
    margin-bottom: 10px;
}

.specification-area .row,
.row>.column {
    padding: 8px;
}

.specification-area .column {
    display: none;
    margin-bottom: 20px;
    width: 100%;
}

.specification-area .row:after {
    content: "";
    display: table;
    clear: both;
}


/* Content */

.specification-area #myBtnContainer {
    text-align: center;
    margin-bottom: 20px;
}

.specification-area .content {
    box-shadow: 0 0 6px var(--shadow);
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
}

.specification-area .content h2 {
    color: var(--main-color);
    font-size: 25px;
    font-weight: bold;
    text-align: center;
}

.specification-area .content .specification-content .text-current {
    display: flex;
    justify-content: space-between;
    padding: 0px 10px;
}

.specification-area .content i {
    background: var(--aqua);
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--white);
}

.specification-area .show {
    display: block;
}

.specification-area .filter-btn {
    border: none;
    outline: none;
    background-color: var(--white);
    color: var(--main-color);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    margin-right: 10px;
    padding: 25px 60px;
    cursor: pointer;
    box-shadow: 0 0 4px var(--shadow);
    transition: all linear .3s
}

.specification-area .filter-btn:hover {
    color: var(--white);
    background-color: var(--main-color);
}

.specification-area .active {
    color: var(--white);
    background-color: var(--main-color);
    transition: all linear .3s
}

.specification-area .active:hover {
    background-color: var(--white);
    color: var(--main-color);
}

.specification-area .specification-details {
    margin-bottom: 10px;
    border: 1px solid var(--shadow);
    border-top: 1px solid transparent;
}

.specification-area .specification-details .specification-details-header {
    color: var(--main-color);
    line-height: 40px;
}

.specification-area .specification-details li {
    display: flex;
    color: var(--black-6);
    font-weight: 500;
    font-size: 15px;
    line-height: 40px;
    border-top: 1px solid var(--shadow);
}

.specification-area .specification-details span {
    width: 20%;
    text-align: start;
    font-weight: 500;
    color: var(--black);
    padding-left: 10px;
    background-color: var(--body-color);
}

.specification-area .specification-details p {
    font-size: 15px;
    font-weight: 500;
    line-height: 40px;
    color: var(--black);
    margin-bottom: 0;
    padding-left: 10px;
}


/*----======Specification section end ========---- */


/* ====== customer-also section start ========  */

.customer-also-area .customer-also {
    background-color: var(--white);
    padding: 30px 34px;
    border-radius: 4px;
    box-shadow: 0 0 4px var(--shadow);
    margin-bottom: 20px;
}

.customer-also-area .maximum-card {
    background-color: var(--white);
    box-shadow: 0 0 3px 0 var(--shadow);
    border-radius: 3px;
    overflow: hidden;
    transition: all linear .2s;
}

.customer-also-area .maximum-card:hover {
    box-shadow: 0 0 8px 0 var(--shadow);
}

.customer-also-area .maximum-card .maximum-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.customer-also-area .maximum-card:hover img {
    transform: scale(1.4);
}

.customer-also-area .maximum-card .maximum-img img {
    width: 100%;
    height: 100%;
    transition: all linear .2s;
}

.customer-also-area .maximum-card .maximum-content {
    padding: 20px;
}

.customer-also-area .maximum-card .maximum-content .masimum-details {
    margin-top: 20px;
}

.customer-also-area .maximum-card .maximum-content a h2 {
    display: inline-block;
    color: var(--black-2);
    font-size: 20px;
    line-height: 27px;
    font-weight: 500;
    transition: all linear .2s;
}

.customer-also-area .maximum-card:hover a h2 {
    color: var(--main-color);
}

.customer-also-area .maximum-card .maximum-content span {
    color: var(--main-color);
    font-size: 16px;
    line-height: 27px;
    font-weight: 600;
    padding-bottom: 30px;
}

.customer-also-area .slick-prev {
    left: -12px;
}

.customer-also-area .slick-next {
    right: -12px;
}


/* ========= customer-also section end ============  */


/* ==================================book card page end=============================== */


/* =============================== books  page start =============================== */

.books-card {
    position: relative;
}

.books-card:hover .view-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3333;
    opacity: 70%;
    background-color: var(--white);
    transition: all linear .2s;
}

.books-card button {
    position: absolute;
    bottom: 5%;
    left: 25%;
    z-index: -99999;
}

.books-card:hover button {
    position: absolute;
    bottom: 5%;
    left: 25%;
    z-index: 99999;
}

.book-category .admission-test {
    padding-top: 30px;
}

.book-category .view-right {
    padding-top: 23px;
    display: flex;
    justify-content: end;
}

.book-category .view-right .common-btn {
    padding: 2px 8px;
}

.book-category .skills-content a {
    text-align: center;
}

.Author-category .admission-test {
    padding-top: 30px;
}

.Author-category .view-right {
    padding-top: 23px;
    display: flex;
    justify-content: end;
}

.Author-category .view-right .common-btn {
    padding: 2px 8px;
}

.Author-category .skills-content a {
    text-align: center;
}

.Author-category .skills-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--main-color);
    margin: 20px auto;
    object-fit: cover;
}

.book-area {
    margin-top: 120px;
}

.index-book {
    margin-top: 40px;
}

.book-area .writters-name {
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 10px;
    color: var(--main-color);
}

.book-area .row-scroll {
    height: 480px;
    overflow: auto;
}

.book-area .artist-category-group {
    border-radius: 5px;
    overflow: hidden;
}

.book-area .artist-category-group span {
    font-size: 15px;
    line-height: 20px;
}

.book-area .items {
    padding: 10px 13px 10px;
    background-color: var(--white);
}

.book-area label {
    display: block;
    margin-bottom: 10px;
}

.book-area .accordion-item {
    margin-top: 5px;
    background-color: var(--white);
    box-shadow: 0 0 1px 1px var(--shadow);
    border-radius: 5px;
}

.book-area .accordion-item h5 {
    padding-bottom: 5px;
    font-size: 20px;
    color: var(--black);
}

.book-area .accordion-item .filter {
    height: 260px;
    overflow: auto;
}

.book-area .accordion-item .filter {
    height: 300px;
    overflow: auto;
    margin-top: 15px;
}

.book-area .top-search {
    position: relative;
    border-radius: 15px;
    border: 2px solid var(--main-color);
    padding: 5px 6px;
    -webkit-text-fill-color: var(--black-6);
    background-color: var(--white);
}

.book-area .top-search .search-bar {
    border: none;
    outline: none;
    width: 100%;
    border-radius: 15px;
}

.book-area .top-search i {
    position: absolute;
    right: 10px;
    top: 10px;
}

.book-area .accordion-button:not(.collapsed) {
    color: var(--black-2);
    font-size: 20px;
    font-weight: 700;
    background-color: transparent;
    box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0 var(--bs-accordion-border-color);
}

.book-area .accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    box-shadow: transparent;
    outline: none;
    border: none;
}

.book-area .accordion-button {
    border: none;
    outline: none;
}

.books-price h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--black-2);
    margin-bottom: 20px;
}

.books-price .price-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.books-price label {
    font-size: 18px;
    font-weight: 700;
}

.books-price p {
    font-size: 18px;
    font-weight: 700;
}

.books-price .range-slider {
    position: relative;
    margin: 15px 0 30px 0;
}

.books-price .range-fill {
    height: 6px;
    background-color: var(--main-color);
    position: absolute;
    z-index: 1;
}

.books-price input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    position: absolute;
    left: 0;
}

.books-price input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: var(--main-color);
    cursor: pointer;
    margin-top: -5px;
    position: relative;
    z-index: 1;
}

.books-price input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    background: var(--main-color);
    border-radius: 3px;
    border: none;
}

.rate i {
    font-size: 20px;
    color: #e4d500;
}

.book-area .writer .writer-img {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
}

.book-area .writer .writer-img a img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--main-color);
}

.book-area .writer .writer-img p {
    font-size: 16px;
    color: #000;
    margin-top: 10px;
}

.book-area .writer .writer-img button {
    background-color: var(--main-color);
    padding: 8px 20px;
    outline: none;
    border: none;
    border-radius: 5px;
    border: 2px solid var(--main-color);
    transition: all linear .3s;
}

.book-area .writer .writer-img button:hover {
    background-color: var(--white);
}

.book-area .writer .writer-img button:hover a {
    color: var(--main-color);
}

.book-area .writer .writer-img button a {
    color: var(--white);
    transition: all linear .3s;
}

.book-area .writer .writer-text #ch {
    display: none;
}

.book-area .writer label {
    display: inline-block;
    cursor: pointer;
    color: var(--white);
    background-color: var(--main-color);
    padding: 3px 13px;
    border-radius: 5px;
    margin-top: 5px;
}

.book-area .writer-text .hide-text {
    display: none;
    margin-top: -17px;
}

.book-area .writer .writer-text #ch:checked~.hide-text {
    display: block;
}

.book-area .writer .writer-text #ch:checked~label {
    display: none;
}

.book-area .writer .writer-text h2 {
    font-size: 30px;
}

.book-area .writer .writer-text p {
    font-size: 17px;
    text-align: justify;
}


/* ============================ books  page end ==================================== */


/*============================== certificate-area page start ======================*/

.certificate-area {
    width: 80%;
    margin: 0 auto;
    margin-top: 150px;
}

.certificate-img {
    width: 100%;
    height: 450px;
    position: relative;
    filter: blur(4px);
}

.certificate-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-6);
    opacity: 60%;
}

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

.certificate-img .locked-icon {
    font-size: 60px;
    color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.certificate-area .certificate-name {
    margin-left: 30px;
}

.certificate-area .certificate-header h3 {
    font-size: 25px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 10px;
}

.input-group>.form-control,
.input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    box-shadow: none;
}

.certificate-area .certificate-header p {
    font-size: 13px;
    color: var(--black-6);
    line-height: 20px;
    text-align: justify;
}

.certificate-area .you-currently {
    text-align: center;
}

.certificate-area .you-currently h2 {
    font-weight: 500;
    font-size: 28px;
    margin: 20px 0;
    /* text-align: center; */
}


/*============================== certificate page end ===========================*/


/* ============================ checkout page  start ============================ */

.checkout-area {
    margin-top: 100px;
}


/* checkout-title  */

.checkout-area .checkout-title {
    border-radius: 3px;
    line-height: 50px;
    margin-bottom: 20px;
}

.checkout-area .checkout-title h1 {
    color: var(--black-2);
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
}


/* checkout common start  */

.checkout-area .customer-information {
    background-color: var(--white);
    border-radius: 3px;
    box-shadow: 0 0 8px var(--shadow);
    margin-bottom: 22px;
    padding: 10px;
}

.checkout-area .customer-information-head span {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: var(--main-color);
    color: var(--white);
    font-size: 15px;
    text-align: center;
    line-height: 30px;
    margin-right: 15px;
}

.checkout-area .customer-information-head h2 {
    font-size: 16px;
    padding-bottom: 13px;
    color: var(--main-color);
    border-bottom: 1px solid var(--shadow);
}

.input-group .common-btn {
    position: relative;
    z-index: 0;
}


/* checkout common end  */

.checkout-area .checkout-form .customer-information .customer-address .address-multiple-form {
    display: flex;
    justify-content: space-between;
}

.checkout-area .checkout-form .customer-information .customer-address .form-group {
    margin: 10px 4px;
}

.checkout-area .checkout-form .customer-information .form-group label {
    color: var(--main-color);
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    display: block;
}

.checkout-area .checkout-form .customer-information .form-group input,
.checkout-area .checkout-form .customer-information .form-group select,
.checkout-area .checkout-form .customer-information .form-group textarea {
    display: block;
    width: 100%;
    height: 42px;
    background-color: var(--white);
    border-radius: 4px;
    border: 1px solid var(--shadow);
    outline: none;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    padding: 5px 5px;
}

.checkout-area .checkout-form .customer-information .form-group option {
    font-size: 15px;
    line-height: 35px;
}


/* method  */

.checkout-area .payment-method {
    height: 100%;
}

.checkout-area .payment-method p {
    color: var(--p-color);
    font-size: 15px;
    line-height: 25px;
}

.checkout-area .payment-method .radio-inline input {
    margin-right: 4px;
}

.checkout-area .payment-method .radio-inline {
    line-height: 25px;
    display: block;
}

.checkout-area .payment-method .we-accepted h3 {
    color: var(--black-3);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 10px;
}

.checkout-area .payment-method .we-accepted {
    width: 300px;
    height: 30px;
    object-fit: cover;
}

.checkout-area .payment-method .we-accepted img {
    height: 100%;
    width: 100%;
}


/* checkout */

.checkout {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid var(--eee-color);
    box-shadow: 0px -2px 0px 0 var(--shadow);
    padding: 30px 0;
    margin-top: 20px;
}

.checkout .i-have-text {
    line-height: 40px;
}

.checkout .i-have-text a {
    color: var(--cyan);
}

.checkout .i-have-text a:hover {
    color: var(--cyan-light);
    text-decoration: underline;
}


/* amount start */

.checkout-area .bg-white {
    background-color: var(--white);
}

.checkout-area .table-bordered>:not(caption)>*>* {
    border-width: 0 0px;
    padding: 10px 0;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: var(--shadow);
    border-style: solid;
    border-width: 0;
}

.checkout-area .table-bordered {
    width: 100%;
}

.checkout-area .table-bordered thead td {
    padding: 14px 10px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    background-color: var(--main-color);
}

.checkout-area .table-bordered tbody td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--shadow);
}

.checkout-area .text-right {
    text-align: right;
}

.checkout-area .amount {
    font-weight: 600;
    color: var(--amount);
}

.checkout-area .name a {
    color: var(--black);
    line-height: 30px;
}

.checkout-area .name a img {
    width: 50px;
    height: 50px;
}

.checkout-area .name .fades {
    color: var(--black-6);
}


/* amount end */

.checkout .checkout-btn a {
    color: var(--white);
}

.checkout .checkout-btn:hover {
    color: var(--main-color);
}


/* ============================= checkout page  end ============================= */


/*========================== course details page start ===========================*/

.spoken-area {
    margin-top: 120px;
}

.spoken-area .spoken-heading {
    text-align: start;
    margin: 10px 0;
}

.spoken-area .instructor {
    display: flex;
    margin: 20px 0;
    border-radius: 4px;
    border: 1px solid var(--shadow);
}

.spoken-area .instructor .instructor-img {
    width: 100px;
    height: 100px;
    margin: 30px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--black-6);
}

.spoken-area .instructor .instructor-img img {
    width: 100%;
    height: 100%;
}

.spoken-area .instructor .instructor-details {
    margin: 20px;
}

.spoken-area .instructor .instructor-details a {
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
    transition: all linear .3s;
}

.spoken-area .instructor .instructor-details a:hover {
    color: var(--main-color);
}

.spoken-area .instructor .instructor-details p {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 5px;
}

.spoken-area .what-you {
    margin: 20px 0;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid var(--shadow);
}

.spoken-area .what-you .wach-video {
    display: flex;
    justify-content: space-between;
}

.spoken-area .what-you ul li {
    display: flex;
}


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

.spoken-area .what-you ul li {
    font-size: 16px;
    line-height: 30px;
    font-weight: var(--font-semi-bold);
    text-align: justify;
    color: var(--black);
    margin-bottom: 15px;
}

.spoken-area .what-you ul li .what-you-icon i {
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    font-size: 10px;
    margin: 10px 18px 0px;
    text-align: center;
    color: var(--white);
    background-color: var(--main-color);
}

.spoken-area .course-details-icon ul li {
    margin-bottom: 0;
}

.spoken-area .course-details-icon ul li i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    font-size: 12px;
    margin: 0 10px 0 0;
    text-align: center;
    color: var(--white);
    background-color: var(--main-color);
}

.spoken-area .what-you ul li p {
    font-size: 16px;
    text-align: justify;
    color: var(--black);
}


/* details about the course start */

.spoken-area .spoken-about .details-about .up-down {
    width: 100%;
    color: var(--main-color);
}

.spoken-area .contact-preview .details-about .up-down {
    width: 100%;
    color: var(--main-color);
}

.spoken-area .frequently-asked .details-about .up-down {
    width: 100%;
    color: var(--main-color);
}


/* left */

.spoken-area .range-filter-group {
    border-radius: 5px;
    overflow: hidden;
}

.spoken-area .range-filter-group span {
    font-size: 16px;
    line-height: 30px;
    color: var(--black);
}

.spoken-area .contact-right span {
    font-size: 16px;
    line-height: 30px;
    color: var(--main-color);
}

.spoken-area .price-range .items {
    padding: 10px 13px 10px;
    background-color: var(--white);
    margin: 0;
}

.spoken-area .accordion-body label {
    display: block;
    margin-bottom: 10px;
    text-align: justify;
}

.spoken-area .accordion-item {
    margin-top: 5px;
}

.spoken-area .accordion-item .accordion-content {
    display: flex;
    justify-content: space-between;
}

.spoken-area .accordion-body {
    padding: 0 15px;
}

.spoken-area .accordion-content h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 10px;
}

.spoken-area .accordion-content a {
    color: var(--main-color);
}

.spoken-area .accordion-content a:hover {
    color: var(--main-color);
}

.spoken-area .accordion-button {
    outline: none;
    width: 20%;
    padding-right: 20px;
}

.spoken-area .accordion-button:not(.collapsed) {
    color: var(--main-color);
    background-color: transparent;
}

.spoken-area .accordion-button {
    color: var(--black);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0;
}

.spoken-area .accordion-button:focus {
    z-index: 3;
}

.spoken-area .accordion-button {
    outline: none;
}

.spoken-area .accordion-button:not(.collapsed) {
    width: 80px;
    color: var(--bs-accordion-active-color);
    background-color: transparent;
    box-shadow: none;
}

.spoken-area .frequently-asked {
    margin: 20px 0;
}


/* contact-preview start  */

.spoken-area .contact-preview {
    margin: 20px 0;
}

.spoken-area .contact a {
    width: 100%;
    display: flex;
    justify-content: space-between;
}


/* .spoken-area .contact .contact-left i {
     width: 20px;
     height: 20px;
     line-height: 20px;
     border-radius: 50%;
     text-align: center;
     color: var(--white);
     background-color: var(--main-color);
 } */


/* contact-preview end  */


/* how to  */

.spoken-area .how-to a {
    color: var(--main-color);
    transition: all linear .5s;
}

.spoken-area .how-to a:hover {
    text-decoration: underline;
}


/* certificate */

.spoken-area .course-certificate .certificate-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* student */

.spoken-area .comment-card {
    background-color: var(--white);
    box-shadow: 0 0 3px 3px var(--shadow);
    border-radius: 3px;
    transition: all linear .2s;
}

.spoken-area .comment-card:hover {
    box-shadow: 0 0 8px 0 var(--shadow);
}

.spoken-area .comment-card .comment-content {
    padding: 40px;
}

.spoken-area .comment-card .comment-content i {
    font-size: 30px;
    color: var(--main-color);
}

.spoken-area .comment-card .comment-content p {
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
    margin: 15px 0;
}

.spoken-area .comment-card .comment-content h3 {
    font-size: 20px;
    line-height: 26px;
    color: var(--black);
    margin-bottom: 0;
}

.spoken-area .comment-card .comment-content span {
    font-size: 15px;
    line-height: 22px;
    color: var(--black-6);
}

.img {
    width: 50px;
    height: 50px;
    margin-left: 250px;
    margin-top: -50px;
}

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

.spoken-area .slick-next {
    right: -12px;
}

.spoken-area .slick-prev {
    left: -16px;
}

.spoken-area .students-saying .slick-next::before {
    width: 25px;
    height: 25px;
    right: -9px;
    line-height: 18px;
}

.spoken-area .students-saying .slick-prev:before {
    width: 25px;
    height: 25px;
    line-height: 17px;
    content: url(../images/angle-left.svg);
    transform: rotate(180deg);
    position: absolute;
    left: -6px;
    border-radius: 50%;
    background: var(--main-color);
    padding: 5px;
    text-align: center;
    align-items: center;
    justify-content: center;
}


/*========== buy-course start ========== */

.spoken-area .course-price-tab {
    display: none;
}

.spoken-area .course-price-tab .title-prixe {
    padding-top: 10px;
}

.spoken-area .course-price-tab .title-prixe h2 {
    font-size: 29px;
    font-weight: 600;
}

.spoken-area .course-price-tab button {
    margin-top: 5px;
}

.spoken-area .course-first {
    position: sticky;
    top: 80px;
}

.spoken-area .buy-course .title-prixe {
    display: flex;
    justify-content: center;
}

.spoken-area .buy-course-card iframe {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.spoken-area .buy-course-card .buy-course-content span {
    display: flex;
    color: var(--black);
    font-size: 16px;
    line-height: 27px;
    margin-left: 10px;
    font-weight: 700;
}

.spoken-area .buy-course-card .buy-course-content span p {
    display: block;
    color: var(--main-color);
    font-size: 16px;
    font-weight: 600;
    text-decoration: line-through;
    margin-left: 10px;
}

.buy-course-btn-content {
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
}


/*========== buy-course end ============ */


/*========================== course details page end ===========================*/


/*=========================== exhibition-registration page start ======================*/

.exhibition-area {
    width: 65%;
    background-color: var(--white);
    box-shadow: 0 0 4px var(--shadow);
    border-radius: 3px;
    margin: 0 auto;
    padding: 20px;
}

.exhibition-area .admission-test {
    text-align: center;
}

.exhibition-area .form-content {
    width: 100%;
}

.exhibition-area .form-content h1 {
    font-size: 25px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

.exhibition-area .form-content label {
    color: var(--black-2);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-top: 20px;
}

.exhibition-area .form-content .radio-inline label {
    margin-right: 20px;
}

.exhibition-area .form-content .form-control {
    color: var(--black-6);
    font-size: 14px;
}

.exhibition-area .form-content select,
.exhibition-area .form-content input {
    width: 100%;
    border: 1px solid var(--main-color);
    border-radius: 3px;
    background-color: transparent;
    outline: none;
    padding: 8px 10px;
    margin-top: 10px;
}

.exhibition-area .form-content .form-group input::placeholder {
    color: var(--black-6);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.exhibition-area .form-content .form-group datalist option {
    width: 100%;
}

.exhibition-area .form-content .form-group datalist {
    width: 100%;
    border: 1px solid var(--main-color);
    outline: none;
    padding: 8px 10px;
    margin-bottom: 20px;
    background-color: transparent;
}

.exhibition-area .form-content .form-mark {
    font-size: 16px;
    color: var(--gmail);
}

.exhibition-area .form-content .radio-inline {
    line-height: 25px;
    display: block;
}

.exhibition-area .form-content .radio-inline input {
    width: 20px;
}

.exhibition-area .form-content .form-group input {
    box-shadow: none;
}

.exhibition-area .form-content .form-group p {
    color: var(--black-6);
    font-size: 13px;
    font-weight: 600;
    text-align: end;
    margin-bottom: 0;
}

.exhibition-area .form-content .forgot {
    position: relative;
}

.exhibition-area .form-content a {
    position: absolute;
    right: 0;
    top: 0;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 400;
}

.exhibition-area .form-content a:hover {
    color: var(--main-color);
}

.exhibition-area .form-content .profile-btn {
    display: inline-block;
}

.exhibition-area .form-content .profile-btn .common-btn {
    font-size: 16px;
    font-weight: 600;
    line-height: 38px;
    text-align: center;
    color: var(--white);
    border-radius: 4px;
    background-color: var(--main-color);
    outline: none;
    bottom: none;
    padding: 0 20px;
    margin-bottom: 10px;
}


/*=========================== exhibition-registration page end ======================*/


/*============================ exhibition page start =======================*/

.ex-area {
    margin-top: 120px;
}

.ex-area a {
    color: #2b2b2b;
    transition: all linear .1s;
}

.ex-area a:hover {
    color: #2b2b2b;
}

.ex-area h2 {
    font-size: 28px;
}

.ex-area h3 {
    font-size: 24px;
}

.ex-area .ex-card {
    background-color: var(--white);
    box-shadow: 8px 8px 10px var(--shadow);
    border-radius: 10px;
    padding-bottom: 10px;
    position: relative;
}

.ex-area .ex-card .shaddow-btn {
    position: absolute;
    bottom: -1px;
    right: 5%;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 10px;
    box-shadow: 3px 3px 10px #626262;
    border: none;
    background-color: #bcbaba;
    color: #bcbaba;
    font-weight: 700;
}

.ex-area .ex-card .new-p {
    position: absolute;
    bottom: 0px;
    right: 120px;
}

.ex-area .ex-card .ex-button {
    position: absolute;
    bottom: 0px;
    right: 5%;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 10px;
    border: none;
    color: var(--white);
    background-color: var(--main-color);
    font-weight: 700;
    transition: all linear .2s;
    z-index: 11;
}

.ex-area .ex-card .ex-button:hover {
    rotate: 10deg;
}

.ex-area .ex-card .ex-img img {
    width: 100%;
    padding: 5%;
}

.ex-area .ex-card .ex-img-pro {
    display: flex;
    justify-content: center;
    border-radius: 8px;
    padding: 5%;
}

.ex-area .ex-card .ex-img-pro img {
    width: 51%;
    border: 2px solid var(--main-color);
    border-radius: 8px;
}

.ex-area .ex-card .ex-text {
    text-align: center;
}

.ex-area .ex-card .ex-text .p-size {
    margin-top: -15px;
    font-size: 16px;
}

.ex-area .ex-card .ex-text .p-year {
    margin-top: -18px;
    font-size: 16px;
}

.ex-area .ex-card .instructor {
    display: flex;
    margin-left: 5%;
}

.ex-area .ex-card .instructor img {
    width: 14%;
    height: 10%;
    border-radius: 8px;
    margin-top: 4px;
}

.ex-area .ex-card .instructor .in-text {
    margin-left: 10px;
}

.ex-area .ex-card .instructor .in-text h3 a {
    color: var(--whatsapp);
}

.ex-area .ex-card .instructor .in-text h3 a:hover {
    color: var(--pinterest);
}

.ex-area .ex-card .instructor .in-text .p-bd {
    margin-top: -20px;
}

.ex-area .ex-card .c-bottom {
    padding-left: 8px;
    margin-left: 5%;
}

.ex-area .ex-card .c-bottom a i {
    margin: 0 4px;
    font-size: 18px;
    text-shadow: 2px 2px 2px var(--shadow);
    transition: all linear .1s;
}

.ex-area .ex-card .c-bottom a i:hover {
    rotate: -18deg;
    color: var(--whatsapp);
}


/*============================ exhibition page end =======================*/


/* ===============================login page start ============================== */


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


/*  
 .form-area {
     margin-top: 100px;
 }
 
 .form-area .form .form-content {
     width: 100%;
     padding: 30px 10px;
 }
 
 .form-area .form .form-content h1 {
     font-size: 25px;
     font-weight: 600;
     color: var(--black);
     margin-bottom: 20px;
 }
 
 .form-area .form .form-content label {
     color: var(--black-3);
     font-size: 16px;
     font-weight: 600;
     line-height: 20px;
     margin-bottom: 10px;
 }
 
 .form-area .form .form-content input {
     width: 100%;
     border: 1px solid var(--main-color);
     outline: none;
     padding: 8px 10px;
     margin-bottom: 20px;
 }
 
 .form-area .form .form-content input::placeholder {
     color: var(--black);
     font-size: 14px;
     font-weight: 400;
     line-height: 20px;
 }
 
 .form-area .form .form-content .forgot {
     position: relative;
 }
 
 .form-area .form .form-content a {
     position: absolute;
     right: 0;
     top: 0;
     color: var(--main-color);
     font-size: 14px;
     font-weight: 400;
 }
 
 .form-area .form .form-content a:hover {
     color: var(--main-color);
 }
 
 .form-area .form .form-content .common-btn {
     width: 100%;
     height: 42px;
     display: inline-block;
     border-radius: 4px;
     line-height: 42px;
     font-size: 16px;
     font-weight: 600;
     padding: 0 20px;
     outline: none;
     text-align: center;
     margin-bottom: 10px;
 }
 
 .form-area .form .form-content .create-btn {
     color: var(--main-color);
     background-color: var(--white);
     border: 2px solid var(--main-color);
 }
 
 .form-area .form .form-content .form-btn {
     color: var(--white);
     background-color: var(--main-color);
     border: 2px solid var(--main-color);
 }
 
 .form-area .form .form-content .common-btn:hover {
     color: var(--white);
     background-color: var(--main-color);
     border: 2px solid var(--main-color);
 }
 
 .form-area .form p.donot-text {
     text-align: center;
     margin: 25px 0 35px;
     height: 11px;
 } */


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


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


/*  
 .form-area .slick-slide {
     margin: 0px 20px;
 }
 
 .form-area .slide-heading h2 {
     font-size: 25px;
     font-weight: 600;
     margin-bottom: 30px;
     margin-top: 30px;
 }
 
 .form-area .customer-logos {
     margin-top: 0px;
 }
 
 .form-area .customer-logos .slide {
     width: 100%;
     height: 380px;
 }
 
 .form-area .customer-logos .slide img {
     width: 100%;
     height: 100%;
 }
 
 .form-area .slick-slide img {
     width: 100%;
 } */


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


/* ===============================login page end ============================== */


/* ================== member-details page start ================*/


/* ====== member-details-area section start ====== */

.member-details-area .skills-silde {
    width: 100%;
    height: 500px;
    background-color: var(--bg-color);
    padding: 65px 0;
    margin: 70px 0;
}

.member-details-area .skills-silde .skills-slide-content {
    padding-right: 80px;
}

.member-details-area .skills-silde .skills-slide-content h2 {
    color: var(--white);
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    margin: 30px 0;
}

.member-details-area .skills-silde .skills-slide-content p {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-align: justify;
}

.member-details-area .skills-card .skills-img {
    width: 100%;
    height: 350px;
}

.member-details-area .skills-card .skills-img img {
    width: 100%;
    height: 100%;
}

.member-details-area .slick-slide {
    margin: 10px 0;
}

.member-details-area .slick-dots li {
    margin: 0 3px;
}

.member-details-area .skills-slide-content .admission-details {
    display: flex;
}

.member-details-area .skills-slide-content .admission-details .admission-icon {
    margin-right: 10px;
}

.member-details-area .skills-slide-content .admission-details .admission-icon span {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
}

.member-details-area .skills-slide-content .admission-details .admission-icon i {
    font-size: 14px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    line-height: 25px;
    text-align: center;
    color: var(--white);
    background-color: var(--main-color);
}


/* ======member-details section end ======== */


/* ======member-profile section start ======== */

.member-profile-area .instructor {
    /* display: flex; */
    border-radius: 4px;
}

.member-profile-area .instructor-details {
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: 0 0 3px 0 var(--shadow);
}

.member-profile-area .instructor .instructor-img {
    width: 200px;
    height: 200px;
    margin: 30px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--black-6);
}

.member-profile-area .instructor .instructor-img img {
    width: 100%;
    height: 100%;
}

.member-profile-area .instructor-content {
    padding: 40px;
}

.member-profile-area .instructor-content span {
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
}

.member-profile-area .instructor-content p {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 5px;
    text-align: justify;
}

.member-profile-area .instructor-content p a {
    font-size: 17px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 5px;
    text-align: justify;
    transition: all linear.3s;
}

.member-profile-area .instructor-content a:hover {
    color: var(--main-color);
    text-decoration: underline;
}


/* ======member-profile section end ======== */


/* ======courses section start ======== */

.courses-area .skills-card {
    background-color: var(--white);
    box-shadow: 0 0 3px 0 var(--shadow);
    border-radius: 3px;
    overflow: hidden;
    transition: all linear .2s;
}

.courses-area .skills-card:hover {
    box-shadow: 0 0 8px 0 var(--shadow);
}

.courses-area .skills-card .skills-img {
    width: 100%;
    height: 170px;
    overflow: hidden;
}

.courses-area .skills-card:hover img {
    transform: scale(1.4);
}

.courses-area .skills-card .skills-img img {
    width: 100%;
    height: 100%;
    transition: all linear .2s;
}

.courses-area .skills-card .skills-content {
    padding: 20px;
}

.courses-area .skills-card .skills-content i {
    font-size: 1 6px;
    margin-right: 10px;
}

.courses-area .skills-card .skills-content a h2 {
    display: inline-block;
    color: var(--black-2);
    font-size: 20px;
    line-height: 27px;
    font-weight: 500;
    transition: all linear .2s;
}

.courses-area .skills-card:hover a h2 {
    color: var(--main-color);
}

.courses-area .skills-card .skills-content h3 {
    display: inline-block;
    color: var(--black-6);
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.courses-area .skills-card span {
    display: block;
    border-top: 1px solid var(--shadow);
    color: var(--black);
    font-size: 20px;
    padding: 10px 0;
    text-align: center;
    font-weight: 600;
}

.courses-area .skills-card span a {
    color: var(--black);
    transition: all linear .3s;
}

.courses-area .skills-card span a:hover {
    color: var(--main-color);
}


/* ====== courses section end ======== */


/* ============================= member-details page end ===========================*/


/*================================= my-course page start ================================*/

.my-course-area {
    margin: 120px 0;
}

.my-course-area .skills-card {
    background-color: var(--white);
    box-shadow: 0 0 3px 0 var(--shadow);
    border-radius: 3px;
    overflow: hidden;
    transition: all linear .2s;
}

.my-course-area .skills-card:hover {
    box-shadow: 0 0 8px 0 var(--shadow);
}

.my-course-area .skills-card .skills-img {
    width: 100%;
    height: 170px;
    overflow: hidden;
}

.my-course-area .skills-card:hover img {
    transform: scale(1.4);
}

.my-course-area .skills-card .skills-img img {
    width: 100%;
    height: 100%;
    transition: all linear .2s;
}

.my-course-area .skills-card .skills-content {
    padding: 20px;
}

.my-course-area .skills-card .skills-content a h2 {
    display: inline-block;
    color: var(--black-2);
    font-size: 20px;
    line-height: 27px;
    font-weight: 500;
    transition: all linear .2s;
}

.my-course-area .skills-card:hover a h2 {
    color: var(--main-color);
}

.my-course-area .skills-card .skills-content a .progress {
    display: block;
    color: var(--black-6);
    font-size: 12px;
    line-height: 17px;
    font-weight: 600;
    margin: 20px 0;
}

.my-course-area .skills-card .skills-content span {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    display: block;
    line-height: 25px;
    color: var(--white);
    background-color: var(--main-color);
    padding: 5px 0;
    border-radius: 3px;
}


/*================================= my-course page end ================================*/


/*================================ payment-history page start =========================*/

.payment-history-area {
    margin-top: 130px;
}

.payment-history-area .payment-history {
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: 0 0 10px var(--shadow);
    padding: 40px;
    margin-top: 30px;
}

.payment-history-area .payment-history .payment-header h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
}

.payment-history-area .payment-history ul {
    display: flex;
}

.payment-history-area .payment-history ul li {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    margin: 0 4px;
}

.payment-history-area .payment-history ul strong {
    color: var(--main-color);
}

.payment-history-area .payment-history .admission-test {
    font-size: 16px;
    font-weight: 500;
    color: var(--main-color);
    text-align: end;
}


/*================================ payment-history page end =========================*/


/*============================ payment-method page start =====================*/

.payment-method-area {
    margin-top: 150px;
}

.payment-method-area .payment-method h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 50px 0;
    color: var(--black);
    text-align: center;
}


/*============================ payment-method page end =====================*/


/*================================= profile page start =============================*/


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

.profile-area {
    width: 60%;
    margin: 0 auto;
    margin-top: 130px;
}

.profile-area .profile-img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
}

.profile-area .profile-img .profile-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: 0;
    right: 0;
    line-height: 27px;
    position: absolute;
    background-color: var(--black-2);
}

.profile-area .profile-img i {
    font-size: 16px;
    color: var(--white);
    margin-left: 7px;
}

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

.profile-area .form .form-content {
    width: 100%;
    padding: 30px 10px;
}

.profile-area .form .form-content h1 {
    font-size: 25px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

.profile-area .form .form-content label {
    color: var(--black-3);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 10px;
}

.profile-area .form .form-content select,
.profile-area .form .form-content input {
    color: var(--black-6);
    width: 100%;
    border: 1px solid var(--main-color);
    outline: none;
    padding: 8px 10px;
    margin-bottom: 20px;
    border-radius: 3px;
}

.profile-area .form .form-content .form-group datalist {
    width: 100%;
    border: 1px solid var(--main-color);
    outline: none;
    padding: 8px 10px;
    margin-bottom: 20px;
    background-color: transparent;
}

.profile-area .form .form-content .form-group input {
    box-shadow: none;
}

.profile-area .form .form-content .form-group input::placeholder {
    color: var(--black-6);
}

.profile-area .form .form-content input::placeholder {
    color: var(--black-6);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.profile-area .form .form-content .forgot {
    position: relative;
}

.profile-area .form .form-content a {
    position: absolute;
    right: 0;
    top: 0;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 400;
}

.profile-area .form .form-content a:hover {
    color: var(--main-color);
}

.profile-area .form .form-content .common-btn {
    width: 100%;
    height: 42px;
    display: inline-block;
    border-radius: 4px;
    line-height: 38px;
    font-size: 16px;
    font-weight: 600;
    padding: 0 20px;
    outline: none;
    text-align: center;
    margin-bottom: 10px;
}

.profile-area .form .form-content .create-btn {
    color: var(--main-color);
    background-color: var(--white);
    border: 2px solid var(--main-color);
}

.profile-area .form .form-content .form-btn {
    color: var(--white);
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
}

.profile-area .form .form-content .common-btn:hover {
    color: var(--white);
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
}

.profile-area .form p.donot-text {
    text-align: center;
    margin: 25px 0 35px;
    height: 11px;
}

.profile-area .form .form-content .common-btn {
    width: 100%;
    height: 42px;
    background-color: var(--main-color);
    color: var(--white);
    display: inline-block;
    border-radius: 4px;
    line-height: 38px;
    font-size: 16px;
    font-weight: 600;
    padding: 0 20px;
    outline: none;
    box-shadow: none;
    text-align: center;
    margin-bottom: 10px;
}


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


/*================================= profile page end =============================*/


/* =========================== register page start =============================== */

.register-area {
    margin-top: 100px;
}

.register-area .form {
    display: flex;
    justify-content: center;
}

.register-area .form .register-content {
    width: 80%;
    margin: 0 auto;
    padding: 30px 20px;
    background-color: var(--white);
    box-shadow: 0 0 4px var(--shadow);
}

.register-area .multiple-form-group {
    display: flex;
    justify-content: space-between;
}

.register-area .multiple-form-group .form-group {
    margin-right: 5px;
}

.register-area .multiple-form-group .form-group input {
    width: 100%;
}

.register-area .required label:after {
    content: " *";
    color: var(--gmail);
    font-weight: 400;
}

.register-area .form .register-content h1 {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.register-area .form .register-content label {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 10px;
}

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

.register-area .form .register-content input:focus {
    border-color: var(--main-color);
}

.register-area .form .register-content input::placeholder {
    color: var(--black-6);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.register-area .form .register-content a {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 400;
}

.register-area .form .register-content a:hover {
    color: var(--main-color);
}

.register-area .form .register-content .common-btn {
    width: 100%;
    height: 42px;
    display: inline-block;
    border-radius: 4px;
    line-height: 38px;
    font-size: 16px;
    font-weight: 600;
    padding: 0 20px;
    outline: none;
    text-align: center;
    margin-bottom: 10px;
}

.register-area .form .register-content .create-btn {
    color: var(--main-color);
    background-color: var(--white);
}

.register-area .form .register-content .form-btn {
    color: var(--white);
    background-color: var(--main-color);
    padding: 0 10px;
}

.register-area .form .register-content .common-btn:hover {
    color: var(--white);
    background-color: var(--main-color);
}

.register-area .form p.donot-text {
    font-size: 16px;
    text-align: center;
    margin: 25px 0 25px;
}

.register-area .form .register-content .create-account p {
    font-size: 16px;
    color: var(--black-2);
    line-height: 30px;
    font-weight: 500;
}

.register-area .form .register-content .create-account a {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
}

.register-area .form .register-content .create-account a:hover {
    text-decoration: underline;
}


/* =============================== register page end ============================= */


/* ==========================skills-course start =============================== */


/* .skills-course-left {
     margin-top: 100px;
 }
  */

.skills-course-left .skills-course-video iframe {
    width: 100%;
    height: 500px;
}

.skills-course-left .skills-course-video-header h2 {
    margin: 20px 0;
}

.skills-course-left .skills-course-share {
    display: flex;
    justify-content: space-between;
}

.skills-course-left .skills-course-share ul {
    display: flex;
}

.skills-course-left .skills-course-share ul li:nth-child(2) {
    margin-left: 20px;
}

.skills-course-left .skills-course-share ul li a {
    color: var(--black-6);
    font-weight: 500;
    line-height: 25px;
    font-size: 15px;
}

.skills-course-left .skills-course-share {
    background-color: var(--white);
    border-top: 1px solid var(--shadow);
    border-bottom: 1px solid var(--shadow);
    padding: 15px 2px;
    margin: 20px 0;
}

.skills-course-left .skills-course-links ul li {
    background-color: var(--white);
    box-shadow: 0 0 3px var(--shadow);
    padding: 15px 10px;
    margin-bottom: 10px;
}

.skills-course-left .skills-course-links ul li a {
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
}

.skills-course-left .skills-course-links ul li a i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    margin-right: 5px;
    color: var(--white);
    background-color: var(--main-color);
}


/* :right */

.skills-course-right {
    position: sticky;
    top: 100px;
    box-shadow: 0 0 3px var(--shadow);
}

.skills-course-right .accordion-design {
    overflow-y: scroll;
    height: 400px;
}


/* scroll start  */


/* width */

.skills-course-right .accordion-design::-webkit-scrollbar {
    width: 7px;
}


/* Track */

.skills-course-right .accordion-design::-webkit-scrollbar-track {
    background: var(--shadow);
}


/* Handle */

.skills-course-right .accordion-design::-webkit-scrollbar-thumb {
    background: var(--main-color);
}


/* scroll end  */

.skills-course-right .header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--shadow);
    background-color: var(--white);
    padding: 15px;
}

.skills-course-right .header h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--black);
}

.skills-course-right .header span {
    font-weight: 500;
    font-size: 12px;
    line-height: 30px;
    color: var(--black);
}

.skills-course-right .skills-course-content ul li a {
    display: flex;
    font-weight: 700;
    font-size: 14px;
    color: var(--black);
}

.skills-course-right .skills-course-content ul li span {
    margin-right: 4px;
}

.skills-course-right .skills-course-content ul li p {
    font-size: 16px;
}

.skills-course-right .skills-course-content ul li a i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    line-height: 20px;
    text-align: center;
    font-size: 10px;
    color: var(--white);
    background-color: var(--main-color);
    margin-right: 5px;
}

.skills-course-right .skills-course-content ul li.video a i {
    background-color: var(--linkdin);
}


/* accordion start  */

.skills-course-right .accordion-body .skills-course-content {
    padding: 10px 10px;
}

.skills-course-right .accordion-item {
    border-radius: 10px;
    background-color: var(--white);
}

.skills-course-right .according-content {
    justify-content: space-between;
    padding: 10px 10px;
    border-bottom: 1px solid var(--shadow);
}

.skills-course-right .skills-accordion-header h2 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.skills-course-right .skills-accordion-header span {
    font-size: 13px;
    font-weight: 400;
    color: var(--black-2);
}

.skills-course-right .accordint-btn button {
    outline: none;
    border: none;
    background-color: transparent;
}

.skills-course-right .accordint-btn button i {
    font-size: 20px;
    color: var(--main-color);
}


/* accordion end  */


/* =======================skills-course end ============================ */


/* =======================contact pages start ============================ */


/* ====== information page start ======  */

.information-area {
    padding: 120px 0;
}

.information-area .InformationBtn {
    margin: 20px 0;
}


/* ====== information page end ========  */


/* =============== otp section start  =============== */

.otp-area {
    margin: 120px 0;
}


/* submit form  */

.otp-area .submit-content .submit-form {
    padding-top: 60%;
}

.otp-area .submit-content .submit-form form {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 15px;
}

.otp-area .submit-content .submit-form form input {
    display: inline-block;
    width: 76px;
    height: 50px;
    text-align: center;
    color: var(--black);
    outline: none;
    border: none;
    border-bottom: 1px solid var(--main-color);
    background-color: transparent;
}

.otp-area .submit-content .verification-btn {
    margin: 20px 0;
}


/* submit img  */

.submit-img {
    width: 530px;
    height: 510px;
    margin: 0 auto;
}

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


/* ============== otp section end  ============ */


/* ======= create-account section start  ===== */

.create-account-area {
    margin: 40px 0;
}

.create-account-area .create-account-content h3 {
    font-weight: var(--font-semi-bold);
    font-size: 30px;
    line-height: 45px;
    color: var(--black);
    margin-bottom: 20px;
}

.create-account-area .create-account-content .watch-link ul li {
    display: flex;
    border: 1px solid var(--light-gray);
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 0 8px var(--light-gray);
}

.create-account-area .create-account-content .watch-link ul li {
    display: flex;
    padding: 20px 10px;
    box-shadow: 0 0 8px var(--light-gray);
}

.create-account-area .create-account-content .watch-link ul li i {
    font-size: 16px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--white);
    background-color: var(--main-color);
    text-align: center;
    margin-right: 10px;
}

.create-account-area .create-account-content .watch-link ul li p {
    font-size: 20px;
    font-weight: var(--font-semi-bold);
    color: var(--black);
    text-align: justify;
    margin-bottom: 0;
}

.create-account-area .create-account-content .watch-link ul li a {
    color: var(--main-color);
}


/* ========== create-account section end  ======== */


/* ================ sign-up page start ===============  */

.sign-up-area {
    padding: 120px 0;
}

.sign-up-area .sign-up-btn {
    margin: 20px 0;
}


/* ============== sign-up page end ==============  */


/* =========== contact page start ============  */

.contact-area {
    padding: 120px 0;
}

.contact-sub-heading h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-area .contact-wrapper {
    padding-top: 25px;
}

.contact-area .contact-wrapper .contact-content {
    width: 80%;
}

.contact-area .contact-wrapper .contact-content .location {
    margin-bottom: 20px;
}

.contact-area .contact-wrapper .contact-content .location p {
    font-weight: var(--font-semi-bold);
    font-size: 16px;
    text-align: justify;
    color: var(--gray);
    line-height: 30px;
}

.contact-area .contact-wrapper .contact-content .location p i {
    width: 25px;
    font-size: 16px;
    color: var(--main-color);
    line-height: 30px;
}

.contact-area .contact-wrapper .contact-img-content .contact-img {
    width: 100%;
    height: 450px;
    border-radius: 5px;
    box-shadow: 0 0 8px var(--shadow);
}

.contact-area .contact-wrapper .contact-img-content .contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-area .contact-wrapper .contact-img-content .contact-location p {
    font-weight: var(--font-semi-bold);
    font-size: 20px;
    color: var(--main-color);
    line-height: 30px;
    margin: 20px 0;
}

.contact-social-media-Heading {
    margin: 10px 0;
}

.social-media-icons-2 {
    margin-top: 40px;
}

.contact-area .contact-wrapper .ContactSocialHeading h2 {
    font-size: var(--font-size26);
}


/* ========= contact section end ======= */


/* =========== contact-form-area section start ========= */

.contact-form-area .submit-btn {
    width: 200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}


/* .contact-form-area .contact-form-wrapper {
     padding: 0 40px;
     box-shadow: 0 0 8px var(--light-gray)
 } */

.contact-form-area .contact-btn {
    width: 100%;
    justify-content: center;
    padding-bottom: 15px;
}


/* =========== contact-form-area section end ========= */


/* ============= contact page end ==============  */


/* =======================contact pages end ============================ *s