html {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  width: 100%;
  margin: 0;
  padding: 0;
}

#nav {
  background-color: #fff;
  width: 100%;
}

img {
	max-width:900px;
	width:100%;
}

.logo {
  max-width: 250px;
  width: 100%;
  padding: 15px;
  margin: 0 auto;
  box-sizing: border-box;
}

.logo img {
  width: 100%;
}

.desc {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 25px;
}

.desc h4 {
  text-align: center;
  font-weight: 300;
}

.navigation {
  height: 35px;
  margin-top: 25px;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  max-width: 1200px;
  align-items: center;
  transition: 0.3s ease;
}

.navigation li {
  list-style-type: none;
  width: 100px;
  text-align: center;
  padding: 7px 16px;
  border-right: 1px solid rgba(112, 112, 112, 0.555);
  cursor: pointer;
}
.navigation li:hover {
  background-color: rgba(212, 210, 196, 0.171);
}

.navigation li:last-child {
  width: 200px;
  border-right: 0;
}

.navigation li > a {
  text-decoration: none;
  color: rgb(37, 37, 37);
}
main {
  margin-top: 50px;
  width: 100%;
  background-color: rgba(212, 210, 196, 0.171);
}

.content {
  max-width: 900px;
  width: 100%;
  padding: 25px;
  padding-top: 50px;
  margin: 0 auto;
  box-sizing: border-box;
}

.article-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.top-first {
  display: flex;
  flex-direction: row;
}

.top-first p {
  margin: 0;
  padding: 5px;
  margin-right: 7px;
}

.top-second p {
  margin: 0;
  padding: 5px 12px;
}

.heading {
  font-size: 40px;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
}

.p-section {
  margin: 10px 0 20px 0;
  color: rgb(37, 37, 37);
}

footer {
  max-width: 900px;
  width: 100%;
  display: block;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;

  min-height: 200px;
  box-sizing: border-box;
  padding: 25px;
}

.footer-links {
  display: flex;
  flex-direction: row;
}
.footer-links p {
  padding: 5px 10px 5px 10px;
}

.footer-links p a:first-child {
  padding-left: 0;
}
.footer-links p a:last-child {
  border-right: 0;
}

.footer-links p a {
  color: rgb(41, 41, 41);
  text-decoration: none;
  font-size: 16px;

  border-right: 1px solid rgba(112, 112, 112, 0.555);
  margin: 16px 0;
}

.footer-copyright {
  width: 300px;
  text-align: right;
}

#menu {
  display: none;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 600;
  align-items: center;
  border: 0;
  background: transparent;
  border: 2px solid rgb(41, 41, 41);
  cursor: pointer;
}

#menu:focus {
  outline: 0;
}

p.menu-style {
	margin: 0;
	margin-left: 5px;
}

.menu-text {
  display: inline-block;
  padding: 0;
  margin: 0;
  vertical-align: middle;
}
#person {
  font-size: 19px;
}
i.ico {
  font-size: 16px;
  margin-right: 5px;
}

#searchInput {
  position: relative;
}

#searchInput input {
  border: 0;
  border-bottom: 1px solid rgba(112, 112, 112, 0.555);
}
#search-ico {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

@media screen and (max-width: 1024px) {
  #menu {
    display: flex;
  }

  #menu:focus .navigation {
    height: 233px;
  }
  .navigation {
    height: 0; /* 233 */
    overflow: hidden;
    flex-direction: column;
    padding: 0;
  }

  .navigation li {
    border-right: 0;
  }

  .footer-copyright {
    text-align: center;
  }
  .footer-links {
    width: 300px;
    justify-content: center;
  }
  footer {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .top-first {
    font-size: 12px;
  }

  .top-second {
    font-size: 12px;
  }

  .heading {
    font-size: 30px;
  }

  #person {
    font-size: 15px;
  }
  i.ico {
    font-size: 12px;
  }
}
