* {
  box-sizing: border-box;
  background-color: #231F20;
  font-family: Georgia, Avenir, Avenir Light;
  color: #eaeaea;
}

body{
  margin: 10px;
  color: #eaeaea;
  padding: 10px;
}

p{
  text-align: justify;
}

.row::after{
  content: "";
  clear: both;
  display: flex;
}

.header{
  padding-top: 10px;
  width: 100%;
  position: fixed;
  z-index: 1;
}

.navbar {
  width: 75%;
  overflow: hidden;
  background-color: #231F20;
  float: right;
  padding-top: 13px;
  padding-right: 50px;
}

.navbar .icon {
  display: none;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #ad974f;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ad974f;
  min-width: 160px;
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: inherit;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: inherit;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.navbar .icon {
  display: none;
}


.logo{
  width: 20%;
  float: left;
  padding-left: 150px;
  color: #eaeaea;
  overflow: hidden;
  position: fixed;

}

.logo a{
  overflow: hidden;
  text-decoration: none;
}


.menu a {
  text-align: center;
  color: #eaeaea;
  float: right;
  padding: 10px 12px;
  text-decoration: none;
}

.row{
  width: 100%;
  background-color: #231F20;
  padding-top: 100px;
}

.col-4{
  width: 40%;
  float: left;
  padding: 13px;
}


.col-4 img {
  width: 70%;
  height: auto;
  align-content: center;
  padding-left: 25px;
}

.col-5{
  width: 50%;
  float: left;
  padding: 13px;
}

.new-column {
  width: 75%;
  float: right;
  padding: 13px;
}


.footer {
  background-color: #231F20;
  width: 100%;
  text-align: center;
  color: red;
}

/*respinsive Styles fo smaller screens */
@media screen and (max-width: 600px) {
  .navbar.responsive {position: relative;}
  .navbar.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .navbar.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

}

@media screen and (max-width: 600px) {
  .navbar a:not(:first-child) {display: none;}
  .navbar a.icon {
    float: right;
    display: block;
  }
}





