@import url(https://fonts.googleapis.com/css?family=Bitter:400,400i,700|Oxygen:300,400,700|Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i|Varela+Round&display=swap);@import url(https://fonts.googleapis.com/css?family=Permanent+Marker&display=swap);@import url(https://fonts.googleapis.com/css?family=Comfortaa&display=swap);.post__header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1100px) {
  .post__header {
    flex-direction: column;
  }
}
.post__header img {
  width: 50%;
  max-height: 650px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1100px) {
  .post__header img {
    width: 100%;
  }
}
.post__header .header__title {
  width: 50%;
}
@media screen and (max-width: 1100px) {
  .post__header .header__title {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}
.post__header .header__title h1 {
  color: #3c3c3c;
  padding-left: 30px;
  font-family: "Bitter", serif;
  font-size: 50px;
}
@media screen and (max-width: 1100px) {
  .post__header .header__title h1 {
    padding-left: 0;
    font-size: 30px;
  }
}
.post__header .header__title .post__title__container {
  padding: 30px;
  margin-bottom: 20px;
}
.post__header .header__title .post__title__container h1 {
  color: #ffffff;
  padding-left: 0;
}
.post__header .header__title time {
  color: #2397ad;
  padding-left: 30px;
}
@media screen and (max-width: 1100px) {
  .post__header .header__title time {
    padding-left: 0;
  }
}

.post__container {
  display: flex;
  flex-direction: row-reverse;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 90px;
}
@media screen and (max-width: 1300px) {
  .post__container {
    width: 95%;
  }
}
@media screen and (max-width: 1100px) {
  .post__container {
    flex-direction: column;
  }
}
.post__container .post__sidebar {
  width: 35%;
  background-color: white;
  border-radius: 10px;
  padding: 0 32px;
  box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .post__container .post__sidebar {
    width: 100%;
  }
}
.post__container .post__sidebar .sidebar__article {
  background-color: #fefefe;
  padding: 10px 21px;
  margin: 17px 0;
  box-shadow: 2px 3px 5px #bcbcbc;
}
.post__container .post__sidebar .btn__articles {
  font-size: 20px;
  color: black;
  background: linear-gradient(to top, #ade2e8a6 0%, #ade2e8a6 55%, transparent 12.01%) no-repeat;
}
.post__container .post__sidebar a {
  text-decoration: none;
}
.post__container .post__sidebar h2 {
  color: #2397ad;
}
.post__container .post__sidebar .head__posts {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1145px) {
  .post__container .post__sidebar .head__posts {
    flex-direction: column;
  }
}
@media screen and (max-width: 750px) {
  .post__container .post__sidebar .head__posts {
    flex-direction: initial;
  }
    .page-posts-container h1 {
        font-size: 30px !important;
        margin: 25px 0 !important;
    }
}
.post__container .post__sidebar .head__posts .container__deco {
  display: flex;
  justify-content: space-between;
  width: 47%;
}
.post__container .post__sidebar .head__posts .container__deco .block-deco {
  width: 2px;
  height: 15px;
  background-color: #39747f;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 1800px) {
  .post__container .post__sidebar .head__posts .container__deco {
    display: none;
  }
}
.post__container .post__sidebar ul {
  list-style: none;
}
.post__container .post__sidebar ul p {
  color: grey;
}
.post__container .post__sidebar ul p a {
  color: inherit;
}
.post__container .post__sidebar ul h3 {
  font-family: "Bitter", serif;
  font-size: 20px;
  color: #2397ad;
}
.post__container .post__content {
  width: 65%;
  text-align: justify;
  box-sizing: border-box;
  margin: 0 42px;
  color: #686868;
}
.post__container .post__content strong {
  color: #2397ad;
}
@media screen and (max-width: 1100px) {
  .post__container .post__content {
    width: 100%;
    margin: 0;
  }
}

.page-posts-container {
  margin-left: 10%;
  margin-right: 10%;
}
@media screen and (max-width: 650px) {
  .page-posts-container {
    margin-left: 3%;
    margin-right: 3%;
  }
}
.page-posts-container h1 {
  font-family: "Bitter", serif;
  font-size: 35px;
  padding-left: 103px;
  margin: 40px 0;
  color: #2397ad;
  position: relative;
}
.page-posts-container h1:before {
  content: "";
  width: 80px;
  height: 3px;
  position: absolute;
  top: 25px;
  left: 0;
  background-color: #2397ad;
}
.page-posts-container .posts-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-bottom: 50px;
  box-sizing: border-box;
}
.page-posts-container .posts-container article {
  display: flex;
  flex-direction: column;
  box-shadow: 4px 4px 13px 0 rgba(156, 185, 226, 0.3);
  border-radius: 5px;
  background-color: #ffffff;
  width: calc((100% / 3) - 30px);
  align-items: center;
  margin: 10px;
}
.page-posts-container .posts-container article:hover > a {
  color: white;
}
@media screen and (max-width: 1450px) {
  .page-posts-container .posts-container article {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 900px) {
  .page-posts-container .posts-container article {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
    .page-posts-container .posts-container article img {
        height: 240px !important;
    }
    .page-posts-container .posts-container article h2 {
        font-size: 20px;
    }
}

@media screen and (max-width: 420px) {
    .page-posts-container .posts-container article img {
        height: 200px !important;
    }
}
@media screen and (max-width: 370px) {
    .page-posts-container .posts-container article img {
        height: 180px !important;
    }
}

.page-posts-container .posts-container article a {
  text-decoration: none;
  color: #3c3c3c;
}
.page-posts-container .posts-container article img {
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 300px;
}
.page-posts-container .posts-container article h3 {
  font-family: "Bitter", serif;
}
