/* Styles for research.htm */
/* General stylesheet */
body {
    font-family: "Arial", Helvetica, sans-serif;
    background-color: white;
    margin: 0;}

img { 
    width: 100%;
    height: auto;
    vertical-align: middle;}

/* Top Navigation */
.topnav {
    overflow: hidden;
    background-color: #3b245c;}

.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;}

.topnav a:hover {
    background-color: #252525;
    color: #ffffff;}

.topnav a.active {
    background-color: white;
    color: #3b245c;}

/* Brand CEITE */
.brand {
    overflow: hidden;
    text-align: center;}

.logo {
    padding-left: 0px;
    max-width: 750px;
    height: 100px;}

/* Search button */
.botnav {
  overflow: hidden;
  background-color: #3b245c;}

.botnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;}

.botnav a:hover {
  background-color: #ddd;
  color: black;}

.botnav a.active {
  background-color: #3b245c;
  color: #3b245c;}

.botnav input[type=text] {
  float: left;
  padding-left: 6px;
  border: 8;
  margin-top: 20px;
  margin-right: 16px;
  margin-left: 8px;
  margin-bottom: 20px;
  font-size: 17px;}

.botnav a, .botnav input[type=text] {
    float: none;
    display: inherit;
    text-align: center;
    width: 25%;
    margin-left: 37.5%;
    padding: 14px;}

.botnav input[type=text] {
    border: 5px solid #3b245c;}

.footer {
    font-family: "Arial", Helvetica, sans-serif;
    color: #FFFFFF;
    height: 100%;
    border-color: #4c4754;
    text-align: center;
    font-size: 14px;
    line-height: 100px;
    background-color: #3b245c;}
    

* {box-sizing: border-box;}

/* Container for flexboxes */
.row {
  display: flex;
  flex-wrap: wrap;}

.column {
  float: left;
  width: 100%;
  padding: 15px;
  background-color: #ccc8d1;}

.column {
  flex: 25%;
  padding: 20px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
  background-color: #ccc8d1;
  border-radius: 1em 1em 1em 1em;}

.button {
  border-radius: 4px;
  background-color: #3b245c;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 15px;
  padding: 15px;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
  font-family: "Arial", Helvetica, sans-serif;
  text-decoration: none;}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;}

.button:hover span {
  padding-right: 25px;}

.button:hover span:after {
  opacity: 1;
  right: 0;}

.content {
    font-family: "Arial", Helvetica, sans-serif;}


  a:link  { color: white; text-decoration: none; }
  a:visited { color: white; text-decoration: none; }
  a:hover   { color: #AD98CB; text-decoration: none; transition: 0.5s; }
  a:active  { color: white; text-decoration: none; }

/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) {.column {flex: 100%;}}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .row {flex-direction: column;}}



