:root{
    --primary-color:#0A2947;
    --secondary-color:#d32f2f;
    --accent-color:#f8b400;
    --blue: rgb(29,78,216);
    --green: rgb(5,150,105);
    --purple: rgb(109, 40, 217);
    --white:#fff;
    --black:#000;
    --heading-font:"Poppins",sans-serif;
    --body-font:"Roboto",sans-serif;
    --container-width:1200px;
    --transition:.3s ease;
    --border-radius:8px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

ul{list-style:none;}
a{text-decoration:none;}

.container{
    width:min(var(--container-width),calc(100% - 32px));
    margin-inline:auto;
}

.header-top{
    background:var(--primary-color);
    color:#fff;
    padding:1px 0px;
}

.top-info{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    font:400 14px var(--body-font);
    padding: 12px 0;
    margin: 0px;
}

.top-info li{
    display:flex;
    gap:12px;
    align-items:center;
    justify-content: center;
}

.header-main-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:6px 0;
}

.header-logo{
    display:flex;
    align-items:center;
    gap:14px;
    flex:1;
    min-width:0;
}

.logo{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.logo img{
    height:clamp(62px,6vw,82px);
    width:auto;
}

.logo-estd{
    font-size:12px;
    color:#a17900;
    font-weight:600;
}

.logo-title h1{
    color:var(--primary-color);
    font:700 clamp(20px,2.3vw,32px) var(--heading-font);
    line-height:1.15;
}

.logo-title p{
    color:#d32f2f;
    font:500 clamp(12px,1vw,16px) var(--body-font);
}

.header-actions{
    display:flex;
    align-items:center;
    gap:18px;
}

.naac-logo{
    height:clamp(58px,5vw,82px);
    width:auto;
}

.btn-outline-primary{
    border:2px solid var(--primary-color);
    border-radius:50px;
    padding:9px 18px;
    color:var(--primary-color);
    font-weight:600;
    transition:.3s;
}

.btn-outline-primary:hover{
    background:var(--primary-color);
    color: var(--white);
}

.header-bar{
    display:none;
    width:44px;
    height:44px;
    border:none;
    background:transparent;
    font-size:28px;
    cursor:pointer;
}

.header-navbar{
    background:var(--primary-color);
    position:sticky;
    top:0;
    z-index:999;
   
}

.navbar-menu{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom: 0px;
}

.nav-dropdown:hover{
    background-color: #363f62;
}

.navbar-menu>li{
    position:relative;
}

.navbar-menu>li>a{
    display:flex;
    align-items:center;
    gap:6px;
    padding:15px 0;
    color: var(--white);
    font:500 15px var(--body-font);
}

.nav-dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:250px; 
    /* background: rgba(18, 57, 93, 0.9); */
    background: var(--primary-color);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition: var(--transition);
    border-radius:0 0 8px 8px;
}
.mega-menu{
    min-width: 500px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 40px;
    padding: 15px;
}

.mega-menu::after{
    content: "";
    position: absolute;
    top: 15px;
    bottom: 15px;
    width: 1px;
    left: 50%;
    background: gold;
}
.nav-dropdown-menu li a{
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: white;
    transition: color .3s;
}

.nav-dropdown-menu li a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 1px;
    background: white;
    transform: scaleX(0);
    transform-origin: right;
   
}

.nav-dropdown-menu li a:hover{
    color: #aacbdc;
}

.nav-dropdown-menu li a:hover::after{
    transform: scaleX(1);
    transform-origin: left;
     transition: transform .7s ease;
}

.nav-dropdown:hover>.nav-dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.nav-dropdown-menu a{
    display:block;
    padding:8px 20px;
    color: var(--white);
}

.mobile-login{
display:none;
}

/* slider  swipper js*/
      .swiper {
        width: 100%;
        max-height: 500px;
      }

      .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #444;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

/* ==========================
   Welcome Section
========================== */

.welcome {
    padding: 40px 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.welcome-wrapper {
    display: grid;
    grid-template-columns: 1fr 480px;
    align-items: center;
    gap: 50px;
}

.welcome-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-header {
    margin-bottom: 20px;
}

.welcome-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.welcome-title {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.welcome-divider {
    width: 250px;
    margin-bottom: 18px;
}

.welcome-tagline {
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    color: #c48d25;
}

.welcome-description p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin-bottom: 25px;
}

.welcome-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: .3s;
}

.welcome-btn:hover {
    background: var(--green);
}

.welcome-card {
    display: flex;
    justify-content: center;
}

/* ==========================
   Principal Card
========================== */

.principal-card {
    display: grid;
    grid-template-columns: 55% 45%;
    width: 100%;
    max-width: 500px;
    background: var(--primary-color);
    border: 3px solid var(--accent-color);
    border-radius: 35px;
    overflow: hidden;
}

.principal-content {
    padding: 30px;
    color: var(--white);
}

.quote {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-color);
    font-size: 24px;
}

.principal-message {
    margin: 18px 0;
    font-size: 22px;
    line-height: 1.5;
    font-family: Georgia, serif;
}

.middle-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d7a43b;
    margin: 20px 0;
}

.middle-divider span {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,.3);
}

.principal-info {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-box {
    width: 48px;
    height: 48px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.details h3 {
    color: var(--accent-color);
    font-size: 20px;
    margin-bottom: 5px;
}

.details p {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 4px;
}

.details h4 {
    color: var(--accent-color);
    font-size: 15px;
    font-weight: 500;
}

.principal-image {
    overflow: hidden;
    border-left: 3px solid var(--accent-color);
    border-radius: 70px 0px 0px 70px;
}

.principal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
     transition: transform 0.5s ease;
}

.principal-image:hover img{
    transform: scale(1.08);
}

@media (max-width: 991px) {
    .welcome-wrapper {
        grid-template-columns: 1fr;
    }

    .welcome-content {
        order: 2;
    }
    .welcome-card {
        order: 1;
    }

    .welcome-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .welcome {
        padding: 40px 0;
    }
    .welcome-title {
        font-size: 32px;
    }

    .welcome-tagline {
        font-size: 18px;
    }
}

@media (max-width: 510px) {

    .welcome-title {
        font-size: 28px;
    }

    .welcome-divider {
        width: 180px;
    }

    .welcome-description p {
        font-size: 16px;
    }

    .principal-card {
        max-width: 100%;
        height: 280px;
    }
    .principal-image{
        object-fit: contain;
        height: 100%;
        width: auto;
    }
    .principal-message, .quote{
        display: none;
    }
   
    .icon-box{
        height: 30px;
        width: 30px;
        align-items: center;
        display: none;
    }

    .details > h3{
        font-size: 14px;
    }


}
/* ==========================
        QUICK LINKS
========================== */

.quick{
    padding:40px 0;
    background:#f8fafc;
}

.quick-header{
    text-align:center;
    margin-bottom:30px;
}

.quick-subtitle{
    display:inline-block;
    font-size:14px;
    font-weight:600;
    color:#b48a4d;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:10px;
}

.quick-title{
    color: var(--primary-color);
    margin-bottom:12px;
}

.quick-text{
    max-width:600px;
    margin:auto;
    color:#6b7280;
    line-height:1.7;
}

.quick-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    justify-content:center;
    gap:24px;
}

.quick-card{
    background: var(--white);
    border-radius:18px;
    padding:28px;
    margin: 0px 10px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    display:flex;
    flex-direction:column;
}

.card-header{
    display:flex;
    gap:18px;
    margin-bottom:20px;
}

.card-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color: var(--white);
    font-size:22px;
    flex-shrink:0;
}

.program .card-icon{
    background: var(--blue);
}

.exam .card-icon{
    background: var(--green);
}

.academic .card-icon{
    background: var(--purple);
}

.card-title{
    color: var(--primary-color);
    margin-bottom:8px;
    font-size: 22px;
    font-weight: 700;
}

.card-text{
    font-size:14px;
    color:#6b7280;
    line-height:1.6;
}

.feature-list{
    padding:0;
    margin:0;
}

.feature-list li{
    margin-bottom:8px;
}

.feature-list a{
    display:flex;
    align-items:center;
    gap:15px;
    padding:10px;
    border-radius: var(--border-radius);
    text-decoration:none;
    color: var(--primary-color);
    background: var(--white);
    box-shadow:0 3px 12px rgba(0,0,0,.05);
    transition:.3s;
}

.feature-list a:hover{
    transform:translateX(5px);
}

.feature-icon{
    width:42px;
    height:42px;
    border-radius: var(--border-radius);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;
}

.program .feature-icon{
    background:#eff6ff;
    color: var(--blue);
}

.exam .feature-icon{
    background:#ecfdf5;
    color: var(--green);
}

.academic .feature-icon{
    background:#f5f3ff;
    color: var(--purple);
}

.feature-list span{
    flex:1;
    font-size:14px;
    font-weight:500;
}

.card-btn{
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    bottom: 10px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;

    /* Existing Color */
    color: #fff;
    background: #0A2947;

    /* Animation ke liye */
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color .3s ease;
}

.card-btn::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
}

.card-btn::before{
    content: "";
    position: absolute;
    inset: 0;
    width: 0;
    background: #071d34;
    transition: width .4s ease;
    z-index: -1;
}

.card-btn:hover::before{
    width: 100%;
}

.program .card-btn{
    background: var(--blue);
   color: var(--white);
}

.exam .card-btn{
    background: var(--green);
   color: var(--white);
}
.academic .card-btn{
    background: var(--purple);
    color: var(--white);
}

/*==================================
            NOTICE SECTION
===================================*/

.notice{
    padding:50px 0;
    background: var(--white);
}

.section-heading{
    max-width:650px;
    margin:0 auto 45px;
    text-align:center;
}

.section-subtitle{
    display:inline-block;
    margin-bottom:8px;
    font-size:13px;
    font-weight:600;
    color:#c28b2c;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title{
    margin-bottom:12px;
    font-size:34px;
    font-weight:700;
    color: var(--primary-color);
}

.section-description{
    font-size:15px;
    line-height:1.7;
    color:#666;
}

.notice-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.notice-card{
    height:560px;
    background: var(--white);
    border:1px solid #e6ecf2;
    border-radius:16px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
}

.notice-card__header{
    display:flex;
    align-items:center;
    gap:14px;
    padding:12px;
    background: var(--primary-color);
    color: var(--white);
}

.notice-card__icon{
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.notice-card__heading h3{
    font-size:19px;
    font-weight:600;
    margin-bottom:4px;
}

.notice-card__heading span{
    font-size:13px;
    opacity:.85;
}

.notice-card__body{
    flex:1;
    overflow:hidden;
    padding:18px;
}

.notice-marquee{
    height:100%;
    overflow:hidden;
}

.notice-track{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.notice-item{
    display:flex;
    gap:14px;
    padding:12px;
    border:1px solid #edf1f5;
    border-radius:12px;
    transition:.25s;
    color:#222;
    background:#fff;
}

.notice-item:hover{
    border-color:#0A2947;
    background:#f8fbff;
}

.notice-date{
    width:58px;
    flex-shrink:0;
    border-radius:10px;
    overflow:hidden;
    text-align:center;
}

.notice-date .day{
    display:block;
    padding:8px 0 4px;
    background:#0A2947;
    color:#fff;
    font-size:18px;
    font-weight:700;
}

.notice-date .month{
    display:block;
    padding:5px 0;
    background:#18426b;
    color:#fff;
    font-size:11px;
}

.notice-date .year{
    display:block;
    padding:4px 0;
    background:#f3f6fa;
    color:#666;
    font-size:10px;
}

.notice-content{
    flex:1;
}

.notice-content h4{
    margin-bottom:8px;
    font-size:15px;
    line-height:1.5;
    font-weight:500;
    color:#222;
}

.notice-card__footer{
    margin-top:auto;
    padding:16px;
    border-top:1px solid #edf1f5;
}

.notice-card__footer a{
    display:flex;
    justify-content:center;
    align-items:center;
    height:46px;
    border-radius:10px;
    background:#0A2947;
    color:#fff;
    font-size:14px;
    font-weight:600;
    transition:.25s;
}

.notice-card__footer a:hover{
    background:#12395d;
}

/* ---------- Responsive ---------- */

@media (max-width:992px){
    .notice-wrapper{
        grid-template-columns:1fr;
    }
    .notice-card{
        height:520px;
    }
}

@media (max-width:576px){
    .notice{
        padding:55px 0;
    }
    .section-title{
        font-size:28px;
    }
    .section-description{
        font-size:14px;
    }
    .notice-card{
        height:500px;
    }
    .notice-card__header{
        padding:16px;
    }
    .notice-card__heading h3{
        font-size:17px;
    }
    .notice-item{
        padding:12px;
    }
    .notice-content h4{
        font-size:14px;
    }
}
/*==============================
  testimonial Section
==============================*/

.testimonialSwiper{
    padding:50px 10px 70px;
}

.testimonial-card{
    position:relative;
    height:420px;
    width: 100%;
    overflow:hidden;
}

.testimonial-image{
    height:68%;
    width: 100%;
    overflow:hidden;
}

.testimonial-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.testimonial-text{
    display: none;
     opacity:0;
    transform:translateY(20px);
    color:#fff;
    text-align:center;
    line-height:1.8;
    font-size:15px;
}

.testimonial-body{
    height:42%;
    padding:0px 25px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
}

.testimonial-info{
    text-align:center;
}

.testimonial-info h4{
    font-size:24px;
    color:#0A2947;
    margin-bottom:8px;
    font-weight:700;
}

.testimonial-info span{
    font-size:15px;
    color:#777;
}

/* important link */

 .important-links{
    padding:60px 30px;
}

.website-title{
    text-align: center;
    padding-bottom: 30px;
}

.marquee{
    overflow:hidden;
    width:100%;
     position:relative;
}

.marquee-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation:marquee 40s linear infinite;
    will-change:transform;
}

.marquee:hover .marquee-track{
    animation-play-state: paused;
}

.link-card{
    flex:0 0 auto;
    width:220px;
    height:90px;
    border-radius:8px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.link-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

@keyframes marquee{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}


/*==========================================
                FOOTER
==========================================*/

.footer{
    background:linear-gradient(135deg,#071d35 0%,#0b2d50 55%,#14436f 100%);
    color:#fff;
    padding:70px 0 25px;
    position:relative;
    overflow:hidden;
}

/* Decorative Background */

.footer::before,
.footer::after{
    content:"";
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    z-index:1;
}

.footer::before{
    width:320px;
    height:320px;
    top:-170px;
    right:-120px;
}

.footer::after{
    width:240px;
    height:240px;
    bottom:-120px;
    left:-100px;
}

.footer .container{
    position:relative;
    z-index:2;
}

.footer-wrapper{
    display:flex;
    /* justify-content:space-between; */
    justify-content: center;
    flex-wrap:wrap;
    gap:50px;
}

.footer-column{
    flex:1;
    min-width:240px;
}

.footer-column h4{
    font-size:24px;
    font-weight:600;
    margin-bottom:28px;
    position:relative;
    padding-bottom:12px;
}

.footer-column h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:55px;
    height:3px;
    border-radius:20px;
    background:#ffc107;
}

.footer-column ul{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-column ul li{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:16px;
    line-height:1.7;
    color:#d9e5f3;
}

.footer-column ul li:last-child{
    margin-bottom:0;
}

.footer-column ul li i{
    color:#ffc107;
    font-size:17px;
    min-width:18px;
    margin-top:5px;
}

.footer-column ul li a{
    color:#d9e5f3;
    text-decoration:none;
    transition:.35s ease;
}

.footer-column ul li a:hover{
    color:#ffc107;
    padding-left:6px;
}

.footer-icon{
    margin-top:45px;
}

.social-links{
    display:flex;
    justify-content:center;
    gap:18px;
}

.social-links a{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(255,255,255,.08);
    color:#fff;
    text-decoration:none;
    font-size:22px;
    transition:.35s;
}

.social-links a:hover{
    background:#ffc107;
    color:#0b2d50;
    transform:translateY(-6px);
    box-shadow:0 10px 20px rgba(0,0,0,.25);
}

.social-links a i{
    transition:.35s;
}

.footer hr{
    margin:40px 0 20px;
    border-color:rgba(255,255,255,.15);
}

.footer-bottom{
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:#cfd8e3;
    font-size:15px;
    letter-spacing:.3px;
}

@media(max-width:992px){
    .footer{
        padding:60px 0 25px;
    }
    .footer-wrapper{
        gap:40px;
    }
    .footer-column{
        min-width:calc(50% - 20px);
        text-align:center;
    }

    .footer-column h4::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-column ul li{
        justify-content:center;
        align-items:center;
        text-align:center;
    }

    .footer-icon{
        margin-top:35px;
    }

}

@media(max-width:768px){
    .footer{
        padding:55px 0 20px;
    }
    .footer-wrapper{
        gap:35px;
    }

    .footer-column{
        min-width:100%;
    }

    .footer-column h4{
        font-size:21px;
        margin-bottom:22px;
    }
    .footer-column ul li{
        justify-content:center;
        align-items:center;
        font-size:15px;
    }

    .social-links{
        gap:15px;
    }
    .social-links a{
        width:46px;
        height:46px;
        font-size:19px;
    }
    .footer hr{
        margin:30px 0 18px;
    }

    .footer-bottom p{
        font-size:14px;
    }

}

/* responsive code */
/* ==========================================
   1400px
========================================== */

@media (min-width:1600px){
   
    :root{
    --container-width:1400px;
}

.logo-title h1{
    font-size:36px;
}

.logo img{
    height:90px;
}

.naac-logo{
    height:90px;
}
}

/* ==========================================
   1200px
========================================== */

@media (max-width:1200px){
    .navbar-menu{
    gap:16px;
}

.navbar-menu>li>a{
    font-size:14px;
}

.logo-title h1{
    font-size:28px;
}
}

/* ==========================================
   992px
========================================== */

@media (max-width:992px){
    .mobile-login{
display:block;
}

.mobile-login a{
background:#d32f2f;
margin:15px;
border-radius:8px;
justify-content:center;
font-weight:600;
}

.header-top{display:none;}
.btn-outline-primary{display:none;}
.header-bar{display:flex;align-items:center;justify-content:center;}
.header-navbar{
    position:static;
}

.navbar-menu{
    display:block;
    max-height:0;
    overflow:hidden;
    transition:max-height .35s;
    background:var(--primary-color);
}

.header-navbar.active .navbar-menu{
    max-height:2500px;
}

.navbar-menu>li{
    border-top:1px solid rgba(255,255,255,.08);
}

.navbar-menu>li>a{
    justify-content:space-between;
    padding:15px 20px;
}
.nav-dropdown-menu{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
    min-width:100%;
    background:#14395f;
}

.nav-dropdown.active>.nav-dropdown-menu{
    display:block;
}

.nav-dropdown-menu a{
    padding:12px 40px;
}

.mega-menu::after {
        content: none;
    }
}

/* ==========================================
   768px
========================================== */

@media (max-width:768px){
   .header-main-wrapper{
    align-items:center;
}

.logo-title p{
    display:none;
}

.logo img{
    height:70px;
}

.logo-title h1{
    font-size:18px;
}

.header-actions{
    gap:10px;
}

.naac-logo{
    height:52px;
}



}

/* ==========================================
   576px
========================================== */

@media (max-width:576px){
    .logo img{
    height:60px;
}

.naac-logo{
    height:45px;
}

.logo-title h1{
    font-size:16px;
}

.logo-estd{
    font-size:10px;
}

.navbar-menu>li>a{

    padding:14px 18px;

}
}

/* ==========================================
   400px
========================================== */

@media (max-width:400px){
    .container{

    width:min(100% - 16px);

}

.logo img{
    height:60px;
}

.logo-title h1{
    font-size:16px;
}

.logo-estd{
    font-size:10px;
}

.naac-logo{
    height:46px;
}

.header-bar{
    width:40px;
    height:40px;
    font-size:24px;
}
}
