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

body{
    margin:0;
    padding:0;
    font-family:"Lora", serif;
    font-size:18px;
    color:#333;
}

/*---------Layout Styles------*/
.topnav{
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    width:100%;
    background:#000;
    position:sticky;
    top:0;
    z-index:50;
}

ul.nav{
    display:flex;
    justify-content:center;
    align-items:center;
    list-style:none;
}

ul.nav li{
    background:transparent;
}

.nav a{
    font-family:"Roboto", sans-serif;
    color:#fff;
    font-size:14px;
    text-transform:uppercase;
    text-decoration:none;
    padding:10px 20px;
    display:inline-block;
    letter-spacing:2px;
}


.header{
     display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    width:100%;
    height:350px;
    padding:20px 0px;
    
}

.hero{
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items:center;
    width:100%;
    height:350px;
    background: url('img/hero.png')no-repeat center;
    background-size:cover;
    background-attachment:fixed;
    overflow:hidden;
}



.main{
    display:grid;
    grid-template-columns: 1fr 3fr 1fr;
    grid-gap:20px;
    width: 90%;
    margin:auto;
    justify-content:start;
    align-items:start;
    background:transparent;
}

.main div{
    background:#fff;
    padding:20px;
}

#targetDiv{
    width:100%;
    display:flex;
    flex-direction:column;
    flex-wrap:wrap;
    background:transparent;
    margin-bottom:40px;
    height:auto;
}

.alert{
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f6f6f6;
    padding:20px;
    border:1px solid #ccc;
    margin-bottom:30px;
}


ul.text{
    list-style:none;
    margin-bottom:50px;
}

ul.text li{
    display:block;
    border-bottom:1px solid #ccc;
    padding:10px;
    margin-bottom:5px;
}




.footer{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:50px 0px;
    border-top:1px solid #d3d3d3;
}





/*-----Image styles----*/
img{
    width:100%;
    height:auto;
    max-width:100%;
    object-fit:content;
    margin-bottom:10px;
}


.fig{
    width:100%;
    max-width:100%;
    height:auto;
    object-fit:content;
    margin-bottom:10px;
}

span{
    font-size:100px;
    color:teal;
    line-height:.80;
    font-weight:normal;
    float:left;
    padding-right: 20px;
}


/*------links-------*/

.clearall{
    display:block;
    height:50px;
}

a{
    text-decoration:none;
    font-weight:500;
    color:teal;
}

a:hover{
    color:blue;
}

a.sidebar{
    font-family:"Roboto", sans-serif;
    text-transform:uppercase;
    text-decoration:none;
    color:#006565;
    border:1px solid #000;
    background:yellow;
}

a.sidebar:hover{
    background:red;
    color:#fff;
}


/*----Form Styles----*/

form{
background:#f3ffd1;
width:100%;
padding:20px;
border:1px solid #ccc;
}

input{
  width:100%;
  background:#fff;
  border:none;
  padding:20px;
  margin-bottom:10px;
}

input:focus-within{
  background:#f3f3f3;
}

textarea{
  width:100%;
  background:#fff;
  border:0;
  padding:20px;
  margin-bottom:10px;
  
}

textarea:focus-within{
  background:#f3f3f3;
}

button{
  border:0;
  background:yellow;
  color:#000;
  font-family:"Roboto", sans-serif;
  font-size:18px;
  text-transform:uppercase;
  font-weight:normal;
  padding:20px 40px;
  display:inline-block;
  border:none;
}

button:hover{
  background:#006b6b;
  color:#fff;
  cursor:pointer;
}


/*----------Header Styles---------*/
h1, h2, h3, h4, h5, h6{
    font-family:"Bebas Neue", sans-serif;
    color:#000;
    line-height:1;
    font-weight:500;
    letter-spacing:1px;
    margin-bottom:10px;
}

h1{
    font-size:60px;
    font-weight:400;
}

h2{
    font-size:40px;
    font-weight:400;
}

h3{
    font-size:36px;
    font-weight:400;
}

h4{
    font-size:24px;
    font-weight:400;
    letter-spacing:0px;
    border-left:10px solid red;
    padding-left:10px;
}


h5{
    font-family:"Roboto", sans-serif;
    font-size:16px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:0px;
}





/*--------Paragraph Styles-------*/
p{
    font-family:"Lora",serif;
    font-size:18px;
    color:#333;
    line-height:1.3;
    margin-bottom:20px;
}

p.caption{
    font-family:"Lora",serif;
    font-size:14px;
    color:#666;
    line-height:1;
    margin-bottom:20px;
}

p.info{
    font-family:"Lora", serif;
    font-size:24px;
    font-style:italic;
    color:#000;
    text-align:center;
}

p.foot{
    font-family:"Roboto", sans-serif;
    font-size:14px;
    color:inherit;
    text-transform:uppercase;
}