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

body{
    background:#f3f3f3;
}


/*----Paragraph font styles----*/
p{
    font-family:"Noto Serif Malayalam", serif;
    font-size:18px;
    line-height:1.3;
    margin-bottom:20px;
}

p.eng{
    font-family:"Roboto", sans-serif;
    font-size:18px;
}

#info{
    font-size:12px;
    color:#444;
    text-transform:uppercase;
    letter-spacing:2px;
}

.foot{
    font-family:"Roboto", sans-serif;
    font-size:14px;
    color:#444;
    text-transform:uppercase;
    letter-spacing:2px;
}

.breadcrumb{
    font-family:"Roboto", sans-serif;
    font-size:14px;
    color:#0027c2;
    text-transform:uppercase;
    letter-spacing:2px;

}

/*---Form styles----*/
form{
    width:100%;
    display:grid;
    grid-template-columns:180px 1fr;
    grid-gap:10px;
    background:#f6f6f6;
    padding:50px;
}

button.message{
    background:red;
    border:0;
    padding:10px;
    color:#fff;
    display:block;
}

.message:over{
    background:teal;
}




/*-----Heading styles------*/
h1,h2,h3,h4,h5,h6{
    font-family: "Noto Sans Malayalam", sans-serif;
    font-weight:600;
    color:#000;
    line-height:1;
}

h1{
    font-size:40px;
    margin-bottom:10px;
}

h2{
    font-size:30px;
}

h3{
  
    font-size:25px;
}

h4{
    font-size:24px;
}

h5.bread{
    font-size:20px;
    background:red;
    width:fit-content;
    padding:7px 12px;
    color:#fff;
}

/*---Link styles----*/
a.menu{
    font-family:"Roboto", sans-serif;
    font-weight:400;
    color:#000;
    text-decoration:none;
    text-transform:uppercase;
    font-size:14px;
    display:inline-block;
    padding:0 10px;

}

a.menu:hover{
    color:blue;
}

a{
    font-family:"Noto Serif Malayalam", serif;
    font-size:18px;
    text-decoration:none;
    color:inherit;
    font-weight:normal;
}

a:hover{
    color:blue;
}

/*------Design styles-----*/
.top{
    width:100%;
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    background:#fff;
    padding:10px 50px;
    position:sticky;
    top:0;
    border-bottom:1px solid #ccc;
}

ul{
    list-style-type:none;
}

ul li{
    display:inline-block;
}


.container{
    display:flex;
    flex-direction:column;
    height:auto;
    background:transparent;
    padding:0 50px;
}

.main{
    display:flex;
    height:auto;
    flex-direction:column;
    width:740px;
    background:#fff;
    justify-content:flex-start;
    align-items:flex-start;
    margin:auto;
    padding:20px;
}

.panel{
    width:100%;
    background:#ccc;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:40px 0;
    min-height:400px;
}

#targetDiv{
    display:flex;
    height:auto;
    flex-direction:column;
    width:100%;
    background:transparent;
    justify-content:flex-start;
    align-items:flex-start;
    border-bottom:5px solid #ccc;
    margin-bottom:30px;
}

fig{
    width:auto;
    margin-bottom:40px;
    padding:0px;
}

img{
    width:100%;
    height:auto;
}

img.fluid{
   width:auto;
}


.footer{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:40px 0;
    padding:20px;
    border-top:1px solid #ccc;
    
}





/*----Media query----*/
@media screen and (max-width:700px) {

    .top{
        display:flex;
        text-align:center;
        flex-direction:column;
        color:#fff;
    }

    .container{
        display:flex;
        flex-direction:column;
        width:100%;
    }

    .main{
        display:flex;
        flex-direction:column;
        width:100%;
    }


    .form{
        display:grid;
        grid-template-columns:1fr;
    }

    img{
        width:100%;
        height:auto;
    }

}
