@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
}

body {
  background-image: url("../images/Bkg.png");
  background-repeat: repeat;
}

h3 {
  font-size: 25px;
  font-weight: 700;
  color: #0a004a;
}

h1 {
  font-size: 35px;
  font-weight: 700;
  color: #0a004a;
}

h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0a004a;
}

.boldest {
  color: #0a004a;
  font-size: 70px;
  font-weight: 700;
  margin-top: -30px;
}

.logo {
  width: 100%;
  height: auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;

  -webkit-display: flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}

.logo-item {
  width: 100%;
  flex: 1;
  height: auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;

  -webkit-display: flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}

.banner {
  width: 100%;
  height: 600px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/Aviao2.png");
  display: flex;
  justify-content: center;
  align-items: center;
}

.conteudo {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  -webkit-display: flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  -webkit-flex-direction: column;
}

.conteudo-item {
  width: 300px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  -webkit-display: flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  -webkit-flex-direction: column;
}

.blog {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  -webkit-display: flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: flex-start;
}

.blog-item {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  margin: 7px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  -webkit-display: flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  -webkit-flex-direction: column;
}

.blog-item span {
  font-size: 12px;
}

.blog-item.linkpost a {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  color: black;
}

.blog-item.linkpost a:hover {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  color: rgb(16, 0, 247);
}

.blog-item.separa {
  width: 50%;
  border-bottom: 3px solid #2403fd;
  height: 5px;
}

.foot {
  width: 100%;
  height: auto;
  background-color: #444;
  color: #f4f4f4;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  -webkit-display: flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: flex-start;
}

.foot-item {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  margin: 7px;

  -webkit-display: flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  -webkit-flex-direction: column;
}

.foot-item a {
  color: #f4f4f4;
}

.foot-item a:hover {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .conteudo,
  .blog,
  .foot,
  .logo {
    flex-direction: column;
  }
  .blog-item img {
    width: 90%;
  }
}
