
/* resets */
*{
    box-sizing: border-box;
}

p,ul,ol,h1,h2,h3,blockquote{
    margin: 0;
    padding: 0;
}

nav ul, nav ol {
	list-style-type: none;
}

/* ------------end resets--------------- */

body{
    font-family: 'Crimson Text', serif;
    background: #fff;
    color: #333;
    padding-top: 9px;
    padding-bottom: 30px;
    font-size: 18px;
}
#container{
    max-width: 1020px;
    margin: auto;
}

/* ---------------------Typography---------------- */

h1, h2, h3{
    font-family: Oswald, sans-serif;
    margin-bottom: 0.5em;
    font-weight:400;
}

a{
    color: #cb2000;
    text-decoration: none;
}
p{
    margin-bottom: 1em;
}

p.large-link{
    font-size: 24px;
}

/* -------------------Navigation STYLES-------------- */
header nav{
    border-top: 3px solid #cb2000;
}

header nav ul{
    display: flex;
}
header nav ul li{
    flex: 1;
    border-right: 3px solid #cb2000
}

header nav ul li:last-of-type{
    border-right: none;
}
header nav ul li a{
    display: block;
    color: #000;
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    line-height: 28px;
}

header nav ul li a:hover{
    color:#cb2000;
}


header{
    height: 230px;
    background: url("images/pen-small.png") center bottom no-repeat;
    position: relative;
}


header h1 {
	font-size: 60px;
	padding-left: 30px;
	padding-top: 30px;
	text-transform: uppercase;
	line-height: 50px;
	color: #2c3e6d;
	font-weight: 700;
}

header h1 span {
	font-family: 'Crimson Text', serif;
	display: block;
	font-size: 40px;
	text-transform: lowercase;
	color: #000;
	font-weight: 400;
}


header .cta{
    position: absolute;
    right:20px;
    font-size: 30px;
    margin-top: 0;
}
.cta::before{
    content: '\0007b\000a0';
}
.cta::after{
    content: '\000a0\007D';
}






/* -----------------TOP SECTION ------------------ */
/* New box section */
.new-box{
    margin-top: 30px;
    background:#eee;
    padding:15px
}
.new-box h1{
    font-size: 28px;
    font-family: sans-serif;
    color: #2d3e6c;
    margin-bottom: 0.8em;
}


.new-box article{
  
    border-left: 4px solid red;
    margin-bottom: 20px;
    padding: 0 10px;

   
}

.new-box h2 {
    color: #666;
    font-size: 20px;
    margin-bottom: .3em;
  }
  
  .new-box p {
    font-style: italic;
    color: #333;
    line-height: 1.2em;
  }
  
  .more {
    white-space: nowrap;
  }
 /*  --------------------/*  */
 #top blockquote {
	font-size: 24px;
	line-height: 1.4em;
	padding: 30px;
	text-indent: -.5em;
}

blockquote footer { 
	margin-left: .5em;
}

/*  -------------Blockquote Styles--------------- */

/***** Middle Section Styles ******/

#middle {
	margin: 30px 0;
}

#middle article {
	border-top: 3px solid #2D3E6C;
	margin: 15px;
	padding: 15px 0;
}

#middle h2 {
	font-size: 20px;
	color: #2D3E6C;
	text-transform: uppercase;
}




/* FOOTER----------------------- */

/****** Footer Styles *******/

.pagefooter {
	padding: 20px;
	background-color: #630b00;
	color: #c9cad1;
}

.pagefooter h1 {
	font-size: 36px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 32px;
	color: #c9cad1;
}

.pagefooter h1 span {
	font-family: 'Crimson Text', serif;
	display: block;
	font-size: 24px;
	font-weight: 400;
	text-transform: lowercase;
}

.pagefooter div {
	display: flex;
    min-width: 400px;;
}

/* --------------footer part 2------- */
/******* Page Footer Nav *******/

.pagefooter div nav ul {
	margin-left: 20px;
}

.pagefooter nav ul li {
	margin-bottom: .5em;
}

.pagefooter nav ul li a {
	border: none;
	color: #c9cad1;
	font-size: 16px;
	font-family: Oswald, sans-serif;
	text-transform: uppercase;
}
/**** Final footer styling ****/
.pagefooter article {
	padding-top: 20px;
}

.pagefooter article span,
.pagefooter nav h3 {
	font-family: Oswald, sans-serif;
	text-transform: uppercase;
}

.pagefooter .social {
	display: flex;
}

.pagefooter article nav ul li a {
  padding-right: 10px;
  font-size: 30px;
}

.pagefooter nav ul li a:hover {
  color: #fff;
}

@media only screen and (max-width: 1000px) and (min-width: 700px)

{
 
    #top{
        display: flex;
        grid-template-rows: 1fr 1fr;
       flex-direction: row-reverse;
    }
    .new-box{
        width: 50%;
    }
    blockquote{
        width:50%;
    } 

    #middle{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    #middle article:last-child{
        
        display: grid;
        grid-column:1/span 2;
        grid-template-columns: 1fr 1fr;
    }
    #middle article:last-child h2{
        
     grid-column: 1/span 2;
    }

    #middle article:last-child .cta{
        grid-column: 1/span 2;
        margin: auto;
        margin-top: -20px;

    }

    footer{
        display: flex;
        justify-content: space-between

    }
}

@media only screen and (min-width:1000px) {
    #middle{
        display:flex;
    }
}

