
.navbar1 {
  /* overflow: hidden; */
  /* background-color: #333; */
  /* font-family: Arial, Helvetica, sans-serif; */
}

.navbar1 a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown1 {
  float: left;
  overflow: hidden;
}

.dropdown1 .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font: inherit;
  margin: 0;
}

.navbar1 a:hover, .dropdown1:hover .dropbtn {
  color: rgba(52,52,52,.7);
}

.dropdown-content1 {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width: 87%;
  left: 0;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  margin-top: 47px;
  /* margin: 0 auto; */
  justify-content: center;
  /* top: 50%; */
  left: 50%;
  transform: translate(-50%, 0%);
  background-color: #fff;
   border-radius: 15px;
  box-shadow: 0 3px 15px 0 rgba(0,0,0,.16);
}

.dropdown-content1 .header {
  background: red;
  padding: 16px;
  color: white;
}

.dropdown1:hover .dropdown-content1 {
  display: block;
}

/* Create three equal columns that floats next to each other */
.column1 {
  /* float: right; */
  /* width: 33.33%;*/
  padding: 15px;
  /* background-color: red; */
  /* height: 250px; */
  /* border-left: 1px solid #171347; */
}

.column1 a {
  float: none;
  color: black;
  padding: 9px;
  text-decoration: none;
  display: block;
  text-align: right;
}

.column1 a:hover {
  color: #43d477;
}

  .bck {
    background: #ebf7ff;
    border-top: 2px solid #43d477;
    border-radius: 5px;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column1 {
    width: 100%;
    height: auto;
  }
}

