.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-top: 100px;
  }
}
.title-section .articles-keyframe {
  position: absolute;
  right: 7%;
  transform: translateY(100px);
}
.title-section .title-texts-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  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: #121212;
  margin: 0;
}
@media screen and (max-width: 600px) {
  .title-section .title-texts-container h1 {
    font-size: 30px;
  }
}
.title-section .title-texts-container h2 {
  flex-basis: 60%;
  color: #121212;
}
@media screen and (max-width: 600px) {
  .title-section .title-texts-container h2 {
    flex-basis: 90%;
  }
}

.cards-container {
  padding-top: 77px;
  padding-bottom: 90px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  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;
  }
}
.cards-container .card {
  border-radius: 40px;
  border: #121212 1px solid;
  display: flex;
  flex-flow: column wrap;
  padding: 30px;
  box-shadow: 0px 4px 4px rgba(211, 88, 88, 0.25);
  align-items: flex-start;
  justify-content: flex-start;
  justify-items: flex-start;
  align-content: flex-start;
  background: #FFFFFF;
  box-shadow: 0px 0px #121212;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
  transform: translate(0px, 0px);
  width: 400px;
  height: 300px;
}
@media screen and (max-width: 1600px) {
  .cards-container .card {
    height: 300px;
    width: 200px;
  }
}
@media screen and (max-width: 600px) {
  .cards-container .card {
    width: 200px;
    height: 250px;
  }
}
.cards-container .card:hover {
  box-shadow: -20px 20px 0px #121212;
}
.cards-container .card h3 {
  text-wrap: wrap;
  padding-top: 33px;
}
.cards-container .card .tag {
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 120px;
  height: 30px;
  background: #E8EAFF;
  border: 1px solid #121212;
  border-radius: 40px;
  font-family: "mographers", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.cards-container .card p {
  text-align: left;
  margin: 0;
  text-wrap: wrap;
}
@media screen and (max-width: 600px) {
  .cards-container .card p {
    width: 200px;
  }
}

.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);
}