body {
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 92%;
  margin: auto;
}

.options {
  display: flex;
  flex-wrap: wrap;
}

ul {
  list-style: none;
}

.footer {
  /* padding: 150px 0px 200px 0; */
  padding: 100px 0 10px 0;
}

.footer-opt {
  /* width: 15.5%; */
  width: fit-content;
  padding: 0 4rem 0 0;
}

.footer-opt h4 {
  font-size: 16px;
  color: black;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
}

.footer-opt ul li:not(:last-child) {
  margin-bottom: 5px;
}

.footer-opt ul li a {
  font-size: 12px;
  text-transform: capitalize;
  color: black;
  text-decoration: none;
  font-weight: 600;
  display: block;
  transition: all 0.3s ease;
}

.footer-opt ul li a:hover {
  text-decoration-line: underline;
}

hr {
  margin: 80%;
  border: 0px;
  border-bottom: 1px solid rgb(236, 222, 222);
  margin: 100px auto;
  padding: 50px 0px 0px 0px;
}

#div2 {
  text-align: right;
}

.divfoot {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: black;
  font-weight: 700;
}

#reserved {
  color: rgb(0, 0, 0);
  font-size: 12px;
  font-weight: 700;
}

#reserved a {
  font-size: 12px;
}

footer #div2 a p {
  font-size: 13px;
}


#end {
  padding: 100px 0px 0px 0px;
  font-size: 10px;
  color: black;
  font-weight: 300;
  margin-bottom: -80px;
}

@media screen and (max-width: 1200px) {
  #footer a {
    font-size: 13px;
  }
}

@media screen and (max-width: 992px) {
  .container {
    max-width: 93%;
  }

  /* .options {
    justify-content: space-between;
  } */

  .footer-opt h4 {
    font-size: 14px;
  }

  #footer a {
    font-size: 12px;
  }

  footer hr {
    margin: 0 0 40px 0;
  }
}

@media screen and (max-width: 767px) {
  .footer-opt {
    width: 50%;
    margin-bottom: 30px;
    padding: 0 2rem 0 0;
  }

  .footer-opt h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-opt ul li {
    font-size: 14px;
    margin: 0;
  }

  .options {
    justify-content: space-between;
  }

  .divfoot {
    display: block;
  }

  .divfoot #div2 {
    text-align: left;
  }
  .divfoot #div2 a {
    text-align: right;
  }

}