main article {
  padding: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
main article h1 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 20px;
  color: #0d65ad;
}
main article div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main article div img {
  width: 90vw;
  border-radius: 2%;
  margin-bottom: 20px;
}
main article div p {
  text-align: center;
  text-align: justify;
  width: 90vw;
  color: #0d65ad;
  line-height: 25px;
}
main article .second-div {
  margin-top: 20px;
}

.img-mobile-2 {
  display: none;
}

@media (min-width: 768px) {
  main article {
    padding: 2vw 5vw;
  }
  main article div {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
  }
  main article div img {
    width: 500px;
    height: 250px;
    margin-right: 40px;
    margin-bottom: 0;
    border-radius: 2%;
  }
  main article div p {
    margin-right: 40px;
    width: 40vw;
  }
  .img-mobile-2 {
    display: block;
  }
  .img-mobile {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */