.dark-color {
  background-color: #121212;
}

.light-color {
  background-color: #E8EAFF;
}

.title-section {
  padding-top: 200px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-flow: row wrap;
  column-gap: 77px;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .title-section {
    padding-bottom: 0;
    width: 100%;
  }
}
.title-section .articles-keyframe {
  position: absolute;
  right: 7%;
}
@media screen and (max-width: 600px) {
  .title-section .articles-keyframe {
    top: 30%;
  }
}
@media screen and (max-width: 600px) {
  .title-section .articles-keyframe {
    top: 30%;
  }
}
.title-section .title-texts-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: 77px;
  justify-content: flex-start;
  width: 77%;
}
@media screen and (max-width: 600px) {
  .title-section .title-texts-container {
    margin-left: 33px;
    width: 90%;
  }
}
.title-section .title-texts-container h1 {
  color: #E8EAFF;
  margin: 0;
}
@media screen and (max-width: 600px) {
  .title-section .title-texts-container h1 {
    font-size: 30px;
  }
}
.title-section .title-texts-container span {
  margin: 0;
  font-family: "oddval", sans-serif;
  font-weight: 400;
  font-style: bold;
  font-size: 62px;
  text-align: left;
  color: #E8EAFF;
  flex-basis: 70%;
  margin-top: 0;
}
@media screen and (max-width: 600px) {
  .title-section .title-texts-container span {
    flex-basis: 70%;
    font-size: 21px;
  }
}
.title-section .title-texts-container h2 {
  flex-basis: 60%;
  color: #E8EAFF;
}
@media screen and (max-width: 600px) {
  .title-section .title-texts-container h2 {
    flex-basis: 90%;
  }
}

.cards-container {
  padding: 77px 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: center;
  gap: 33px;
  flex-flow: row wrap;
  width: 77%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .cards-container {
    margin-top: 40px;
    justify-content: center;
    padding: 0;
  }
}
.cards-container .article-card {
  flex-basis: 30%;
  border-radius: 40px;
  border: #E8EAFF 1px solid;
  display: flex;
  flex-flow: column wrap;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  justify-content: center;
  background: #FFFFFF;
  box-shadow: 0px 0px #E8EAFF;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
  transform: translate(0px, 0px);
}
.cards-container .article-card:hover {
  box-shadow: -20px 20px 0px #E8EAFF;
}
.cards-container .article-card .thumbnail {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 40px;
}
.cards-container .article-card .article-card-texts-container {
  padding: 20px;
}
@media screen and (max-width: 600px) {
  .cards-container .article-card .article-card-texts-container {
    width: 60vw;
  }
}
.cards-container .article-card .article-card-texts-container p {
  width: 70%;
  text-align: left;
  color: #121212;
  padding: 0;
}
@media screen and (max-width: 600px) {
  .cards-container .article-card .article-card-texts-container p {
    width: 100%;
  }
}
.cards-container .article-card .article-card-texts-container .button-orange-more {
  border-radius: 30px;
  border: #121212 1px solid;
  width: 75px;
  height: 55px;
  float: right;
  display: flex;
  align-self: flex-end;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FF5E33;
  box-shadow: 0px 0px #121212;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
  transform: translate(0px, 0px);
  cursor: pointer;
  color: #E8EAFF;
  font-family: "oddval", sans-serif;
  font-style: normal;
  font-size: 27px;
}
.cards-container .article-card .article-card-texts-container .button-orange-more:hover {
  transform: translate(6px, -8px);
  box-shadow: -6px 8px 0px #121212;
}
.cards-container .article-card .article-card-texts-container .button-orange-more:active {
  box-shadow: -2px 2px #121212;
  transform: translate(2px, -2px);
}

.button-orange {
  border-radius: 30px;
  border: #E8EAFF 1px solid;
  width: max-content;
  height: auto;
  padding: 13px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FF5E33;
  box-shadow: 0px 0px #E8EAFF;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
  transform: translate(0px, 0px);
  cursor: pointer;
  color: #E8EAFF;
  font-family: "mographers", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 27px;
}
.button-orange:hover {
  transform: translate(6px, -8px);
  box-shadow: -6px 8px 0px #E8EAFF;
}
.button-orange:active {
  box-shadow: -2px 2px #121212;
  transform: translate(2px, -2px);
}/*# sourceMappingURL=articles.css.map */