.accordion {
  background-color: rgb(241, 245, 249);
  /* border: 2px solid red; */
  color: #444;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: right;
  padding-right: 10%;
}

/* .active,
  .accordion:hover {
    background-color: #ccc;
  } */

.accordion:after {
  content: "\2207";
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active1:after {
  content: "\2206";
}

.panel {
  background-color: rgb(241, 245, 249);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}
ol {
  width: 70%;
  margin: auto;
  padding: 20px;
}

ol > li {
  padding: 20px;
}

#foot {
  color: white;
  background-color: rgb(31, 32, 36);
  font-family: sans-serif;
}
#footer{
  /* border: 2px solid red; */
  width: 75%;
  margin: auto;
  padding-top: 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}
#box1 {
  display: flex;
  border: 2px solid gray;
  width: 250px;
  height: 30px;
  align-items: center;
  padding: 5px;
}
#box1 > button {
  background-color: rgb(0, 132, 255);
  width: 120px;
  height: 30px;
  color: white;
  border: none;
  cursor: pointer;
  /* margin-left: 70px; */
}
#footer h4 {
  margin-top: 0%;
  color: rgb(151, 151, 151);
  font-weight: lighter;
}
#box1 > input {
  width: 90%;
  background-color: rgb(31, 32, 36);
  border: none;
  color: white;
}
#box1 > input::placeholder {
  color: white;
}

#box1 > input:focus{
  outline: none;
}

#foot a {
  text-decoration: none;
  color: white;
  padding-top: 10px;
}
#lastbox {
  width: 75%;
  /* border: 2px solid red; */
  margin: auto;
}

#moreinfo {
  display: flex;
  /* border: 2px solid red; */
  justify-content: right;
  margin-left: auto;
  width: fit-content;
  gap: 15px;
  margin-top: 60px;
  font-size: 14px;
}

#ind {
  background-color: rgb(60, 60, 66);
  display: flex;
  width: 150px;
  height: 25px;
  padding: 5px;
  padding-left: 10px;
  align-items: center;
  gap: 10px;
}
#logo {
  display: flex;
}
#social {
  display: flex;
  margin-left: auto;
  /* background-color: white; */
  border-radius: 6px;
  gap: 2px;
  margin-bottom: 30px;
}
#social > div > a > img {
  background-color: white;
  border-radius: 5px;
  border: 1px solid black;
  /* margin-top: 5px; */
  height: 25px;
  width: 25px;
}
#copy {
  width: 75%;
  margin: auto;
  margin-top: 50px;
  height: 90px;
}

#copy > p:nth-child(1) {
  color: grey;
  font-size: 10px;
  margin-bottom: 10px;
}
#copy > div {
  display: flex;
  gap: 30px;
  font-size: 10px;
}

#copy > div:hover {
  cursor: pointer;
  color: rgb(107, 104, 104);
}
#scroll {
  display: none;
}

/* @media only screen and (max-width: 720px) {
  #foot {
    color: white;
    background-color: rgb(31, 32, 36);
    font-family: sans-serif;
  }
  #footer {
    width: 75%;
    margin: auto;
    padding-top: 100px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
  }

  #moreinfo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  #logo {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    justify-items: center;
  }
  #ind {
    width: 70%;
    margin-bottom: 30px;
  }
  #social {
    margin: auto;
  }
  #copy > div {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
  }
  #copy > div > p {
    line-height: 0%;
    margin: 0%;
  }
  #copy > div > p:nth-child(2) {
    padding-bottom: 50px;
  }
  #copy > div > p:nth-child(1) {
    padding-top: 20px;
  }
  #footer {
    display: none;
  }
  #scroll {
    display: grid;
  }
  #box1 > img {
    display: none;
  }
  .accordio {
    max-width: 400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    font-family: "Quicksand", sans-serif;
    background-color: rgb(31, 32, 36);
  }

  .accordion__content {
    padding: 14px 20px;
    color: black;
  }

  .accordion__label {
    display: block;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: background 0.1s;
  }

  .accordion__label:hover {
    background: rgba(0, 0, 0, 0.1);
  }

  .accordion__label:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 12px;
    height: 6px;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="50" xmlns="http://www.w3.org/2000/svg"><polygon points="0,0 100,0 50,50" style="fill:%23FFFFFF99;" /></svg>');
    background-size: contain;
    transition: transform 0.4s;
  }

  .accordion__content {
    color: white;
    line-height: 1.6;
    font-size: 0.85em;
    display: none;
  }

  .accordion__input {
    display: none;
  }

  .accordion__input:checked ~ .accordion__content {
    display: block;
  }

  .accordion__input:checked ~ .accordion__label::after {
    transform: translateY(-50%) rotate(0.5turn);
  }
  .accordion__label {
    border-bottom: 2px solid grey;

    line-height: 3.6;
    font-size: 0.85em;
    padding-left: 20px;
  }
  .accordion__content > div {
    display: flex;
  }
} */

@media only screen and (max-width: 720px) {
  #foot {
    color: white;
    background-color: rgb(31, 32, 36);
    font-family: sans-serif;
  }
  #footer {
    width: 75%;
    margin: auto;
    padding-top: 100px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
  }

  #moreinfo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  #logo {
    /* border: 2px solid red; */
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    justify-items: center;
  }
  #ind {
    width: 70%;
    margin-bottom: 30px;
  }
  #social {
    margin: auto;
  }
  #copy > div {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
  }
  #copy > div > p {
    line-height: 0%;
    margin: 0%;
  }
  #copy > div > p:nth-child(2) {
    padding-bottom: 50px;
  }
  #copy > div > p:nth-child(1) {
    padding-top: 20px;
  }
  #footer {
    display: none;
  }
  #scroll {
    display: grid;
  }
  #box1 > img {
    display: none;
  }
  .accordio {
    max-width: 400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    font-family: "Quicksand", sans-serif;
    background-color: rgb(31, 32, 36);
  }

  .accordion__content {
    padding: 14px 20px;
    color: black;
  }

  .accordion__label {
    display: block;
    /* color: #ffffff; */
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: background 0.1s;
  }

  .accordion__label:hover {
    background: rgba(0, 0, 0, 0.1);
  }

  .accordion__label:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 12px;
    height: 6px;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="50" xmlns="http://www.w3.org/2000/svg"><polygon points="0,0 100,0 50,50" style="fill:%23FFFFFF99;" /></svg>');
    background-size: contain;
    transition: transform 0.4s;
  }

  .accordion__content {
    color: white;
    line-height: 1.6;
    font-size: 0.85em;
    display: none;
  }

  .accordion__input {
    display: none;
  }

  .accordion__input:checked ~ .accordion__content {
    display: block;
  }

  .accordion__input:checked ~ .accordion__label::after {
    transform: translateY(-50%) rotate(0.5turn);
  }
  .accordion__label {
    border-bottom: 2px solid grey;

    line-height: 3.6;
    font-size: 0.85em;
    padding-left: 20px;
  }
  .accordion__content > div {
    /* border: 2px solid red; */
    display: flex;
  }
}

