    /* ===================index css  start==============*/
    /*  
    1. Home Page
    2. About Page
    3. Gallery page
    4. news page
    5. news-Details-Page
    6. Professors Page
    7. Blog Page
    8. Blog-details-page
    9. contact page
    10. Error page
    */
    /*===================index css  end============== */
    /* common 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;
        font-family: 'Poppins', sans-serif;
    }
    
     :root {
        --black: #333;
        --black-2: #222;
        --black-3: #333333;
        --h1: #333333;
        --h2: #ffffff;
        --btn-color: #ffffff;
        --banner-p: #333333;
        --black-6: #666;
        --border: #ffffff1a;
        --border-2: #ddd;
        --white: #fff;
        --white-2: #fff;
        --purple: #9721CD;
        --body-color: #f2f4f8;
        --common-color: #00a9a2;
        --cyan-color: #0794f4;
        --footer-bg: #01132d;
        --icon: #192031bb;
        --hover-shadow: #00000069;
        --shadow: #0000001a;
        --footer-text: #b6bbcd;
        --gray: #e6e7ec;
        --overlay: #01132d;
        --gallery-bg: #000000e6;
    }
    
    .dark-theme {
        --black: #fff;
        --black-2: #fff;
        --black-3: #ffff;
        --black-6: #fff;
        --border: #fff;
        --white: #333;
        --white-2: #fff;
        --purple: #9721CD;
        --body-color: #333;
        --common-color: #00a9a2;
        --cyan-color: #0794f4;
        --footer-bg: #01132d;
        --icon: #fff;
        --hover-shadow: #00000069;
        --shadow: #0000001a;
        --footer-text: #b6bbcd;
        --gray: #333;
        --overlay: #01132d;
    }
    
    #darkmode {
        color: var(--black);
        font-size: 22px;
        line-height: 70px;
        cursor: pointer;
    }
    
    .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;
    }
    
    h1 {
        color: var(--h1);
        font-size: 60px;
        font-weight: 600;
    }
    
    p {
        color: var(--black-6);
        font-weight: 500;
        font-size: 16px;
    }
    
    .active {
        color: var(--bg-color);
    }
    
    .heading {
        text-align: center;
        margin: 50px 0;
    }
    
    .heading h2 {
        display: inline-block;
        font-family: 'Oxygen', sans-serif;
        font-size: 50px;
        font-weight: 600;
        color: var(--black);
        cursor: pointer;
        text-transform: uppercase;
        transition: all linear .2s;
    }
    
    .heading h2:hover {
        color: var(--cyan-color);
    }
    
    .heading p {
        font-size: 18px;
    }
    
    .social-icon i {
        height: 40px;
        width: 40px;
        color: var(--white);
        background-color: var(--icon);
        border-radius: 50%;
        font-size: 15px;
        line-height: 40px;
        text-align: center;
        margin: 5px 4px;
        transition: all linear .2s;
    }
    
    .social-icon i:hover {
        color: var(--white);
        background-color: var(--cyan-color);
    }
    
    .btn {
        width: 150px;
        color: var(--h2);
        border: 1.5px solid var(--white);
        border-radius: 4px;
        text-align: center;
        display: inline-block;
        padding: 10px 8px;
        margin: 20px 10px;
        transition: all linear .2s;
    }
    
    .btn:hover {
        color: var(--h2);
        background-color: var(--cyan-color);
        border: 1.5px solid var(--cyan-color);
    }
    /* ===============common css end===============  */
    /* =====top header start===== */
    
    .header-top {
        position: fixed;
        width: 100%;
        height: 40px;
        background-color: var(--cyan-color);
        top: 0;
        left: 0;
        z-index: 10000;
    }
    
    .header-top .header-top-left span {
        display: flex;
        color: var(--white-2);
        font-size: 14px;
        font-weight: 400;
        line-height: 40px;
    }
    
    .header-top .header-top-left a {
        color: var(--white-2);
        font-size: 16px;
        margin-left: 3px;
    }
    
    .header-top .header-top-right {
        display: flex;
        justify-content: end;
    }
    
    .header-top .header-top-right i {
        height: 30px;
        width: 30px;
        border-radius: 50%;
        color: var(--white-2);
        font-size: 15px;
        line-height: 30px;
        text-align: center;
        margin: 5px 4px;
        transition: all linear .2s;
    }
    
    .header-top .header-top-right i:hover {
        background-color: var(--white-2);
        color: var(--cyan-color);
    }
    /* =======top header end======= */
    /* =======header-bottom start======= */
    
    .header-bottom {
        position: fixed;
        top: 40px;
        left: 0;
        width: 100%;
        height: 70px;
        background-color: var(--white);
        box-shadow: 0 0 10px var(--shadow);
        z-index: 10000;
    }
    
    .header-bottom .logo {
        width: 200px;
        height: 70px;
    }
    
    .header-bottom .logo img {
        width: 100%;
        height: 100%;
    }
    
    .header-bottom .navber {
        display: flex;
        justify-content: end;
    }
    
    .header-bottom .navber ul {
        display: flex;
        justify-content: start;
    }
    
    .header-bottom .navber ul li a {
        color: var(--black-3);
        font-size: 20px;
        font-weight: 400;
        line-height: 70px;
        margin: 0 10px;
        border-bottom: 1px solid transparent;
        transition: all linear .2s;
    }
    
    .header-bottom .navber ul li a:hover {
        color: var(--cyan-color);
        border-bottom: 1px solid var(--cyan-color);
    }
    /* =====header-bottom end===== */
    /* =====banner start===== */
    
    .banner-area {
        width: 100%;
        height: calc(100vh - 110px);
        background-color: var(--footer-text);
        background-image: url(../images/banner.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        margin-top: 110px;
        overflow: hidden;
    }
    
    .banner-area .banner-content {
        max-width: 520px;
        margin-left: auto;
        margin-right: 0;
        margin-top: 200px;
    }
    
    .banner-area .banner-content p {
        text-align: justify;
        color: var(--banner-p);
        padding: 10px 0px;
    }
    /* =====banner end========*/
    /* =====about us  start===== */
    
    .about-area .about-design {
        box-shadow: 0 0 10px var(--shadow);
        background-color: var(--gray);
        overflow: hidden;
        border-radius: 4px;
    }
    
    .about-area .about-img img {
        width: 100%;
        height: 100%;
    }
    
    .about-area .about-content {
        padding: 70px 70px;
    }
    
    .about-area .about-content h2 {
        color: var(--black);
        font-size: 36px;
        font-weight: 700;
        line-height: 35px;
    }
    
    .about-area .about-content strong {
        color: var(--black-2);
        font-size: 20px;
        font-weight: 500;
        line-height: 30px;
    }
    
    .about-area .about-content p {
        text-align: justify;
        line-height: 30px;
        margin: 30px 0;
    }
    
    .about-area .about-content .about-btn a {
        display: block;
        text-align: center;
        border: none;
        border-radius: 10px;
        background-color: var(--cyan-color);
        color: var(--btn-color);
        font-weight: 400;
        font-size: 18px;
        padding: 10px 8px;
        margin-top: 30px;
        transition: all linear .5s;
    }
    
    .about-area .about-content .about-btn a:hover {
        background-color: var(--common-color);
    }
    
    .about-area .about-content .about-btn i {
        color: var(--btn-color);
        visibility: hidden;
        margin-left: -15px;
        transition: all linear .2s;
    }
    
    .about-area .about-content .about-btn:hover i {
        visibility: visible;
        margin-left: 5px;
    }
    /* icon  */
    
    .about-area .about-content .about-icon {
        display: flex;
    }
    
    .about-area .about-content ul {
        padding: 0;
    }
    
    .about-area .about-content ul li {
        transform: translateY(40%);
        transition: all linear .3s;
    }
    
    .about-area .about-content:hover ul li {
        transform: translateY(0);
    }
    
    .about-area .about-content:hover ul li:nth-child(1) {
        transition: all linear .1s;
    }
    
    .about-area .about-content ul li:nth-child(1):hover {
        margin-top: -10px;
    }
    
    .about-area .about-content:hover ul li:nth-child(2) {
        transition: all linear .2s;
    }
    
    .about-area .about-content ul li:nth-child(2):hover {
        margin-top: -10px;
    }
    
    .about-area .about-content:hover ul li:nth-child(3) {
        transition: all linear .3s;
    }
    
    .about-area .about-content ul li:nth-child(3):hover {
        margin-top: -10px;
    }
    
    .about-area .about-content:hover ul li:nth-child(4) {
        transition: all linear .4s;
    }
    
    .about-area .about-content ul li:nth-child(4):hover {
        margin-top: -10px;
    }
    
    .about-area .about-content:hover ul li:nth-child(5) {
        transition: all linear .5s;
    }
    
    .about-area .about-content ul li:nth-child(5):hover {
        margin-top: -10px;
    }
    /* ====about us end=== */
    /* ====gallery  start==== */
    
    .gallery-area .imagesContainer {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .gallery-area .image {
        width: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        border-radius: 4px;
        overflow: hidden;
    }
    
    .gallery-area .image:nth-child(1) {
        margin-bottom: 25px;
    }
    
    .gallery-area .image-small {
        height: 250px;
    }
    
    .gallery-area .image-big {
        height: 350px;
    }
    
    .gallery-area .image-text {
        width: 100%;
        height: 100%;
        z-index: 4;
    }
    
    .gallery-area .image-text div i {
        font-size: 15px;
        color: var(--black-6);
        display: none;
    }
    
    .gallery-area .image-text:hover {
        cursor: pointer;
        z-index: 2;
        background: linear-gradient(#00000099, #00000099);
    }
    
    .gallery-area .image-text:hover div {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        background-color: var(--white);
        font-size: 1.2em;
        cursor: zoom-in;
        z-index: 7;
    }
    
    .gallery-area .image-text:hover div i {
        display: inline-block;
    }
    /* imagePop  */
    
    .imagePop {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999999999;
        display: none;
    }
    
    .imagePop .imagePopUnder {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--gallery-bg);
        z-index: 12;
    }
    
    .imagePop .imagePopUnder:hover {
        cursor: zoom-out;
    }
    
    .imagePop .imageContain {
        position: relative;
        top: 5%;
        left: -20%;
        width: 50%;
        height: 90vh;
        margin: 0 auto;
        z-index: 12;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        cursor: pointer;
    }
    
    @keyframes he {
        100% {
            left: 0;
        }
    }
    
    .imagePop .click1 {
        position: absolute;
        z-index: 14;
        top: 50%;
        left: 5%;
        cursor: pointer;
        color: var(--white);
    }
    
    .imagePop .click2 {
        position: absolute;
        z-index: 14;
        top: 50%;
        right: 5%;
        cursor: pointer;
        color: var(--white);
    }
    
    .imagePop .close {
        position: absolute;
        z-index: 14;
        top: 5%;
        right: 5%;
        cursor: pointer;
        color: var(--white);
    }
    /* ======gallery  end====== */
    /* ======review  start====== */
    
    .review-area {
        position: relative;
        width: 100%;
        text-align: center;
        color: var(--white);
        background-image: url(../images/news-2.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 1000;
        padding: 80px 0;
        margin-top: 50px;
    }
    
    .review-area::before {
        content: '';
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        position: absolute;
        top: 0;
        left: 0;
        opacity: 80%;
        z-index: -1;
    }
    
    .review-area .review-icon {
        width: 100%;
        height: 100%;
        display: flex;
        color: var(--white);
    }
    
    .review-area .review-icon i {
        color: var(--cyan-color);
        font-size: 60px;
        margin: 10px 20px;
    }
    
    .review-area .review-count {
        color: var(--h2);
        font-family: 'Oxygen', sans-serif;
        text-align: start;
    }
    
    .review-area .review-count h2 {
        font-size: 30px;
        font-weight: 700;
        margin-top: 10px;
        margin-bottom: 0;
        text-align: center;
    }
    
    .review-area .review-count span {
        font-size: 24px;
        font-weight: 700;
        text-transform: uppercase;
        margin: 10px 0;
    }
    /* =====review  end===== */
    /* =====professors  start===== */
    
    .professors-area {
        margin-top: 150px;
    }
    
    .professors-area .our-team-card {
        width: 100%;
        box-shadow: 0 0 3px 0px var(--shadow);
        border-radius: 4px;
        text-align: center;
        overflow: hidden;
    }
    
    .professors-area .our-team-card:hover {
        box-shadow: 0 0 16px 0px var(--footer-text);
    }
    
    .professors-area .our-team-card .our-team-img {
        height: 320px;
        width: 100%;
        overflow: hidden;
        position: relative;
        cursor: pointer;
    }
    
    .professors-area .our-team-card .our-team-img img {
        width: 100%;
        height: 100%;
    }
    
    .professors-area .our-team-card .our-team-img::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, #eee 0%, black 100%);
        top: 0;
        left: 0;
        opacity: 0;
        transition: all linear .3s;
    }
    
    .professors-area .our-team-card .our-team-img:hover::after {
        opacity: 60%;
    }
    
    .professors-area .our-team-card .our-team-img ul {
        display: flex;
        justify-content: center;
        position: absolute;
        bottom: -30%;
        left: 0%;
        width: 100%;
        margin: 0;
        z-index: 9999;
        transition: all linear .2s;
        height: 60px;
    }
    
    .professors-area .our-team-card .our-team-img:hover ul {
        bottom: 3%;
    }
    
    .professors-area .our-team-card .our-team-img ul li {
        transform: translateY(90%);
    }
    
    .professors-area .our-team-card .our-team-img:hover ul li {
        transform: translateY(0);
    }
    
    .professors-area .our-team-card .our-team-img:hover ul li:nth-child(1) {
        transition: all linear .1s;
    }
    
    .professors-area .our-team-card .our-team-img:hover ul li:nth-child(2) {
        transition: all linear .2s;
    }
    
    .professors-area .our-team-card .our-team-img:hover ul li:nth-child(3) {
        transition: all linear .3s;
    }
    
    .professors-area .our-team-card .our-team-img:hover ul li:nth-child(4) {
        transition: all linear .4s;
    }
    
    .professors-area .our-team-card .our-team-content {
        margin: 15px 0;
    }
    
    .professors-area .our-team-card .our-team-content a {
        color: var(--black);
        font-size: 22px;
        line-height: 40px;
        font-weight: 500;
    }
    
    .professors-area .our-team-card .our-team-content a:hover {
        color: var(--cyan-color);
    }
    
    .professors-area .our-team-card .our-team-content p {
        font-size: 18px;
    }
    /* ===professors end ==== */
    /* ====are-you  start==== */
    
    .are-you-area {
        position: relative;
        width: 100%;
        height: 300px;
        text-align: center;
        color: var(--white);
        background-image: url(../images/banner.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 70px 0;
        margin: 50px 0;
        z-index: 1000;
    }
    
    .are-you-area h2 {
        color: var(--h2);
        font-size: 32px;
    }
    
    .are-you-area::before {
        content: '';
        width: 100%;
        height: 100%;
        background-color: var(--footer-bg);
        position: absolute;
        top: 0;
        left: 0;
        opacity: 80%;
        z-index: -1;
    }
    
    .are-you-area .are-you-btn-1 {
        color: var(--white);
        background-color: var(--cyan-color);
        border: 1.5px solid var(--cyan-color);
    }
    
    .are-you-area .are-you-btn-1:hover {
        color: var(--white);
        background-color: transparent;
        border: 1.5px solid var(--white);
    }
    /* =====are-you  end===== */
    /* ======footer start===== */
    
    .footer-area {
        width: 100%;
        background-color: var(--footer-bg);
        overflow: hidden;
        position: relative;
    }
    
    .footer-area .footer-img img {
        position: absolute;
        height: 100%;
        width: 100%;
        object-fit: cover;
        animation: anim3 5s infinite;
    }
    
    @keyframes anim3 {
        0% {
            transform: scale(.9);
        }
    }
    
    .footer-area .footer-circle-1 {
        position: absolute;
        left: -250px;
        top: -250px;
        width: 500px;
        height: 500px;
        border: 60px solid var(--common-color);
        border-radius: 50%;
        opacity: 50%;
    }
    
    .footer-area .footer-circle-2 {
        position: absolute;
        right: -150px;
        bottom: 30px;
        width: 400px;
        height: 400px;
        border: 60px solid var(--purple);
        border-radius: 50%;
        opacity: 50%;
    }
    
    .footer-area .footer-top {
        position: relative;
        width: 100%;
        height: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
        border-bottom: 2px solid var(--border);
    }
    
    .footer-area .footer-top .footer-logo {
        width: 200px;
        height: 50px;
    }
    
    .footer-area .footer-top .footer-logo img {
        width: 100%;
        height: 100%;
    }
    
    .footer-area .footer-top .footer-icons {
        text-align: end;
    }
    
    .footer-area .footer-upper {
        position: relative;
        width: 100%;
        border-bottom: 2px solid var(--border);
        z-index: 1000;
        padding: 40px 0;
    }
    
    .footer-area .footer-upper h3 {
        color: var(--h2);
    }
    
    .footer-area .footer-upper .footer-wdget {
        margin: 30px 0;
    }
    
    .footer-area .footer-upper .footer-wdget p {
        color: var(--footer-text);
        line-height: 30px;
        margin-bottom: 20px;
    }
    
    .footer-area .footer-upper .subscribe-form {
        position: relative;
        overflow: hidden;
        margin-top: 20px;
    }
    
    .footer-area .footer-upper .subscribe-form input {
        width: 100%;
        height: 55px;
        color: var(--footer-text);
        padding: 10px 65px 10px 15px;
        background: var(--footer-bg);
        outline: none;
        border: 1px solid var(--footer-text);
    }
    
    .footer-area .footer-upper .subscribe-form input:focus {
        border-color: var(--cyan-color);
    }
    
    .footer-area .footer-upper .subscribe-form input::placeholder {
        font-size: 18px;
        font-weight: 400;
    }
    
    .footer-area .footer-upper .subscribe-form button {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        background-color: var(--cyan-color);
        padding: 13px 20px;
        border: none;
    }
    
    .footer-area .footer-upper .subscribe-form button i {
        color: var(--h2);
        font-size: 22px;
        font-weight: 600;
        line-height: 30px;
    }
    
    .footer-area .footer-upper .footer-wdget ul {
        padding: 0;
        margin-left: 20px;
    }
    
    .footer-area .footer-upper .footer-wdget ul li a {
        color: var(--footer-text);
        font-size: 16px;
        line-height: 30px;
    }
    
    .footer-area .footer-upper .footer-wdget ul li a:hover {
        color: var(--cyan-color);
        text-decoration: underline;
    }
    
    .footer-area .footer-upper .footer-wdget .single-cta {
        display: flex;
        margin-bottom: 10px;
    }
    
    .footer-area .footer-upper .footer-wdget .single-cta i {
        color: var(--cyan-color);
        font-size: 20px;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        text-align: center;
        line-height: 35px;
    }
    
    .footer-area .footer-upper .footer-wdget .single-cta i:hover {
        color: var(--white);
        background-color: var(--cyan-color);
    }
    
    .footer-area .footer-upper .footer-wdget .single-cta .cta-text {
        padding-left: 15px;
        display: inline-block;
        color: var(--footer-text);
    }
    
    .footer-area .footer-upper .footer-wdget .single-cta .cta-text span:hover {
        color: var(--cyan-color);
    }
    
    .footer-area .footer-upper .footer-wdget .single-cta .cta-text h4 {
        font-size: 18px;
        line-height: 26px;
        font-weight: 600;
        color: var(--h2);
        margin-bottom: 0;
    }
    
    .footer-area .footer-upper .footer-wdget .single-cta .cta-text span {
        color: var(--drak-gray-3);
        font-size: 16px;
        font-weight: 400;
    }
    
    .footer-area .copyright {
        position: relative;
        width: 100%;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-area .copyright p {
        color: var(--footer-text);
        font-size: 16px;
        text-align: center;
        margin-bottom: 0;
    }
    
    .footer-area .copyright a {
        color: var(--footer-text);
        font-size: 16px;
        text-align: center;
        margin-bottom: 0;
    }
    
    .footer-area .copyright a:hover {
        color: var(--cyan-color);
    }
    /* =====footer  section end==== */
    /* ===============index page end=============== */
    /* ===============about page start=============== */
    
    .about-details-area {
        margin-top: 150px;
    }
    
    .about-details-area .about-design {
        box-shadow: 0 0 10px var(--shadow);
        background-color: var(--gray);
        overflow: hidden;
        border-radius: 4px;
    }
    
    .about-details-area .about-img {
        width: 100%;
        height: 450px;
    }
    
    .about-details-area .about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .about-details-area .about-content {
        padding: 70px 70px;
    }
    
    .about-details-area .about-content h2 {
        color: var(--black);
        font-size: 36px;
        font-weight: 700;
        line-height: 35px;
    }
    
    .about-details-area .about-content strong {
        color: var(--black-2);
        font-size: 20px;
        font-weight: 500;
        line-height: 30px;
    }
    
    .about-details-area .about-content p {
        text-align: justify;
        line-height: 30px;
        margin: 30px 0;
    }
    /* .about-details end  */
    /* .education-certificate start  */
    
    .education-certificate-area {
        margin: 80px 0;
    }
    
    .education-certificate-area .certificate {
        padding: 80px 0;
        border-top: 1px solid var(--gray);
    }
    
    .education-certificate-area .certificate h1 {
        color: var(--black);
        font-size: 36px;
        line-height: 45px;
        font-weight: 700;
        margin-bottom: 30px;
    }
    
    .education-certificate-area .certificate p {
        color: var(--black);
        font-size: 18px;
        font-weight: 400;
        line-height: 30px;
    }
    
    .education-certificate-area .certificate .certificate-img {
        display: flex;
        justify-content: space-between;
    }
    
    .education-certificate-area .certificate .certificate-img-box {
        display: flex;
        justify-content: space-between;
    }
    
    .education-certificate-area .certificate .certificate-img-box .certificate-img {
        width: 170px;
        height: 145px;
        margin-left: 15px;
    }
    
    .education-certificate-area .certificate .certificate-img-box .certificate-img img {
        width: 100%;
        height: 100%;
    }
    /* education */
    
    .education-certificate-area .education {
        border-top: 1px solid var(--gray);
        padding-bottom: 30px;
    }
    
    .education-certificate-area .education .education-item .date {
        position: relative;
        display: block;
        font-size: 14px;
        line-height: 24px;
        color: var(--cyan-color);
        font-weight: 500;
        margin-bottom: 4px;
        padding-top: 41px;
    }
    
    .education-certificate-area .education .education-item .date::before {
        position: absolute;
        content: '';
        background-color: var(--common-color);
        height: 12px;
        width: 12px;
        left: 0px;
        top: -7px;
    }
    
    .education-certificate-area .education .education-item h4 {
        color: var(--black);
        font-size: 20px;
        line-height: 30px;
        font-weight: 600;
        margin-bottom: 4px;
    }
    
    .education-certificate-area .education .education-item .education-content {
        font-size: 16px;
        color: var(--black-6);
        line-height: 34px;
        font-weight: 400;
    }
    /* .education-certificate end  */
    /* ===============about page end=============== */
    /* ===============gallery page start=============== */
    
    .gallery-deatils-area {
        margin-top: 150px;
    }
    
    .gallery-deatils-area .imagesContainer {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .gallery-deatils-area .image {
        width: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        border-radius: 4px;
        overflow: hidden;
    }
    
    .gallery-deatils-area .image:nth-child(1) {
        margin-bottom: 25px;
    }
    
    .gallery-deatils-area .image-small {
        height: 250px;
    }
    
    .gallery-deatils-area .image-big {
        height: 350px;
    }
    
    .gallery-deatils-area .image-text {
        width: 100%;
        height: 100%;
        z-index: 4;
    }
    
    .gallery-deatils-area .image-text div i {
        font-size: 15px;
        color: var(--black);
        display: none;
    }
    
    .gallery-deatils-area .image-text:hover {
        cursor: pointer;
        z-index: 2;
        background: linear-gradient(#00000099, #00000099);
    }
    
    .gallery-deatils-area .image-text:hover div {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        background: var(--white);
        font-size: 1.2em;
        cursor: zoom-in;
        z-index: 7;
    }
    
    .gallery-deatils-area .image-text:hover div i {
        display: inline-block;
    }
    /* imagePop  */
    
    .imagePop {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999999;
        display: none;
    }
    
    .imagePop .imagePopUnder {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--gallery-bg);
        z-index: 12;
    }
    
    .imagePop .imagePopUnder:hover {
        cursor: zoom-out;
    }
    
    .imagePop .imageContain {
        position: relative;
        top: 5%;
        left: -20%;
        width: 50%;
        height: 90vh;
        margin: 0 auto;
        z-index: 12;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        cursor: pointer;
    }
    
    @keyframes he {
        100% {
            left: 0;
        }
    }
    
    .imagePop .click1 {
        position: absolute;
        z-index: 14;
        top: 50%;
        left: 5%;
        cursor: pointer;
        color: var(--white);
    }
    
    .imagePop .click2 {
        position: absolute;
        z-index: 14;
        top: 50%;
        right: 5%;
        cursor: pointer;
        color: var(--white);
    }
    
    .imagePop .close {
        position: absolute;
        z-index: 14;
        top: 5%;
        right: 5%;
        cursor: pointer;
        color: var(--white);
    }
    /* ===============gallery page end=============== */
    /* ===============news page start=============== */
    
    .news-area {
        margin-top: 150px;
    }
    
    .news-area .news-design .news-card {
        width: 100%;
        height: 300px;
        background-color: var(--white);
        box-shadow: 0 0 8px 4px var(--shadow);
        border-radius: 4px;
        overflow: hidden;
        position: relative;
        transition: all linear .4s;
    }
    
    .news-area .news-design .news-card .news-content {
        padding: 35px 20px;
    }
    
    .news-area .news-design .news-card .news-content h3 {
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;
        color: var(--cyan-color);
        margin-bottom: 0;
    }
    
    .news-area .news-design .news-card .news-content a {
        font-size: 26px;
        font-weight: 600;
        line-height: 30px;
        color: var(--black);
        margin: 15px 0;
    }
    
    .news-area .news-design .news-card .news-content .news-date {
        display: flex;
        justify-content: space-between;
        margin: 10px 0;
    }
    
    .news-area .news-design .news-card .news-content span {
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        color: var(--black-6);
    }
    
    .news-area .news-design .news-card .news-content p {
        font-size: 14px;
        font-weight: 500;
        line-height: 23px;
        color: var(--black-6);
        text-align: justify;
        margin-top: 15px;
    }
    
    .news-area .news-card .news-images {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        visibility: hidden;
    }
    
    .news-area .news-card:hover .news-images {
        visibility: visible;
    }
    /* right  */
    
    .news-area .news-search {
        position: relative;
        box-shadow: 0 0 15px var(--shadow);
        border-radius: 4px;
        overflow: hidden;
    }
    
    .news-area .news-search input {
        width: 100%;
        height: 40px;
        font-size: 15px;
        border: none;
        outline: none;
        padding: 6px 10px;
    }
    
    .news-area .news-search button {
        width: 40px;
        height: 40px;
        position: absolute;
        top: 0;
        right: 0;
        background: var(--body-color);
        color: var(--black);
        font-size: 17px;
        border: none;
        cursor: pointer;
        padding: 6px 13px;
        transition: all linear .2s;
    }
    
    .news-area .news-search button:hover {
        background: var(--footer-text);
    }
    
    .news-area .resent-post {
        margin-top: 20px;
    }
    
    .news-area .news-post-header h3 {
        font-weight: 600;
        font-size: 24px;
        color: var(--cyan-color);
        padding: 15px 20px;
        box-shadow: 0 0 6px var(--shadow);
        margin-bottom: 20px;
        display: block;
    }
    
    .news-area .resent-post {
        box-shadow: 0 0 10px var(--shadow);
    }
    
    .news-area .resent-content {
        border-bottom: 1px solid var(--footer-text);
        padding: 16px 10px;
    }
    
    .news-area .resent-post-img {
        width: 100%;
        height: 100px;
        border-radius: 4px;
        overflow: hidden;
        position: relative;
    }
    
    .news-area .resent-post-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .news-area .resent-post-img .news-time {
        position: absolute;
        top: 0;
        left: 0;
        font-size: 12px;
        font-weight: 500;
        color: var(--h2);
        background-color: var(--cyan-color);
        padding: 4px 10px;
    }
    
    .news-area .resent-post-content a {
        color: var(--black-2);
        font-size: 14px;
        font-weight: 400;
    }
    
    .news-area .resent-post-meta ul li {
        display: inline-block;
        font-size: 12px;
        padding-right: 6px;
        margin-right: 6px;
    }
    
    .news-area .resent-post-meta ul li p {
        color: var(--black-2);
        font-size: 14px;
        font-weight: 400;
    }
    /* ===============news page end=============== */
    /* ===============news details page start=============== */
    
    .news-details-area {
        margin: 150px 0 50px 0;
    }
    
    .news-details-area .news-details-design {
        background-color: var(--white);
        box-shadow: 0 0 10px var(--shadow);
        overflow: hidden;
        border-radius: 4px;
    }
    
    .news-details-area .news-details-design .news-details-card .news-details-image {
        width: 100%;
        height: 400px;
        border-radius: 4px;
        overflow: hidden;
        position: relative;
    }
    
    .news-details-area .news-details-design .news-details-card .news-details-image::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: var(--black);
        opacity: 50%;
        transition: all linear .3s;
    }
    
    .news-details-area .news-details-design .news-details-card .news-details-image img {
        width: 100%;
        height: 100%;
    }
    
    .news-details-area .news-details-design .news-details-card .news-details-content {
        padding: 20px 8px;
        border-bottom: 1px solid var(--border-2);
    }
    
    .news-details-area .news-details-design .news-details-content .news-socialicons {
        display: flex;
        justify-content: start;
    }
    
    .news-details-area .news-details-design .news-details-card .news-details-content span {
        font-size: 16px;
        color: var(--black);
        display: block;
    }
    
    .news-details-area .news-details-design .news-details-card .news-details-content h3 {
        display: inline-block;
        font-size: 24px;
        font-weight: 500;
        color: var(--black);
        margin-bottom: 15px;
        transition: all linear .2s;
    }
    
    .news-details-area .news-details-design .news-details-card .news-details-content h3:hover {
        color: var(--common-color);
    }
    
    .news-details-area .news-details-design .news-details-card p {
        font-weight: 400;
        font-size: 14px;
        text-align: justify;
        color: var(--black);
    }
    /* comments  */
    
    .news-details-area .news-details-design .news-details-card .news-comments {
        padding: 20px 10px;
        border-bottom: 1px solid var(--border-2);
    }
    
    .news-details-area .news-details-design .news-details-card .news-details-header h3 {
        font-weight: 600;
        font-size: 20px;
        color: var(--black);
        margin-bottom: 30px;
    }
    
    .news-details-area .news-details-design .news-details-card .news-comments .blog-review {
        margin: 20px 0;
    }
    
    .news-details-area .news-details-design .news-details-card .news-comments .comment-img {
        width: 100%;
        height: 100px;
        border-radius: 4px;
        overflow: hidden;
    }
    
    .news-details-area .news-details-design .news-details-card .news-comments .comment-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .news-details-area .news-details-design .news-details-card .news-comments .comment-details .comment-info {
        display: flex;
        justify-content: space-between;
        color: var(--black);
    }
    
    .news-details-area .news-details-design .news-details-card .news-comments .comment-details .comment-info a {
        color: var(--black);
        transition: all linear .2s;
    }
    
    .news-details-area .news-details-design .news-details-card .news-comments .comment-details .comment-info a:hover {
        color: var(--cyan-color);
    }
    
    .news-details-area .news-details-design .news-details-card .news-comments .comment-details .comment-info h5 {
        font-size: 18px;
    }
    
    .news-details-area .news-details-design .news-details-card .news-comments .comment-details .comment-info .rating-send a {
        font-size: 16px;
    }
    
    .news-details-area .news-details-design .news-details-card .news-comments .comment-details .review-date span {
        font-size: 14px;
        color: var(--black);
    }
    
    .news-details-area .news-details-design .news-details-card .news-comments .news-review:nth-child(3) {
        margin-left: 70px;
    }
    
    .news-details-area .news-details-design .news-details-card .news-comments form input,
    form textarea {
        width: 100%;
        padding: 16px;
        color: var(--black-3);
        font-size: 15px;
        border-radius: 4px;
        border: 1px solid var(--gray);
        outline: none;
        margin-bottom: 25px;
    }
    
    .news-details-area .news-details-design .news-details-card .news-comments form input:focus {
        border: 1px solid var(--cyan-color);
    }
    
    .news-details-area .news-details-design .news-details-card .news-comments form textarea:focus {
        border: 1px solid var(--cyan-color);
    }
    
    .news-details-area .news-details-design .news-details-card .news-comments .comment-btn {
        background-color: var(--cyan-color);
        margin: 0;
    }
    
    .news-details-area .news-details-design .news-details-card .news-comments .comment-btn:hover {
        background-color: var(--common-color)
    }
    /* right  */
    
    .news-details-area .news-search {
        position: relative;
        box-shadow: 0 0 15px var(--shadow);
        border-radius: 4px;
        overflow: hidden;
    }
    
    .news-details-area .news-search input {
        width: 100%;
        height: 40px;
        font-size: 15px;
        border: none;
        outline: none;
        padding: 6px 10px;
    }
    
    .news-details-area .news-search button {
        width: 40px;
        height: 40px;
        position: absolute;
        top: 0;
        right: 0;
        background: var(--body-color);
        color: var(--black);
        font-size: 17px;
        border: none;
        cursor: pointer;
        padding: 6px 13px;
        transition: all linear .2s;
    }
    
    .news-details-area .news-search button:hover {
        background: var(--footer-text);
    }
    
    .news-details-area .resent-post {
        margin-top: 20px;
    }
    
    .news-details-area .resent-post-header h3 {
        font-weight: 600;
        font-size: 24px;
        color: var(--cyan-color);
        padding: 15px 20px;
        box-shadow: 0 0 10px var(--shadow);
        margin-bottom: 20px;
        display: block;
    }
    
    .news-details-area .resent-post {
        box-shadow: 0 0 10px var(--shadow);
    }
    
    .news-details-area .resent-content {
        border-bottom: 1px solid var(--footer-text);
        padding: 16px 10px;
    }
    
    .news-details-area .resent-post-img {
        width: 100%;
        height: 60px;
        border-radius: 4px;
        overflow: hidden;
    }
    
    .news-details-area .resent-post-img img {
        width: 100%;
        height: 100%;
    }
    
    .news-details-area .resent-post-content a {
        color: var(--black-2);
        font-size: 14px;
        font-weight: 400;
    }
    
    .news-details-area .resent-post-meta ul li {
        display: inline-block;
        font-size: 12px;
        padding-right: 6px;
        margin-right: 6px;
    }
    
    .news-details-area .resent-post-meta ul li p {
        color: var(--black-2);
        font-size: 14px;
        font-weight: 400;
    }
    /* ===============news details page end=============== */
    /* =============== meet-professors page start=============== */
    
    .meet-professors-area {
        margin-top: 150px;
    }
    
    .meet-professors-area .our-team-card {
        width: 100%;
        box-shadow: 0 0 3px 0px var(--shadow);
        border-radius: 4px;
        text-align: center;
        overflow: hidden;
    }
    
    .meet-professors-area .our-team-card:hover {
        box-shadow: 0 0 16px 0px var(--footer-text);
    }
    
    .meet-professors-area .our-team-card .our-team-img {
        width: 100%;
        overflow: hidden;
        position: relative;
        cursor: pointer;
    }
    
    .meet-professors-area .our-team-card .our-team-img img {
        width: 100%;
        height: 100%;
    }
    
    .meet-professors-area .our-team-card .our-team-img::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, #eee 0%, black 100%);
        top: 0;
        left: 0;
        opacity: 0;
        transition: all linear .3s;
    }
    
    .meet-professors-area .our-team-card .our-team-img:hover::after {
        opacity: 60%;
    }
    
    .meet-professors-area .our-team-card .our-team-img ul {
        display: flex;
        justify-content: center;
        position: absolute;
        bottom: -30%;
        left: 0%;
        width: 100%;
        margin: 0;
        z-index: 9999;
        transition: all linear .2s;
        height: 60px;
    }
    
    .meet-professors-area .our-team-card .our-team-img:hover ul {
        bottom: 3%;
    }
    
    .meet-professors-area .our-team-card .our-team-img ul li {
        transform: translateY(90%);
    }
    
    .meet-professors-area .our-team-card .our-team-img:hover ul li {
        transform: translateY(0);
    }
    
    .meet-professors-area .our-team-card .our-team-img:hover ul li:nth-child(1) {
        transition: all linear .1s;
    }
    
    .meet-professors-area .our-team-card .our-team-img:hover ul li:nth-child(2) {
        transition: all linear .2s;
    }
    
    .meet-professors-area .our-team-card .our-team-img:hover ul li:nth-child(3) {
        transition: all linear .3s;
    }
    
    .meet-professors-area .our-team-card .our-team-img:hover ul li:nth-child(4) {
        transition: all linear .4s;
    }
    
    .meet-professors-area .our-team-card .our-team-content {
        margin: 15px 0;
    }
    
    .meet-professors-area .our-team-card .our-team-content a {
        color: var(--black);
        font-size: 22px;
        line-height: 40px;
        font-weight: 500;
    }
    
    .meet-professors-area .our-team-card .our-team-content a:hover {
        color: var(--cyan-color);
    }
    
    .meet-professors-area .our-team-card .our-team-content p {
        font-size: 18px;
    }
    /* ===============meet-professors page end=============== */
    /* ===============meet-professors-details page start=============== */
    
    .meet-Professore-details-area {
        margin-top: 150px;
    }
    
    .meet-Professore-details-area .about-design {
        box-shadow: 0 0 10px var(--shadow);
        background-color: var(--gray);
        overflow: hidden;
        border-radius: 4px;
    }
    
    .meet-Professore-details-area .about-img {
        width: 100%;
        height: 450px;
    }
    
    .meet-Professore-details-area .about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .meet-Professore-details-area .about-content {
        padding: 70px 70px;
    }
    
    .meet-Professore-details-area .about-content h2 {
        color: var(--black);
        font-size: 36px;
        font-weight: 700;
        line-height: 35px;
    }
    
    .meet-Professore-details-area .about-content strong {
        color: var(--black-2);
        font-size: 20px;
        font-weight: 500;
        line-height: 30px;
    }
    
    .meet-Professore-details-area .about-content p {
        text-align: justify;
        line-height: 30px;
        margin: 30px 0;
    }
    /* .education-certificate start  */
    
    .education-certificate-area {
        margin: 80px 0;
    }
    
    .education-certificate-area .certificate {
        padding: 80px 0;
        border-top: 1px solid var(--gray);
    }
    
    .education-certificate-area .certificate h1 {
        color: var(--black);
        font-size: 36px;
        line-height: 45px;
        font-weight: 700;
        margin-bottom: 30px;
    }
    
    .education-certificate-area .certificate p {
        color: var(--black);
        font-size: 18px;
        font-weight: 400;
        line-height: 30px;
    }
    
    .education-certificate-area .certificate .certificate-img {
        display: flex;
        justify-content: space-between;
    }
    
    .education-certificate-area .certificate .certificate-img-box {
        display: flex;
        justify-content: space-between;
    }
    
    .education-certificate-area .certificate .certificate-img-box .certificate-img {
        width: 170px;
        height: 145px;
        margin-left: 15px;
    }
    
    .education-certificate-area .certificate .certificate-img-box .certificate-img img {
        width: 100%;
        height: 100%;
    }
    /* education */
    
    .education-certificate-area .education {
        border-top: 1px solid var(--gray);
        padding-bottom: 30px;
    }
    
    .education-certificate-area .education .education-item .date {
        position: relative;
        display: block;
        font-size: 14px;
        line-height: 24px;
        color: var(--cyan-color);
        font-weight: 500;
        margin-bottom: 4px;
        padding-top: 41px;
    }
    
    .education-certificate-area .education .education-item .date::before {
        position: absolute;
        content: '';
        background-color: var(--common-color);
        height: 12px;
        width: 12px;
        left: 0px;
        top: -7px;
    }
    
    .education-certificate-area .education .education-item h4 {
        color: var(--black);
        font-size: 20px;
        line-height: 30px;
        font-weight: 600;
        margin-bottom: 4px;
    }
    
    .education-certificate-area .education .education-item .education-content {
        font-size: 16px;
        color: var(--black-6);
        line-height: 34px;
        font-weight: 400;
    }
    /* .education-certificate end  */
    /* ===============meet-professors-details page end=============== */
    /* ===============blog page start=============== */
    
    .blog-area {
        margin-top: 150px;
    }
    
    .blog-area .blog-card {
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 0 10px 4px var(--shadow);
        border-radius: 8px;
        overflow: hidden;
        transition: all linear .2s;
    }
    
    .blog-area .blog-card:hover {
        transform: translateY(-13px);
    }
    
    .blog-area .blog-card .blog-image {
        width: 100%;
        height: 300px;
        overflow: hidden;
    }
    
    .blog-area .blog-card .blog-image img {
        width: 100%;
        height: 100%;
        transition: all linear .2s;
    }
    
    .blog-area .blog-card:hover .blog-image img {
        transform: scale(1.1);
    }
    
    .blog-area .blog-card .blog-content {
        padding: 20px 10px;
    }
    
    .blog-area .blog-card .blog-content span {
        font-size: 15px;
        color: var(--cyan-color);
    }
    
    .blog-area .blog-card .blog-content h3 {
        font-size: 24px;
        font-weight: 500;
        color: var(--black-3);
        margin-bottom: 15px;
        transition: all linear .2s;
    }
    
    .blog-area .blog-card:hover .blog-content h3 {
        color: var(--common-color);
    }
    
    .blog-area .blog-card .blog-content .blog-btn {
        margin: 15px 0;
        background-color: var(--cyan-color);
        border: none;
        transition: all linear .2sS;
    }
    
    .blog-area .blog-card .blog-content .blog-btn:hover {
        background-color: var(--common-color);
    }
    /* ===============blog page end====================== */
    /* ===============blog details page start=============== */
    
    .blog-details-area {
        margin: 150px 0 50px 0;
    }
    
    .blog-details-area .blog-details-design {
        background-color: var(--white);
        box-shadow: 0 0 10px var(--shadow);
        overflow: hidden;
        border-radius: 4px;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-details-image {
        width: 100%;
        height: 400px;
        border-radius: 4px;
        overflow: hidden;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-details-image img {
        width: 100%;
        height: 100%;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-details-content {
        padding: 20px 8px;
        border-bottom: 1px solid var(--border-2);
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-details-content .author-socialicons {
        display: flex;
        justify-content: start;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-details-content span {
        font-size: 16px;
        color: var(--black);
        display: block;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-details-content h3 {
        display: inline-block;
        font-size: 24px;
        font-weight: 500;
        color: var(--black);
        margin-bottom: 15px;
        transition: all linear .2s;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-details-content h3:hover {
        color: var(--common-color);
    }
    
    .blog-details-area .blog-details-design .blog-details-card p {
        font-weight: 400;
        font-size: 14px;
        text-align: justify;
        color: var(--black);
    }
    
    .blog-details-area .blog-details-design .blog-details-card .bolg-details-top {
        padding: 20px 0;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .bolg-details-top .bolg-details-top-img {
        width: 100%;
        height: 220px;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .bolg-details-top .bolg-details-top-img img {
        width: 100%;
        height: 100%;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .bolg-details-top .bolg-details-top-content {
        padding: 22px 8px;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-details-author {
        background-color: var(--gray);
        padding: 20px;
        margin: 30px 0;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-details-author .blog-details-author-img {
        width: 100%;
        height: 150px;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-details-author .blog-details-author-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-details-author .blog-details-author-content .author-name h3 {
        font-weight: 600;
        font-size: 18px;
        color: var(--black);
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-details-author .blog-details-author-content p {
        color: var(--black);
        margin: 10px 0;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-details-author .blog-details-author-content .author-name span {
        font-weight: 400;
        font-size: 16px;
        color: var(--cyan-color);
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-comments {
        padding: 20px 10px;
        border-bottom: 1px solid var(--border-2);
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-details-header h3 {
        font-weight: 600;
        font-size: 20px;
        color: var(--black);
        margin-bottom: 30px;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-comments .blog-review {
        margin: 20px 0;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-comments .comment-img {
        width: 100%;
        height: 100px;
        border-radius: 4px;
        overflow: hidden;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-comments .comment-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-comments .comment-details .comment-info {
        display: flex;
        justify-content: space-between;
        color: var(--black);
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-comments .comment-details .comment-info a {
        color: var(--black);
        transition: all linear .2s;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-comments .comment-details .comment-info a:hover {
        color: var(--cyan-color);
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-comments .comment-details .comment-info h5 {
        font-size: 18px;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-comments .comment-details .comment-info .rating-send a {
        font-size: 16px;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-comments .comment-details .review-date span {
        font-size: 14px;
        color: var(--black);
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-comments .blog-review:nth-child(3) {
        margin-left: 70px;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-comments form input,
    form textarea {
        width: 100%;
        padding: 16px;
        color: var(--black-3);
        font-size: 15px;
        border-radius: 4px;
        border: 1px solid var(--gray);
        outline: none;
        margin-bottom: 25px;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-comments form input:focus {
        border: 1px solid var(--cyan-color);
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-comments form textarea:focus {
        border: 1px solid var(--cyan-color);
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-comments .comment-btn {
        background-color: var(--cyan-color);
        margin: 0;
    }
    
    .blog-details-area .blog-details-design .blog-details-card .blog-comments .comment-btn:hover {
        background-color: var(--common-color);
    }
    /* right  */
    
    .blog-details-area .blog-search {
        position: relative;
        box-shadow: 0 0 15px var(--shadow);
        border-radius: 4px;
        overflow: hidden;
    }
    
    .blog-details-area .blog-search input {
        width: 100%;
        height: 40px;
        font-size: 15px;
        border: none;
        outline: none;
        padding: 6px 10px;
    }
    
    .blog-details-area .blog-search button {
        width: 40px;
        height: 40px;
        position: absolute;
        top: 0;
        right: 0;
        background: var(--body-color);
        color: var(--black);
        font-size: 17px;
        border: none;
        cursor: pointer;
        padding: 6px 13px;
        transition: all linear .2s;
    }
    
    .blog-details-area .blog-search button:hover {
        background: var(--footer-text);
    }
    
    .blog-details-area .resent-post {
        margin-top: 20px;
    }
    
    .blog-details-area .resent-post-header h3 {
        font-weight: 600;
        font-size: 24px;
        color: var(--cyan-color);
        padding: 15px 20px;
        box-shadow: 0 0 10px var(--shadow);
        margin-bottom: 20px;
        display: block;
    }
    
    .blog-details-area .resent-post {
        box-shadow: 0 0 10px var(--shadow);
    }
    
    .blog-details-area .resent-content {
        margin: 30px 0px;
        border-bottom: 1px solid var(--footer-text);
        padding: 16px 10px;
    }
    
    .blog-details-area .resent-post-img {
        width: 100%;
        height: 100px;
        border-radius: 4px;
        overflow: hidden;
    }
    
    .blog-details-area .resent-post-img img {
        width: 100%;
        height: 100%;
    }
    
    .blog-details-area .resent-post-content a {
        color: var(--black-2);
        font-size: 14px;
        font-weight: 400;
    }
    
    .blog-details-area .resent-post-meta ul li {
        display: inline-block;
        font-size: 12px;
        padding-right: 6px;
        margin-right: 6px;
    }
    
    .blog-details-area .resent-post-meta ul li p {
        color: var(--black-2);
        font-size: 14px;
        font-weight: 400;
    }
    /* ===============blog details page end=============== */
    /* ===============contact page start=============== */
    
    .contact-area {
        margin-top: 150px;
    }
    
    .contact-area .contact-content {
        height: 530px;
        box-shadow: 0 0 5px 3px var(--shadow);
        padding: 20px;
        border-radius: 4px;
    }
    
    .contact-area .contact-content h3 {
        font-size: 24px;
        font-weight: 500;
        color: var(--black);
        margin-bottom: 55px;
    }
    
    .contact-area .contact-content p {
        font-size: 16px;
        font-weight: 400;
        color: var(--black-2);
    }
    
    .contact-area .contact-content .contact-info .icon-content {
        margin-left: 10px;
    }
    
    .contact-area .contact-content .contact-info strong {
        color: var(--black);
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 35px;
        font-weight: 500;
    }
    
    .contact-area .contact-content .contact-info .icon-box a i:hover {
        color: var(--white);
        background-color: var(--cyan-color);
    }
    
    .contact-area .contact-content .contact-info .icon-box a i {
        font-size: 18px;
        color: var(--cyan-color);
        background-color: transparent;
        border-radius: 4px;
    }
    
    .contact-area .contact-content .contact-info li {
        display: flex;
    }
    
    .contact-area .contact-content .contact-info a {
        display: inline-block;
        font-size: 20px;
        font-weight: 400;
    }
    
    .contact-area .contact-content .contact-icons span {
        display: block;
        font-weight: 400;
        font-size: 20px;
        line-height: 30px;
        color: #333333;
    }
    
    .contact-area .contact-content .contact-icons ul {
        display: flex;
        padding: 0;
    }
    
    .contact-area .contact-content .contact-icons ul li {
        margin-top: 6px;
        transition: all linear .2s;
    }
    
    .contact-area .contact-content .contact-icons ul li:nth-child(1):hover {
        margin-top: -6px;
    }
    
    .contact-area .contact-content .contact-icons ul li:nth-child(2):hover {
        margin-top: -6px;
    }
    
    .contact-area .contact-content .contact-icons ul li:nth-child(3):hover {
        margin-top: -6px;
    }
    
    .contact-area .contact-content .contact-icons ul li:nth-child(4):hover {
        margin-top: -6px;
    }
    /* form  */
    
    .contact-area .contact-form {
        height: 530px;
        box-shadow: 0 0 5px 3px var(--shadow);
        padding: 20px;
        border-radius: 4px;
    }
    
    .contact-area .contact-form form h3 {
        font-size: 24px;
        font-weight: 500;
        color: var(--black);
        margin-bottom: 20px;
    }
    
    .contact-area .contact-form form input,
    form textarea {
        width: 100%;
        padding: 16px;
        color: #333333;
        font-size: 15px;
        border-radius: 4px;
        border: 1px solid var(--gray);
        outline: none;
        margin-bottom: 9px;
    }
    
    .contact-area .contact-form form input:focus {
        border: 1px solid var(--cyan-color);
    }
    
    .contact-area .contact-form form textarea:focus {
        border: 1px solid var(--cyan-color);
    }
    
    .contact-area .contact-btn {
        background-color: var(--cyan-color);
        margin: 0;
    }
    
    .contact-area .contact-btn:hover {
        background-color: var(--common-color);
    }
    
    .contact-area .contact-form {
        box-shadow: 0 0 5px 3px var(--shadow);
    }
    
    .contact-area .contact-form {
        box-shadow: 0 0 5px 3px var(--shadow);
    }
    /* contact-map  */
    
    .contact-area .contact-map iframe {
        width: 100%;
        height: 530px;
        box-shadow: 0 0 5px 3px var(--shadow);
        border-radius: 4px;
    }
    /* ===============contact page end=============== */
    /* ===============error page start=============== */
    
    .error-area {
        margin: 150px 0 40px 0;
    }
    
    .error-area .error-content {
        width: 700px;
        height: 500px;
        align-items: center;
        text-align: center;
        margin: 0 auto;
        padding-top: 60px;
    }
    
    .error-area .error-content h1 {
        display: inline-block;
        font-size: 200px;
        line-height: 200px;
        color: var(--cyan-color);
        font-weight: 700;
        margin-bottom: 30px;
    }
    
    .error-area .error-content h2 {
        color: var(--black);
        font-size: 44px;
        line-height: 52px;
        font-weight: 600;
        margin-bottom: 21px;
    }
    /* ===============error page end=============== */