

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.top-header{
    width:100%;
    background: #001f54;
    color:#fff;
    font-size:15px;
}

.top-header .container{
    max-width:1600px;
    margin:auto;
    padding:10px 5%;
    display:flex;
    justify-content:flex-end; 
    align-items:center;
}

.top-right{
    display:flex;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
}

.top-right a{
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:8px;
    transition:0.3s;
}

.top-right a:hover{
    color:#ffd54f;
}

@media(max-width:768px){
    .top-header .container{
        justify-content:center; 
    }

    .top-right{
        justify-content:center;
        gap:15px;
    }
}


@media(max-width:480px){
    .top-header{
        font-size:13px;
    }

    .top-right{
        flex-direction:column; 
        gap:8px;
        text-align:center;
    }

    .top-right a{
        justify-content:center;
    }
}










.header-container{
    max-width:1400px;
    margin:0 auto;
    padding:8px 40px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:80px;
  
}
.school-logo-box{
    display:flex;
    align-items:center;
    justify-content:center;
}
.school-logo-box a{
    display:block;
    line-height:0;
}
.school-logo-box img{
    height:120px;
    width:auto;
    max-width:100%;
    display:block;
}
.school-info-box{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}
.school-info-box img{
    height:70px;
    width:auto;
    display:block;
    margin-bottom:5px;
}
.school-email{
    margin-top:8px;
    padding:8px 18px;
    background:maroon;
    color:#fff;
    font-size:14px;
    font-weight:600;
    border-radius:30px;
    box-shadow:0 5px 15px rgba(13,110,253,.25);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    text-align:center;
    transition:all .3s ease;
    animation:floatMail 2.5s ease-in-out infinite;
}
.school-email a{
    color:#fff;
    text-decoration:none;
}
.school-email:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(13,110,253,.4);
}
@keyframes floatMail{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-4px);
    }
    100%{
        transform:translateY(0);
    }
}
@media (max-width:768px){
    .school-email{
        font-size:12px;
        padding:7px 14px;
        border-radius:25px;
    }
}
@media (max-width:480px){

    .school-email{
        font-size:11px;
        padding:6px 12px;
        max-width:95%;
        word-break:break-word;
    }
}


@media (max-width:360px){

    .school-email{
        font-size:10px;
        padding:5px 10px;
    }
}



@media (max-width:992px){

    .header-container{
        padding:8px 25px;
        gap:50px;
    }
    .school-logo-box img{
        height:75px;
    }
    .school-info-box img{
        height:50px;
    }
}

@media (max-width:768px){

    .header-container{
        flex-direction:row;
        justify-content:center;
        align-items:center;
        gap:20px;
        flex-wrap:nowrap;
        padding:8px 10px;
    }

    .school-logo-box img{
        height:70px;
    }

    .school-info-box img{
        height:40px;
    }

}
@media (max-width:480px){

    .header-container{
        padding:8px 10px;
        gap:10px;
    }
    .school-logo-box img{
        height:50px;
    }
    .school-info-box img{
        height:35px;
    }
}

@media (max-width:360px){

    .school-logo-box img{
        height:45px;
    }

    .school-info-box img{
        height:30px;
    }

 
}
































 .custom-navbar{
    background:#001f54;
    padding:10px 10px;
    box-shadow:0 10px 30px rgba(220,38,38,.25);
    position:sticky;
    top:0;
    z-index:1000;
}

.custom-navbar .container,
.custom-navbar .container-fluid{
    width:100%;
}

.header-middle-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    flex-wrap:wrap;
}

.custom-navbar .nav-link{
    color:#fff !important;
    font-size:16px !important;
    font-weight:500;
    padding:3px 12px !important;
    border-radius:6px;
    position:relative;
    transition:.3s ease;
    text-decoration:none !important;
    border:none !important;
    box-shadow:none !important;
}

.custom-navbar .nav-link:hover{
    background:rgba(255,255,255,.15);
    transform:translateY(-2px);
    text-decoration:none !important;
}

.custom-navbar .nav-link.active{
    background:rgba(255,255,255,.20);
    text-decoration:none !important;
}
.custom-navbar .dropdown-toggle{
    position:relative;
}

.custom-navbar .dropdown-toggle::after{
    display:none;
}

/* DROPDOWN UNDERLINE REMOVE */
.custom-navbar .dropdown-toggle::before{
    display:none !important;
}

.custom-navbar .dropdown{
    position:relative;
}

.custom-navbar .dropdown-menu{
    display:block;
    opacity:0;
    visibility:hidden;
    transform:translateY(12px);
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    padding:8px;
    margin-top:0;
    border:none;
    border-radius:12px;
    background:rgba(255,255,255,.97);
    backdrop-filter:blur(20px);
    box-shadow:0 20px 50px rgba(0,0,0,.18);
    transition:opacity .35s ease,
               transform .35s ease,
               visibility .35s ease;
    pointer-events:none;
}

.custom-navbar .dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    pointer-events:auto;
}

.custom-navbar .dropdown::after{
    content:"";
    position:absolute;
    left:0;
    top:100%;
    width:100%;
    height:15px;
}

.custom-navbar .dropdown-item{
    position:relative;
    padding:10px 14px;
    border-radius:8px;
    color:#333;
    font-size:14px;
    transition:.3s ease;
    text-decoration:none !important;
}

.custom-navbar .dropdown-item:hover{
    background:#ffe4e4;
    color:#dc2626;
    padding-left:20px;
    text-decoration:none !important;
}


.custom-navbar .dropdown-item::after{
    display:none !important;
}

.custom-navbar .navbar-toggler{
    background:#fff;
    border:none;
    padding:6px 10px;
    border-radius:8px;
}

.custom-navbar .navbar-toggler:focus{
    box-shadow:none;
}
/* MAIN MENU */
 .navbar-nav .nav-link{
    position: relative;
    color: #fff !important;
    text-decoration: none;
} 


.navbar-nav .nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #fff;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after{
    width: 100%;
}

.navbar-nav .nav-link::after{
    display:none !important;
}

.dropdown-menu .dropdown-item::after{
    display:none !important;
}

/* DROPDOWN FIX */
.dropdown-menu{
    border: none;
}

/* DROPDOWN ITEM */
.dropdown-menu .dropdown-item{
    position: relative;
    color: #000;
    padding: 8px 15px;
    text-decoration: none;
}

/* IMPORTANT FIX (underline visible properly) */
.dropdown-menu .dropdown-item::after{
    content: "";
    position: absolute;
    left: 15px;
    bottom: 4px;
    height: 2px;
    width: 0;
    background: #dc2626;
    transition: 0.3s;
}

.dropdown-menu .dropdown-item:hover::after{
    width: 70%;
}
@media (max-width:991px){

    .custom-navbar{
        padding:8px;
    }

    .custom-navbar .navbar-toggler{
        width:40px;
        height:40px;
        margin-left:auto;
        padding:0;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .custom-navbar .navbar-toggler-icon{
        width:18px;
        height:18px;
    }

    .custom-navbar .navbar-collapse{
        margin-top:10px;
        background:#dc2626;
        border-radius:12px;
        padding:12px;
    }

    .custom-navbar .navbar-nav{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        gap:5px;
    }

    .custom-navbar .nav-item{
        width:100%;
    }

    .custom-navbar .nav-link{
        width:100%;
        display:block;
        padding:12px !important;
        font-size:15px !important;
    }

    .custom-navbar .dropdown-menu{
        position:static;
        display:none;
        opacity:1 !important;
        visibility:visible !important;
        transform:none !important;
        width:100%;
        margin-top:5px;
        background:#fff;
        border-radius:8px;
        box-shadow:none;
        padding:6px;
        pointer-events:auto;
    }

    .custom-navbar .dropdown-menu.show{
        display:block;
    }

    .custom-navbar .dropdown-item{
        padding:10px 12px;
        font-size:14px;
    }

    .custom-navbar .dropdown::after{
        display:none;
    }
}

@media (max-width:768px){

    .custom-navbar .nav-link{
        font-size:14px !important;
    }

    .custom-navbar .dropdown-item{
        font-size:13px;
    }
}

@media (max-width:480px){

    .custom-navbar{
        padding:6px;
    }

    .custom-navbar .navbar-toggler{
        width:36px;
        height:36px;
    }

    .custom-navbar .nav-link{
        padding:10px !important;
        font-size:13px !important;
    }

    .custom-navbar .dropdown-item{
        font-size:13px;
        padding:9px 10px;
    }
}

@media (max-width:320px){

    .custom-navbar .nav-link{
        font-size:12px !important;
        padding:8px 10px !important;
    }

    .custom-navbar .dropdown-item{
        font-size:12px;
    }
}


.swiper {
  width: 100%;
  height: 450px;
  margin-bottom:0px;
}
.swiper-slide {
  text-align: center;
  background:white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.swiper{
    width:100%;
    height:600px;
}

.swiper-slide{
    height:600px;
}

.swiper-slide img{
    width:100%;
    height:600px;
    object-fit:cover;
}
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  background: #0d6efd;
  opacity: 1;
}

 



 



*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f5f7fb;
}

.college-showcase{
padding:70px 5%;
}

.section-heading{
text-align:center;
margin-bottom:50px;
}

.section-heading span{
display:block;
color:#8b0000;
font-size:18px;
font-weight:600;
letter-spacing:2px;
margin-bottom:10px;
}

.section-heading h2{
font-size:34px;
color:#222;
margin-bottom:15px;
}

.section-heading p{
font-size:18px;
color:#666;
}

.showcase-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;

}

.card{

background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,.12);
display:flex;
flex-direction:column;

}

.card-header{

background:#001f54;;
color:#fff;
padding:18px;
display:flex;
align-items:center;
gap:12px;

}

.card-header i{

font-size:22px;

}

.card img{

width:100%;
height:240px;
object-fit:cover;

}

.card-body{

padding:20px;
flex:1;

}
.card-header h3{
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    margin: 0;
    line-height: 1.2;
}
.card-body p{

line-height:28px;
color:#555;

}

iframe{

display:block;
border:none;

}

.notice-area{

height:430px;
padding:15px;
overflow:hidden;

}

.notice-item{

background:#f7f7f7;
padding:14px;
margin-bottom:15px;
border-left:5px solid #8b0000;
border-radius:6px;
font-size:15px;
line-height:24px;
transition:.3s;

}

.notice-item:hover{

background:#fff5e8;
transform:translateX(5px);

}

.card-footer{

padding:20px;
text-align:center;
border-top:1px solid #eee;

}

.btn{

display:inline-block;
padding:12px 30px;
background:#001f54;
color:#fff;
text-decoration:none;
border-radius:5px;
font-weight:600;
transition:.3s;

}

.btn:hover{

background:#c59a32;

}

@media(max-width:992px){

.showcase-grid{

grid-template-columns:repeat(2,1fr);

}

.notice-area{

height:380px;

}

iframe{

height:450px;

}

}

@media(max-width:768px){

.showcase-grid{

grid-template-columns:1fr;

}

.section-heading h2{

font-size:26px;

}

.section-heading p{

font-size:15px;

}

.notice-area{

height:320px;

}

iframe{

height:380px;

}

.card img{

height:220px;

}

}
    





.royal-heading{
    text-align:center;
    position:relative;
    padding:40px 20px;
    margin-bottom:80px;
}

.royal-heading::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    transform:translateX(-50%);
    width:80px;
    height:4px;
    border-radius:30px;
    background:linear-gradient(90deg,#b8860b,#f5d67b,#b8860b);
}

.royal-tag{
    margin-bottom:20px;
}

.royal-tag span{
    display:inline-block;
    color:#b8860b;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:4px;
    position:relative;
}

.royal-tag span::before,
.royal-tag span::after{
    content:"";
    position:absolute;
    top:50%;
    width:70px;
    height:1px;
    background:#d4af37;
}

.royal-tag span::before{
    right:100%;
    margin-right:18px;
}

.royal-tag span::after{
    left:100%;
    margin-left:18px;
}

.royal-heading h2{
    font-size:62px;
    font-weight:800;
    color:#052c65;
    text-transform:uppercase;
    letter-spacing:5px;
    margin:18px 0;
    font-family:Georgia,"Times New Roman",serif;
    position:relative;
}

.royal-heading h2::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-18px;
    transform:translateX(-50%);
    width:120px;
    height:2px;
    background:linear-gradient(to right,#d4af37,#f9e39b,#d4af37);
}

.royal-heading p{
    max-width:850px;
    margin:45px auto 0;
    font-size:18px;
    color:#555;
    line-height:1.9;
    letter-spacing:1px;
    font-weight:400;
}

/* Responsive */

@media(max-width:992px){

    .royal-heading h2{
        font-size:48px;
    }

}

@media(max-width:768px){

    .royal-heading h2{
        font-size:38px;
        letter-spacing:2px;
    }

    .royal-tag span{
        font-size:12px;
        letter-spacing:2px;
    }

    .royal-tag span::before,
    .royal-tag span::after{
        width:35px;
    }

    .royal-heading p{
        font-size:16px;
    }

}

@media(max-width:480px){

    .royal-heading h2{
        font-size:30px;
    }

    .royal-tag span::before,
    .royal-tag span::after{
        display:none;
    }

    .royal-heading p{
        font-size:15px;
    }

}

















.media-section{
    position:relative;
    padding:100px 8%;
    background:
    linear-gradient(135deg,#faf7f7,#ffffff,#f9f4f4);
    overflow:hidden;
}



.media-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(128,0,32,.05);
    border-radius:50%;
    top:-220px;
    left:-180px;
    filter:blur(25px);
}

.media-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(184,134,11,.08);
    border-radius:50%;
    bottom:-220px;
    right:-150px;
    filter:blur(25px);
}



.section-title{
    text-align:center;
    margin-bottom:70px;
    position:relative;
}

.section-title h2{
    font-size:42px;
    color:#001f54;;
    font-weight:700;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

.section-title::after{
    content:"";
    width:120px;
    height:5px;
    margin:20px auto;
    display:block;
    border-radius:30px;
    background:linear-gradient(90deg,#800020,#d4af37,#800020);
}



.media-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
}



.media-card{

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(15px);

    border-radius:22px;

    padding:25px;

    border:1px solid rgba(128,0,32,.12);

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

    transition:.45s;

    position:relative;

    overflow:hidden;

}



.media-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#800020,#d4af37,#800020);

}



.media-card::after{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    border-radius:50%;

    background:rgba(128,0,32,.05);

    top:-40px;

    right:-40px;

}

.media-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 25px 50px rgba(128,0,32,.18);

}



.media-icon{

    width:75px;

    height:75px;

    margin:auto;

    border-radius:50%;

    background:#001f54;;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:34px;

    box-shadow:0 12px 30px rgba(128,0,32,.25);

    margin-bottom:20px;

}



.media-img{

    overflow:hidden;

    border-radius:15px;

    margin:20px 0;

}

.media-img img{

    width:100%;

    height:230px;

    object-fit:cover;

    transition:.6s;

}

.media-card:hover img{

    transform:scale(1.08);

}



.media-card h3{

    font-size:24px;

    color:#001f54;;

    margin-bottom:15px;

}

.media-card p{

    color:#555;

    line-height:1.9;

    font-size:15px;

}



.media-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:13px 28px;

    margin-top:18px;

    background:#001f54;;

    color:#fff;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.4s;

}

.media-btn:hover{

  
background:#c59a32;

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(128,0,32,.25);

}



@media(max-width:768px){

.section-title h2{
    font-size:30px;
}

.media-container{
    grid-template-columns:1fr;
}

.media-img img{
    height:200px;
}

}









.college-footer{

    background:linear-gradient(135deg,#00122E,#001A3D,#000D24);

    color:#fff;

    position:relative;

}

.footer-container{

    width:90%;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

    padding:70px 0;

}

.footer-logo{

    width:75px;

    margin-bottom:15px;

}

.footer-box h3{

    font-size:25px;

    margin-bottom:15px;

}

.footer-box h4{

    font-size:22px;

    margin-bottom:20px;

    position:relative;

}

.footer-box h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:55px;

    height:3px;

    background:#f5c542;

}

.footer-box p{

    color:#ddd;

    line-height:1.8;

    margin-bottom:12px;

}

.footer-box ul{

    list-style:none;

}

.footer-box ul li{

    margin-bottom:12px;

}

.footer-box ul li a{

    color:#ddd;

    text-decoration:none;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#f5c542;

    padding-left:8px;

}

.footer-box i{

    color:#f5c542;

    margin-right:10px;

}

.footer-social{

    margin-top:20px;

}

.footer-social a{

    width:42px;

    height:42px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    color:#fff;

    margin-right:10px;

    transition:.4s;

}

.footer-social a:hover{

    background:white;

    color:#4b0013;

    transform:translateY(-5px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.15);

    text-align:center;

    padding:18px;
  background:linear-gradient(135deg,#00122E,#001A3D,#000D24);

}

.footer-bottom p{

    color:#ddd;

}

.footer-bottom a{

    color:#f5c542;

    text-decoration:none;

}

.footer-bottom span{

    margin:0 10px;

}

@media(max-width:992px){

.footer-container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.footer-box h4::after{

left:50%;

transform:translateX(-50%);

}

.footer-social{

justify-content:center;

display:flex;

}

}

@media(max-width:480px){

.footer-container{

padding:50px 20px;

}

.footer-box h3{

font-size:22px;

}

.footer-box h4{

font-size:20px;

}

.footer-bottom p{

font-size:14px;

}

}







.about-banner{
    position:relative;
    width:100%;
    padding:30px 20px;
    overflow:hidden;
    text-align:center;
    isolation:isolate;

    background:
    radial-gradient(circle at 15% 20%,rgba(255,255,255,.08),transparent 18%),
    radial-gradient(circle at 85% 15%,rgba(212,175,55,.12),transparent 18%),
    radial-gradient(circle at 20% 85%,rgba(0,102,255,.10),transparent 22%),
    radial-gradient(circle at 90% 80%,rgba(255,255,255,.05),transparent 20%),
    linear-gradient(135deg,#000814 0%,#001233 40%,#001845 70%,#000814 100%);
}


.about-banner::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);

    background-size:45px 45px;

    opacity:.35;

    z-index:-2;

}



.about-banner::after{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(212,175,55,.15),
    transparent 70%);

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    filter:blur(10px);

    z-index:-1;

}




.about-banner-content{

    max-width:1100px;

    margin:auto;

}

.about-subtitle{

    display:inline-block;

    color:#D4AF37;

    font-size:15px;

    font-weight:600;

    letter-spacing:5px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.about-banner-content h1{

    font-size:65px;

    color:#fff;

    font-weight:700;

    margin-bottom:20px;

    text-shadow:0 8px 20px rgba(0,0,0,.35);

}

.banner-line{

    width:140px;

    height:4px;

    margin:25px auto;

    border-radius:20px;

    background:
    linear-gradient(90deg,
    transparent,
    #D4AF37,
    #fff,
    #D4AF37,
    transparent);

}

.about-banner-content p{

    max-width:850px;

    margin:auto;

    color:#e8e8e8;

    font-size:21px;

    line-height:1.8;

    letter-spacing:.5px;

}



.circle1,
.circle2,
.circle3{

    position:absolute;

    border-radius:50%;

    filter:blur(70px);

    animation:float 8s ease-in-out infinite;

}

.circle1{

    width:220px;

    height:220px;

    background:#D4AF37;

    opacity:.10;

    top:-70px;

    left:-80px;

}

.circle2{

    width:260px;

    height:260px;

    background:#0077ff;

    opacity:.10;

    right:-100px;

    top:60px;

    animation-delay:2s;

}

.circle3{

    width:180px;

    height:180px;

    background:#ffffff;

    opacity:.05;

    bottom:-60px;

    left:45%;

    animation-delay:4s;

}

@keyframes float{

0%,100%{

transform:translateY(0px);

}

50%{

transform:translateY(-30px);

}

}



@media(max-width:992px){

.about-banner{

padding:100px 20px;

}

.about-banner-content h1{

font-size:48px;

}

.about-banner-content p{

font-size:18px;

}

}

@media(max-width:768px){

.about-banner{

padding:80px 20px;

}

.about-banner-content h1{

font-size:38px;

}

.about-banner-content p{

font-size:16px;

}

.about-subtitle{

font-size:13px;

letter-spacing:3px;

}

.banner-line{

width:90px;

}

}

@media(max-width:480px){

.about-banner{

padding:70px 15px;

}

.about-banner-content h1{

font-size:30px;

}

.about-banner-content p{

font-size:15px;

line-height:1.7;

}

}