#aboutme, #projects, #skills, #contact {
  scroll-margin-top: 40px;
}

@media (max-width: 768px) {
  #skills {
    scroll-margin-top: 70px;
  }
  #contact {
    scroll-margin-top: 45px;
  }
}
#aboutme {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8% 0% 2% 0%;
}
#aboutme h1, #aboutme h2, #aboutme .link {
  padding: 2% 0%;
}
#aboutme h1 {
  color: #fff;
}
#aboutme h2 {
  color: #007ACC;
}
#aboutme .link {
  display: flex;
  gap: 4rem;
}
#aboutme .link a {
  color: #ffffff;
  background-color: #004080;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

@media (max-width: 768px) {
  #aboutme {
    padding-top: 15%;
  }
  #aboutme h1, #aboutme h2, #aboutme .link {
    padding: 3% 0%;
  }
}
@media (max-width: 425px) {
  #aboutme {
    padding-top: 20%;
  }
  #aboutme h1, #aboutme h2, #aboutme .link {
    padding: 5% 0%;
  }
}
#projects {
  padding: 4%;
}
#projects h2 {
  color: #007ACC;
  text-align: center;
  padding-bottom: 3%;
}
#projects .link {
  display: flex;
  justify-content: center;
  padding-top: 3%;
}
#projects .link a {
  color: #ffffff;
  background-color: #004080;
  text-decoration: none;
  padding: 0.5%;
  border-radius: 5px;
}
#projects .project {
  display: flex;
  justify-content: space-between;
}
#projects .project .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #B0B0B0;
  border-radius: 5px;
  padding: 1%;
  width: 22%;
  height: 100%;
}
#projects .project .content a {
  display: contents;
}
#projects .project .content a img {
  max-width: 100%;
  height: auto;
}
#projects .project .content p {
  color: #fff;
  text-align: center;
  padding-top: 3%;
}
@media (max-width: 768px) {
  #projects .link a {
    padding: 2%;
  }
  #projects .project {
    flex-direction: column;
    align-items: center;
  }
  #projects .project .content {
    max-width: 70%;
    width: 70%;
    margin: 5% 0%;
  }
}
@media (max-width: 425px) {
  #projects .link a {
    padding: 3%;
  }
  #projects .project .content {
    max-width: 90%;
    width: 90%;
  }
  #projects .project .content img {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  #projects {
    margin: 3% 0%;
  }
  #projects h2 {
    padding: 0%;
  }
}
@media (max-width: 425px) {
  #projects {
    margin: 10% 0%;
  }
  #projects h2 {
    padding-bottom: 5%;
  }
}
#skills {
  padding: 4%;
}
#skills h2 {
  color: #007ACC;
  text-align: center;
  padding-bottom: 3%;
}
#skills .placement {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#skills .placement .timeline {
  display: grid;
  width: 50%;
  grid-template-columns: 1fr 3px 1fr;
  z-index: 0;
}
#skills .placement .timeline__component {
  margin: 0px 5% 5% 5%;
}
#skills .placement .timeline__content {
  background: #ffffff;
  border-radius: 5px;
  padding: 20px;
}
#skills .placement .timeline__content h3, #skills .placement .timeline__content p {
  background-color: #ffffff;
}
#skills .placement .timeline__content h3 {
  color: #007ACC;
}
#skills .placement .timeline__content p {
  color: #000;
  padding-top: 4%;
}
#skills .placement .timeline__middle {
  position: relative;
  width: 3px;
  height: 100%;
  background: #fff;
}
#skills .placement .timeline__middle .timeline-circle {
  position: absolute;
  left: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  #skills .placement .timeline {
    width: 80%;
  }
}
@media (max-width: 425px) {
  #skills .placement .timeline {
    width: 90%;
  }
}
@media (max-width: 768px) {
  #skills h2 {
    padding: 5% 0% 8% 0%;
  }
}
@media (max-width: 425px) {
  #skills h2 {
    padding: 5% 0% 15% 0%;
  }
}

#project {
  padding: 8% 4% 4% 4%;
}
#project h1 {
  color: #007ACC;
  text-align: center;
}
#project .information {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5% 0%;
}
#project .information__img {
  display: flex;
  justify-content: center;
}
#project .information__img img {
  max-width: 60%;
  border: 1px solid #B0B0B0;
  border-radius: 5px;
}
#project .information__card {
  color: #fff;
  border: 1px solid #B0B0B0;
  border-radius: 5px;
  padding: 0.5% 1%;
  max-width: 40%;
  width: 100%;
}
#project .information__card p, #project .information__card a {
  padding: 5% 0%;
}
#project .information__card a {
  color: #fff;
  text-decoration: none;
}
#project .information__card a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  #project .information {
    flex-direction: column;
    padding: 4% 0%;
  }
  #project .information__card {
    max-width: 80%;
    width: 100%;
  }
  #project .information__img {
    padding-bottom: 5%;
  }
}
@media (max-width: 425px) {
  #project .information__card {
    width: 90%;
    margin: 5% 0%;
    padding: 0% 2%;
  }
  #project .information__img {
    padding: 5% 0%;
  }
}
#project .image {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 4% 0%;
}
#project .image img {
  max-width: 20%;
  height: auto;
  border: 1px solid #B0B0B0;
  border-radius: 5px;
}
@media (max-width: 768px) {
  #project .image {
    flex-direction: column;
    align-items: center;
  }
  #project .image img {
    max-width: 70%;
    margin: 2% 0%;
  }
}
#project .link {
  display: flex;
  justify-content: center;
  padding-top: 2%;
}
#project .link a {
  color: #ffffff;
  background-color: #004080;
  text-decoration: none;
  padding: 0.5%;
  border-radius: 5px;
}
@media (max-width: 768px) {
  #project .link a {
    padding: 1.5%;
  }
}

@media (max-width: 768px) {
  #project {
    padding-top: 15%;
  }
}
@media (max-width: 425px) {
  #project {
    padding-top: 25%;
  }
}
#filter {
  padding: 8% 4% 4% 4%;
}
#filter h1 {
  color: #007ACC;
  text-align: center;
}
#filter .content {
  display: flex;
  align-items: flex-start;
  padding-top: 4%;
}
#filter .content__filter {
  width: 15%;
}
#filter .content__filter p {
  color: #fff;
  padding-bottom: 10%;
}
#filter .content__filter form .checkbox-group {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  max-width: 62%;
  gap: 15px;
}
#filter .content__filter form .checkbox-group label {
  text-align: left;
  color: #fff;
}
#filter .content__filter form .checkbox-group input {
  justify-self: end;
}
#filter .content__filter form .submit {
  display: flex;
  margin: 10% 0%;
}
#filter .content__filter form .submit button {
  color: #ffffff;
  background-color: #004080;
  border: none;
  padding: 2%;
  border-radius: 5px;
  cursor: pointer;
}
#filter .content__results {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
}
#filter .content__results p {
  color: #fff;
  text-align: center;
}
#filter .content__results .card {
  display: flex;
  border: 1px solid #B0B0B0;
  color: #fff;
  border-radius: 5px;
  max-width: 45%;
  margin-bottom: 2%;
}
#filter .content__results .card__img {
  width: 50%;
}
#filter .content__results .card__img a img {
  max-width: 100%;
  padding: 2% 2% 1% 2%;
}
#filter .content__results .card__information {
  width: 50%;
}
#filter .content__results .card__information h3 {
  text-align: center;
  padding: 4% 0%;
  color: #007ACC;
}
#filter .content__results .card__information p {
  padding: 2%;
}
@media (max-width: 1000px) {
  #filter .content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 2%;
  }
  #filter .content__filter {
    width: 90%;
    padding-top: 5%;
  }
  #filter .content__filter form .checkbox-group {
    max-width: 100%;
    gap: 20px;
  }
  #filter .content__filter form .submit {
    justify-content: center;
  }
  #filter .content__results {
    flex-direction: column;
    width: 90%;
  }
  #filter .content__results .card {
    max-width: 100%;
  }
}
@media (max-width: 425px) {
  #filter .content__filter {
    padding: 10% 0% 5% 0%;
  }
  #filter .content__results .card {
    flex-direction: column-reverse;
    align-items: center;
    padding: 3% 0%;
    margin: 5% 0%;
  }
  #filter .content__results .card__img {
    width: 80%;
    margin-top: 3%;
  }
  #filter .content__results .card__information {
    width: 100%;
  }
}
#filter .link {
  display: flex;
  justify-content: center;
}
#filter .link a {
  color: #ffffff;
  background-color: #004080;
  text-decoration: none;
  padding: 0.5%;
  border-radius: 5px;
}
@media (max-width: 768px) {
  #filter .link a {
    padding: 1.5%;
  }
}

@media (max-width: 768px) {
  #filter {
    padding-top: 15%;
  }
}
@media (max-width: 425px) {
  #filter {
    padding-top: 25%;
  }
}
#contact {
  padding: 4% 4% 3% 4%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#contact h2 {
  color: #007ACC;
  text-align: center;
}
#contact .alert-success {
  color: green;
  padding: 3% 0% 1% 0%;
  font-weight: bold;
}
#contact form {
  display: grid;
  justify-content: center;
  gap: 3rem;
  padding: 3% 0%;
}
#contact form label {
  color: #fff;
}
#contact form ul li {
  color: red;
  list-style-type: none;
}
#contact form .form-double {
  display: flex;
  gap: 10rem;
}
#contact form .form-double div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#contact form .form-double input {
  background-color: #F5F5F5;
  border: 1px solid #B0B0B0;
  border-radius: 4px;
  padding: 0.5rem;
  width: 300px;
}
#contact form .form-textarea textarea {
  background-color: #F5F5F5;
  border: 1px solid #B0B0B0;
  border-radius: 4px;
  padding: 0.25rem;
  width: 100%;
  height: 80px;
  margin-top: 3%;
}
#contact form .submit-form {
  display: flex;
  justify-content: center;
}
#contact form .submit-form button {
  color: #ffffff;
  background-color: #004080;
  border: none;
  padding: 1.5%;
  border-radius: 5px;
  cursor: pointer;
}
@media (max-width: 950px) {
  #contact h2 {
    padding: 8% 0%;
  }
  #contact .alert-success {
    padding: 3% 0% 6% 0%;
  }
  #contact form {
    display: block;
    width: 80%;
  }
  #contact form ul li {
    text-align: center;
    margin: 0% 0% 6% 0%;
  }
  #contact form .form-double {
    flex-direction: column;
    gap: 0%;
  }
  #contact form .form-double div {
    gap: 0%;
  }
  #contact form .form-double div input {
    margin: 3% 0% 6% 0%;
    max-width: 100%;
    width: 98%;
  }
  #contact form .form-textarea textarea {
    margin-bottom: 6%;
    max-width: 100%;
    width: 100%;
  }
  #contact form .submit-form button {
    padding: 2%;
  }
}
@media (max-width: 425px) {
  #contact h2 {
    padding: 10% 0%;
  }
  #contact .alert-success {
    padding: 3% 0% 8% 0%;
  }
  #contact form ul li {
    margin: 0% 0% 12% 0%;
  }
  #contact form .form-double div input {
    margin: 6% 0% 12% 0%;
    max-width: 100%;
    width: 97%;
  }
  #contact form .submit-form button {
    padding: 3%;
  }
}/*# sourceMappingURL=section.css.map */