/*
red: #b12028
dark red: #6a2325
black: #271009
*/

/*         reset          */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* body {
  font-family: "Lato", sans-serif;
} */

/*----- text styles ------*/
/*         links          */
a {
  text-decoration: none;
}
a:link {
  color: #271009;
}
a:visited {
  color: #6a2325;
}
a:hover {
  color: #b12028;
}
/*         headers        */
h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", sans-serif;
}

/*    --- testing ---     */
.page {
  display: flex;
  flex-wrap: wrap;
}

.section {
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .menu {
  background-color: #5995DA;
  height: 80px;
} */
.tophead {
  height: 80px;
  text-align: center;
}

.header {
  height: 40px;
  text-align: center;
}
.style1 {
    color: #270202;
    font-weight: 300;
    text-align: center;
}
hr.style2 {
    align-self: flex-end;
    border: 0; height: 1px; background-image: linear-gradient(to right, rgba(177, 32, 40, 1) 40%,  rgba(0, 0, 0, 1));
}
.style3 {
    color: #270202;
    font-weight: 300;
    text-align: left;
}
.logo {
  margin-bottom: 0;
  max-width: 200px;
  min-height: 90px;
}
.content {
  height: 500px;
}
.sep1 {
height: 6px;
}
.sep2 {
height: 6px;
}

.sign-up {
  background-color: #D6E9FE;
}

.menu-side {
  background-color: #FFFFFF;
  height:300px;
}
.menu-head {
  width: 160px;
}

.footer {
  height: 40px;
}
/*      --- end testing ---     */





/*----- media queries ------*/
/*      Mobile Styles       */
@media only screen and (max-width: 400px) {
/*  body {
    background-color: #F09A9D;
  } */
  .tophead {
  height: 0px;
  text-align: center;
}
  .content {
    max-height: 400px;
  }
  .content img {
    max-height: 400px;
  }
  .footer {
    height:40px;
  }
}

/*      Tablet Styles       */
@media only screen and (min-width: 401px) and (max-width: 999px) {
/*  .sign-up,
  .menu-side {
    width: 30%;
    height: 600px;
  }*/
/*  .content {
    width:75%;
  }*/
  .tophead {
  height: 0px;
  text-align: center;
}
  .content {
    max-height: 400px;
  }
  .content img {
    max-height: 400px;
  }
  .footer {
    height:40px;
  }

}


/*      Desktop Styles      */
@media only screen and (min-width: 1000px) {
  .page {
    width: 1000px;
    margin: 0 auto;
  }
  .tophead {
    margin-top: 0px;
    justify-content: flex-end;
    align-items:flex-end;
  }
  .style1{
    margin: 0px;
  }

  .menu-side {
    display:block;
    width: 25%;
    height:600px;
    margin: 0 auto;
    text-align: center;
  }
  .menu-head {
    display: flex;
    padding-left:50px;
    padding-top:20px;
    padding-bottom: 50px;
    width:80%;
    height:auto;
  }
  .logo {
    margin-left: 40px;
    padding-bottom: 60px;
  }

  .content {
    width: 1000px;
  }
  .header {
    float:left;
    height: 40px;
    justify-content: flex-end;
  }
  .sign-up {
  height: 200px;
  order: 2;
  }
  .content {
  order: 0;
  }
  .sep1 {
  height: 6px;
  order:1;
  }
  .sep2 {
  height: 6px;
  order:3;
  }
  .footer {
  text-align: right;
  justify-content: flex-end;
  order:4;
  }
}
