body {
    background: #D7F7FE;
    font-family: "Nunito", sans-serif;
    color: #222;
  }
  
  * {
    transition: all .65s ease;
    box-sizing: border-box;
  }
  
  .container {
    max-width: 120em;
    margin: 0 auto;
  }
  
  .header {
    background: white;
    color: black;
    padding: 0.625em;
  }
  .header .container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }
  .header .site-title, .header .site-tagline {
    font-weight: 400;
  }
  @media (max-width: 700px) {
    .header .site-title, .header .site-tagline {
      width: 100%;
      text-align: center;
    }
    .header .site-title {
      margin: 0;
    }
  }
  
  .site-title, h1, h2, h3 {
    font-family: "Righteous", sans-serif;
    font-size: 2.625em;
    color: #23022eff;;
  }
  h1{
      margin: 0.2em 0;
  }


  h3 {
    font-size: 2em;
    color: #474b24ff;
  }
  
  .site-title {
    color: black;
  }
  
  .site-tagline {
    font-size: 1.125em;
    font-style: italic;
  }
  

  li.active { background:#dbdbdb;}

  .main-nav {
    background: #F7EE1A;
    color: white;
  }
  .main-nav a {
    color: #1A577F;
    text-decoration: none;
  }
  .main-nav ul, .main-nav li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .main-nav ul {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }
  .main-nav ul a {
    padding: 0.4em 0.6em;
    display: flex;
    text-transform: uppercase;
  }
  .main-nav ul a:hover, .main-nav ul a:focus {
    background: #fbf795;
    color: #419cd8;
  }
  .main-nav ul .mobile-button a {
    position: absolute;
    left: -99999em;
  }
  @media (max-width: 700px) {
    .main-nav ul {
      flex-wrap: wrap;
      justify-content: flex-start;
    }
    .main-nav ul a {
      position: absolute;
      left: -99999em;
    }
    .main-nav ul.open li {
      width: 100%;
    }
    .main-nav ul.open li.mobile-button a {
      background: #fbf78d;
      color: #0e3447;
    }
    .main-nav ul.open a {
      position: static;
    }
    .main-nav ul .mobile-button a {
      position: static;
    }
    .main-nav a {
      width: 100%;
    }
  }

  .sub-nav {
    background: #dbdbdb;
    color: white;
  }
  .sub-nav a {
    color: #1A577F;
    text-decoration: none;
  }
  .sub-nav ul, .sub-nav li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .sub-nav ul {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }
  .sub-nav ul a {
    padding: 0.4em 0.6em;
    display: flex;
    text-transform: uppercase;
  }
  .sub-nav ul a:hover, .sub-nav ul a:focus {
    background: #fbf795;
    color: #419cd8;
  }
  .sub-nav ul .mobile-button a {
    position: absolute;
    left: -99999em;
  }
  @media (max-width: 700px) {
    .sub-nav ul {
      flex-wrap: wrap;
      justify-content: flex-start;
    }
    .sub-nav ul a {
      position: absolute;
      left: -99999em;
    }
    .sub-nav ul.open li {
      width: 100%;
    }
    .sub-nav ul.open li.mobile-button a {
      background: #fbf78d;
      color: #0e3447;
    }
    .sub-nav ul.open a {
      position: static;
    }
    .sub-nav ul .mobile-button a {
      position: static;
    }
    .sub-nav a {
      width: 100%;
    }
  }  



  .full-bleed {
    background-size: cover;
    min-height: 20px;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
  
  @media (max-width: 700px) {
    .full-bleed {
      min-height: 100px;
    }
  }
  .cool-photo {
    background-image: url(/static/dist/img/background1.jpeg);
  }
  
  .cool-photo2 {
    background-image: url(http://lorempixel.com/1300/400/food);
  }
  
  .post {
    padding: 1.875em;
  }
  
  .columns {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .columns .item {
    padding: 1.5625em;
    max-width: 47%;
    background: #b1dbf0;
    color: #1A577F;
    border-bottom: 5px solid #F7EE1A;
    margin-bottom: 2.1875em;
    position: relative;
    overflow: hidden;
  }
  .columns .item .item-title {
    color: #011d23;
    font-size: 24px;
    margin: 0 0 5px 0;
    font-family: "Righteous", sans-serif;
  }
  .columns .item .item-image {
    max-width: 100%;
  }
  .columns .item:hover, .columns .item:focus {
    background: #e8f4fa;
    border-bottom-color: #FF6067;
  }
  .columns .item:hover .social, .columns .item:focus .social {
    position: absolute;
    bottom: -21px;
    height: auto;
    z-index: 5;
    padding: 10px 0;
  }
  .columns .item:hover .social .fa, .columns .item:focus .social .fa {
    color: #FF6067;
    padding: 0 0.3125em;
  }
  .columns .item:hover .social .fa:hover, .columns .item:focus .social .fa:hover {
    color: #769ab2;
  }
  @media (max-width: 660px) {
    .columns .item {
      max-width: 100%;
      width: 100%;
    }
  }
  .columns.thirds .item {
    max-width: 31%;
  }
  @media (max-width: 770px) {
    .columns.thirds .item {
      max-width: 48%;
    }
  }
  @media (max-width: 770px) and (max-width: 660px) {
    .columns.thirds .item {
      max-width: 100%;
      width: 100%;
    }
  }
  


  .columns .single-item {
    padding: 1.5625em;
    max-width: 90%;
    background: #b1dbf0;
    color: #1A577F;
    border-bottom: 5px solid #F7EE1A;
    margin-bottom: 2.1875em;
    position: relative;
    overflow: hidden;
  }
  .columns .single-item .item-title {
    color: #011d23;
    font-size: 24px;
    margin: 0 0 5px 0;
    font-family: "Righteous", sans-serif;
  }
  .columns .single-item .item-image {
    max-width: 100%;
  }
  .columns .single-item:hover, .columns .single-item:focus {
    background: #e8f4fa;
    border-bottom-color: #FF6067;
  }
  .columns .single-item:hover .social, .columns .single-item:focus .social {
    position: absolute;
    bottom: -21px;
    height: auto;
    z-index: 5;
    padding: 10px 0;
  }
  .columns .single-item:hover .social .fa, .columns .single-item:focus .social .fa {
    color: #FF6067;
    padding: 0 0.3125em;
  }
  .columns .single-item:hover .social .fa:hover, .columns .single-item:focus .social .fa:hover {
    color: #769ab2;
  }
  @media (max-width: 660px) {
    .columns .single-item {
      max-width: 100%;
      width: 100%;
    }
  }
 



  .twitter-container{
    padding: 1.5625em;
    max-width: 100%;
    background: #b1dbf0;
    color: #1A577F;
    border-bottom: 5px solid #F7EE1A;
    margin-bottom: 2.1875em;
    

  }






  .columns .social {
    position: absolute;
    bottom: -60px;
    height: 0;
    z-index: -1;
    font-size: 1.75em;
  }
  
  .footer {
    background: #5b14ad;
    color: white;
    padding: 0.9375em;
    text-align: center;
    font-size: 0.8125em;
  }
  .footer a {
    color: #F7EE1A;
    text-decoration: none;
    border-bottom: 1px solid;
  }
  .footer span {
    padding-left: 5px;
    padding-right: 5px;
  }

  fieldset {
    border: none;
    padding: 0;
    margin: 0;
  }

  span.radioset {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    padding: 0;
  }

  input {
    padding:10px 13px;
    margin-bottom:15px;
    
    border-radius:2px;
    border:1px solid #d4d9e3;
    font-weight:200;color:#4d5060;
    font-family:'Poppins',sans-serif;
    transition:all .3s ease-out;
    font-size:.9em;outline-color:
    transparent;outline-style:none
  }
  input[type="submit"]
  {
    background:#5eb9d7;#
    color:white;
    border-radius:2px;
    margin-top:15px;
    font-weight:400;
    border:1px solid #5eb9d7;
    transition:all .3s ease-out
  }
  input[type="submit"]:hover
  {
    cursor:pointer;
    background:white;
    color:#5eb9d7
  }