*, *::before, *::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#ffffff;
    margin:0;
    padding:0;
}

.topnav{
    width:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background:#fff;
    margin-bottom:10px;
    padding:10px;
    position:sticky;
    top:0;
    z-index:50;
}

.nav{
    display:flex;
    justify-content:center;
    width:100%;
    background:#fefefe;
}

.nav ul{
    display:flex;
    list-style-type:none;
    justify-content:center;
    align-items:center;
}

.nav ul li{
    display:inline-block;
    padding:7px 15px;
}

.nav ul li a{
    text-decoration:none;
    color:inherit;
    font-family:"Roboto", sans-serif;
    font-size:12px;
    font-weight:bold;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#000;
}

.nav ul li a:hover{
    color:#ea0404;
    border-bottom:3px solid red;
}



#targetDiv{
    width:100%;
    background:transparent;
    padding:0;
    min-height:400px;
}

span {
  color: #ff0315;
  float: left;
  font-family:"Merriweather", serif;
  font-weight:normal;
  font-size: 80px;
  line-height:.80;
  padding-top: 10px;
  padding-right:10px;
  padding-left: 0px;
}



/*--------Grid Layout------*/
.main{
    display:grid;
    grid-template-columns:300px 2fr 300px;
    grid-gap:20px;
    width:85%;
    min-height:300px;
    background:#fff;
    margin:20px auto;
}

.main div{
    background:#ffffff;
    padding:10px;
}


.panelwrap{
    display:flex;
    flex-direction:row;
    background:#ccc;
    justify-content:center;
    align-items:center;
    margin-bottom:10px;
}


.panel{
    display:grid;
    height:auto;
    grid-template-columns:repeat(4, 1fr);
    grid-gap:20px;
    width:80%;
    padding:10px 100px;
    margin:10px auto;
}

.panel div{
    background:#f7f7f7;
    padding:10px;
}

.panelheader{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0;
    background:#fff;
    padding:10px 0px;
    border-top:1px solid #ccc;
    border-bottom:1px solid #ccc;
}


.footer{
    display:flex;
    width:100%;
    justify-content:center;
    align-items:center;
    background:#fff;
    border-top:1px solid #d1d1d1;
    padding:50px 0px;
}


.fig{
    width:100%;
    margin-bottom:20px;
    padding:0pc;
}


img{
    width:100%;
    height:auto;
}

ul{
    list-style-type:none;
    font-family:"Merriweather", sans-serif;
    font-size:inherit;
    padding-top:0px;
    margin:0;
}

/*--------Contact Form-------------*/

form{
    display:grid;
    background:#fff;
    grid-template-columns:1fr 2fr;
    grid-gap:10px;
    justify-content:center;
    align-content:center;
    padding:10px;
    border:1px solid #ccc;
    font-family:"Roboto", sans-serif;
    font-size:14px;
    text-transform:uppercase;
    color:#333;
}

form div.label{
    padding:5px;
}

form div.input{
    padding:10px;
}

input{
    width:95%;
    min-height:30px;
    border:1px solid #CCC;
}

textarea{
    width:95%;
    min-height:200px;
    border:1px solid #CCC;
}

button{
    border:0px;
    padding:10px 20px;
    background:red;
    text-transform:uppercase;
    color:#fff;
    font-weight:bold;
}

button:hover{
    background:teal;
    cursor:pointer;
}

/*------Typography-------*/
p{
    font-family:"Merriweather", serif;
    font-size:16px;
    color:#222;
    margin-bottom:30px;
    line-height:1.6;
}

p.caption{
    font-family:"Merriweather", serif;
    font-size:14px;
    color:#5e5e5e;
    margin:0;
    line-height:1;
    margin-bottom:10px;
}



p.foot, p.date{
    font-family:"Roboto", sans-serif;
    font-size:12px;
    color:inherit;
    text-transform:uppercase;
    letter-spacing:2px;
    margin:0;
    padding:0;
}

p.info{
    font-family:"Roboto", sans-serif;
    font-size:10px;
    color:#666;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:10px;
    padding:0;
}

p.sig{
    font-family:"Roboto", sans-serif;
    font-size:14px;
    font-weight:bold;
    color:red;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:20;
    padding:0;

}

/*---------Headibgs----------*/
h1,h2,h3,h4, h5, h6{
    font-family:"Roboto", Sans-serif;
    color:#000000;
    margin-bottom:3px;
    line-height:0.90;
    padding:0;
}

h1{
    font-size:60px;
}

h2{
    font-size:50px;
}

h3{
    font-size:40px;
}

h4{
    font-size:30px;
}

h5{
    font-size:20px;
}

h4.breadcrumb{
    font-size:14px;
    text-transform:uppercase;
    background:#F20505;
    color:#fff;
    display:inline-block;
    padding:10px 20px;
}

h5.alert{
    font-size:14px;
    text-transform:uppercase;
    color:#000;
    display:inline-block;
    border:0px solid #000;
    background:yellow;
    padding:10px;
}

h6.kicker{
    font-size:14px;
    text-transform:uppercase;
    font-weight:bold;
    color:red;
    padding-bottom:10px;
}
