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

.footerSection {
  background-color: #232628;
  color: white;
  padding: 1rem 3rem;
  margin-top: 3.5rem;
}

.footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.5rem;
}

.footerLog {
  font-family: "Roboto", sans-serif;
}
.footerLogTitle {
  padding: 1rem 0;
  line-height: 2rem;
  color: #fe7f22;
}
.footerLog:nth-child(1) p {
  color: #8caaaa;
  font-size: 0.9rem;
  width: 85%;
}
.footerLog:nth-child(2) div {
  display: flex;
}
.footerLog:nth-child(2) div img {
  width: 3.5rem;
  padding-left: 0.3rem;
  cursor: pointer;
}
.footerLog:nth-child(3) p {
  font-size: 0.9rem;
  color: #8caaaa;
}
.footerLog:nth-child(3) .FooterLogComent {
  line-height: 2rem;
  cursor: pointer;
}
.footerLog:nth-child(4) div {
  margin-top: 1rem;
}
.footerLog:nth-child(4) a {
  color: white;
  font-size: 1.3rem;
  background-color: #5d656d;
  padding: 0.7rem;
}
.footerLog:nth-child(4) a:hover {
  background-color: #fe7f22;
}
.footerLog:nth-child(5) div {
  display: flex;
}
.footerLog:nth-child(5) div input {
  border: 2px solid #fe7f22;
  height: 2rem;
  padding: 0.5rem 0.3rem;
  outline: none;
}
.footerLog:nth-child(5) div button {
  background-color: #fe7f22;
  border: none;
  cursor: pointer;
  padding: 0 0.5rem;
}
.footerLog:nth-child(5) p {
  margin: 0.5rem;
  font-size: 0.9rem;
  color: #8caaaa;
}
.footerLog:nth-child(6) p {
  font-size: 0.9rem;
}
.footerLog:nth-child(7) p {
  font-size: 0.9rem;
}
.footerLog:nth-child(8) p {
  font-size: 0.9rem;
}

.dateSpan {
  color: #8caaaa;
}

@media screen and (max-width: 1080px) {
  .footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    height: auto;
  }
}
@media screen and (max-width: 822px) {
  .footer {
    display: grid;
    justify-items: left;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    height: auto;
  }
}
@media screen and (max-width: 822px) {
  .footer {
    display: grid;
    justify-items: left;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    height: auto;
  }
}/*# sourceMappingURL=footer.css.map */