@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700);
:root {
  --body-theme:#0c1017;
  --continer-theme:#21262d;
  --text-color:#fff;
  --formatBtn-color: #313131;
  --card-color: rgb(34, 34, 34) ;
}

* {
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Open Sans", sans-serif;
}

a {
  text-decoration: none;
}

h1 {
  font-family: "Open Sans", sans-serif;
  font-size: xx-large;
  font-weight: 300;
}

.card2 {
  float: left;
  padding: 0 1.7rem;
  width: 100%;
}
.card2 .menu-content {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.card2 .menu-content::before, .card2 .menu-content::after {
  content: "";
  display: table;
}
.card2 .menu-content::after {
  clear: both;
}
.card2 .menu-content li {
  display: inline-block;
}
.card2 .menu-content a {
  color: #fff;
}
.card2 .menu-content span {
  position: absolute;
  left: 50%;
  top: 0;
  font-size: 10px;
  font-weight: 700;
  font-family: "Open Sans";
  transform: translate(-50%, 0);
}
.card2 .wrapper {
  background-color: #fff;
  min-height: 540px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);
}
.card2 .wrapper:hover .data {
  transform: translateY(80px);
}
.card2 .data {
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: translateY(calc(170px + 1em));
  transition: transform 0.3s;
}
.card2 .data .content {
  padding: 1em;
  position: relative;
  z-index: 1;
}
.card2 .author {
  font-size: 12px;
  text-transform: capitalize;
}
.card2 .title {
  margin-top: 10px;
}
.card2 .text {
  height: 70px;
  margin: 0;
}
.card2 input[type=checkbox] {
  display: none;
}
.card2 input[type=checkbox]:checked + .menu-content {
  transform: translateY(-60px);
}

.example-1 .tags {
  width: 100%;
  margin-top: 110px;
}
.example-1 .tags .tag {
  padding: 0px 10px;
  font-weight: 300;
  border-radius: 20px;
  background-color: #68b9a0;
  text-transform: capitalize;
  white-space: nowrap;
}
.example-1 .wrapper img {
  width: 100%;
  -webkit-mask-image: linear-gradient(black 50%, transparent 100%);
}
.example-1 .date {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #77d7b9;
  color: #fff;
  padding: 0.8em;
}
.example-1 .date span {
  display: block;
  text-align: center;
}
.example-1 .date .day {
  font-weight: 700;
  font-size: 24px;
  text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.18);
}
.example-1 .date .month {
  text-transform: uppercase;
}
.example-1 .date .month,
.example-1 .date .year {
  font-size: 12px;
}
.example-1 .content {
  background-color: var(--card-color);
  box-shadow: 0 5px 30px 10px rgba(0, 0, 0, 0.3);
  height: 450px;
}
.example-1 .title a {
  color: gray;
}
.example-1 .menu-button {
  position: absolute;
  z-index: 999;
  top: 16px;
  right: 16px;
  width: 25px;
  text-align: center;
  cursor: pointer;
}
.example-1 .menu-button span {
  width: 5px;
  height: 5px;
  background-color: gray;
  color: gray;
  position: relative;
  display: inline-block;
  border-radius: 50%;
}
.example-1 .menu-button span::after, .example-1 .menu-button span::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: currentColor;
  position: absolute;
  border-radius: 50%;
}
.example-1 .menu-button span::before {
  left: -10px;
}
.example-1 .menu-button span::after {
  right: -10px;
}
.example-1 .menu-content {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  transition: transform 0.3s;
  transform: translateY(0);
}
.example-1 .menu-content li {
  width: 33.333333%;
  float: left;
  background-color: #77d7b9;
  height: 60px;
  position: relative;
}
.example-1 .menu-content a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
}
.example-1 .menu-content span {
  top: -10px;
}

.pagesNavigation i, .pagesNavigation a {
  color: var(--text-color);
}
.pagesNavigation a:hover {
  color: var(--text-color);
}

body.light {
  --body-theme: #ffffff;
  --card-color:#fdfdfd;
  --text-color:#313131;
}
body.light .card2 .author {
  color: whitesmoke;
}
body.light .card2 .content p {
  color: var(--text-color);
}

@media (max-width: 991px) {
  .card2 .data .content {
    height: 440px;
  }
}
@media (max-width: 501px) {
  .card2 .data .content {
    height: 430px;
  }
}/*# sourceMappingURL=card3.css.map */