nav {
  position: sticky;
  top: 0px;
  right: 0px;
  left: 0px;
  background-color: #f5f5f5;
  width: 100%;
  /* height: 90px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5% 2%;
}

nav > div {
  display: flex;
  height: 100%;
  width: 100%;
}

nav > .image {
  z-index: -1;
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  justify-content: center;
  /* border: 1px solid green; */
}

nav > .image img {
  /* border: 1px solid RED; */
  /* width: 100%; */
  height: 100%;
}

nav > .links {
  /* border: 2px solid red; */
  position: fixed;
  top: 90px;
  left: 0px;
  /* right: 0px; */
  right: -1000px;
  background-color: #f5f5f5;
  flex-direction: column;
  justify-content: space-between;
  /* align-items: center; */
  padding: 10px;
  width: 50%;
  height: 50%;
  transition: 0.3s all;
  border-bottom-left-radius: 5%;
}

nav > .links > a {
  width: 100%;
  height: 30%;
  margin: 10px auto;
  display: flex;
  align-items: center;
  text-decoration: none;
  /* border: 1px solid green; */
  color: #818286;
  font-size: 1.2rem;
  font-weight: 600;
}

nav > .links > a:hover {
  color: #221e1f;
}

nav > .btns {
  /* border: 1px solid green; */
  align-items: center;
  justify-content: space-between;
}

nav > .btns button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #818286;
  background-color: white;
  border: none;
  outline: none;
  border-radius: 25px;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0px 0px 5px 0px #fff;
}

nav > .btns button:hover {
  background-color: #818286;
  box-shadow: 0px 0px 5px 0px #221e1f;
  color: white;
  transition: 0.1s all;
  font-size: 1.6rem;
}

/* nav>.btns .bars {
    display: none;
    transition: 0.1s all;
} */

/* nav>.links {
    display: none;
} */

/* footer */
footer {
  /* height: 50vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 10%;
}
footer > section {
  width: 100%;
  height: 100%;
  /* background-color: aqua; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column-reverse;
  border-bottom: 1px solid #221e1f;
  padding: 20px;
}
footer > section > div {
  width: 100%;
  height: 100%;
  /* border: 1px solid red; */
  margin: 20px;
}
footer .left {
  width: 100%;
  /* border: 1px solid red; */
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

footer .left > img {
  /* border: 1px solid rebeccapurple; */
  width: 50%;
}
footer .left p {
  /* width: 50%; */
  /* border: 1px solid red; */
  text-align: center;
  font-size: 100%;
  font-weight: 700;
  word-spacing: 5px;
}
footer .left a,
footer .left strong {
  color: #818286;
}
footer .left a:hover,
footer .left strong:hover {
  font-size: 102%;
}

footer .center {
  /* padding: 20px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* padding-top: 90px; */
}
footer .center > * {
  /* border: 1px solid green; */
  margin: 5px;
  padding: 5px;
  width: 100%;
}

.center > p {
  font-size: 1.7rem;
  font-weight: bold;
}
.center > ul {
  /* border: 1px solid red; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.center > ul > p {
  width: 100%;
  padding: 5px;
  margin: 5px;
  /* border: 1px solid red; */
  color: #221e1f;
  font-size: 1.3rem;
}
.center > ul > p > i {
  margin-left: 10px;
  font-size: 1.2rem;
}
.center > .social {
  /* border: 1px solid red; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px;
}
.center > .social a {
  font-size: 1.3rem;
  padding: 5px 15px;

  color: #221e1f;
  background-color: #f5f5f5;
  border-radius: 50px;
  transform: scale(1.01);
}
.center > .social a:hover {
  color: #f5f5f5;
  background-color: #221e1f;
}

@media only screen and (max-width: 768px) {
  nav > .links {
    /* border: 2px solid red; */
    position: fixed;
    top: 90px;
    left: 0px;
    right: 0px;
    right: -1000px;
    background-color: #f5f5f5;
    flex-direction: column;
    justify-content: space-between;
    /* align-items: center; */
    padding: 10px;
    width: 100%;
    /* height: 30%; */
    transition: 0.3s all;
    border-bottom-left-radius: 10%;
    border-bottom-right-radius: 5%;
  }

  nav > .links > a {
    width: 100%;
    height: 30%;
    margin: 10px auto;
    display: flex;
    align-items: center;
    text-decoration: none;
    /* border: 1px solid green; */
    color: #818286;
    font-size: 1.2rem;
    font-weight: 600;
  }

  footer > section {
    width: 100%;
    height: 100%;
    /* background-color: aqua; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column-reverse;
    border-bottom: 1px solid #221e1f;
    padding: 20px;
  }
}
