.newest_news {
  width: 100vw;
  height: 60vh;
  background-color: #000;
  position: relative;
  cursor: pointer;
}

.newest_news .news_data {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.newest_news a {
  position: absolute;
  z-index: -1;
  visibility: hidden;
}



.newest_news .news_data .image_box {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newest_news .news_data .image_box img {
  width: auto;
  height: 100%;
}

.newest_news .news_data .text_box {
  position: absolute;
  bottom: 5%;
  filter: drop-shadow(0 0 .2rem #000) drop-shadow(0 0 .4rem #000) drop-shadow(0 0 .6rem #000);
  color: #fff;
  font-family: body;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.newest_news .news_data .text_box h1 {
  font-size: 1.8rem;
}

.newest_news .news_data .text_box .topper_text {
  font-size: 1.2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.newest_news .news_data .text_box .newest_news_date {
  color: #a3a3a3;
}











.news_list {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: start;
  min-height: 10vh;
  position: relative;
  width: 100vw;
  padding-bottom: 10vh;
}


.news_list_items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  min-height: 10vh;
  width: 100%;
  position: relative;
  margin: 2vh 0vw;
}

.news_list button {
  font-size: 1.2rem;
  text-transform: capitalize;
  color: #fff;
  position: absolute;
  bottom: 0vh;
  left: 50%;
  outline: none;
  transform: translateX(-50%);
  background-color: transparent;
  border: none;
}

.news_list button::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 0.3rem;
  background-color: #ff00ef;
  border-radius: 0.2rem;
}

.news_list button:active {
  background-color: hsla(304, 100%, 50%, 0.5);
}

.news_list button:active::after {
  background-color: none;
}


.news_list .news_list_items {
  color: #fff;
  text-transform: capitalize;
  text-decoration: none;
}


.news_list .news_list_items .news_item {
  width: 80%;
  height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #000;
  border-radius: 0.8rem;
  border: 0.01rem solid #a3a3a3;
}

.news_list .news_list_items .news_item .image_box {
  width: 100%;
  height: 35vh;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news_list .news_list_items .news_item .image_box img {
  height: 100%;
}

.news_list .news_list_items .news_item .text_box {
  padding: 1.5rem;
}

.news_list .news_list_items .news_item .topper_box {
  font-size: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}


.news_list .news_list_items .news_item .news_data {
  color: #a3a3a3;
}

.news_list .news_list_items .news_item h2 {
  font-size: 1.2rem;
}






















.subscribe_to_news {
  position: relative;
  mask: linear-gradient(to bottom, transparent 0%, #000000 20%, #000000 80%, transparent 100%);
  background: url(../assets/create_new.png);
  background-size: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50vh;
  text-align: center;
  padding: 2rem;
  z-index: 2;
}

.subscribe_to_news::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #121212 5%, hsla(0, 0%, 7%, 0.7), #121212 95%);
}

.subscribe_to_news svg {
  width: 20vw;
  height: auto;
  aspect-ratio: 1/1;
  fill: #fff;
}

.subscribe_to_news h2 {
  color: #fff;
  font-size: 1.5rem;
  margin: 1rem 0rem 0.8rem 0rem;
}

.subscribe_to_news p {
  color: #ddd;
}

.subscribe_to_news a {
  color: #fff;
  margin-top: 2rem;
  text-transform: capitalize;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border: 0.2rem solid #fff;
  border-radius: 1rem;
}

.subscribe_to_news a:hover {
  background-color: #ffffff50;
}






































footer {
  box-shadow: 0 -0.2rem 1.2rem rgba(0, 0, 0, 0.7);
  color: #ffffff;
  background: #000000;
  position: relative;
  width: 100%;
  min-height: 6rem;
}

footer .footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 1rem 0 1rem;
}

footer .help-links {
  display: flex;
  flex-direction: column;
  align-items: start;
}

footer .help-links a {
  font-size: 0.9rem;
  color: #858585;
  text-decoration: none;
  text-transform: capitalize;
  margin: 0px 0.6rem;
  transition: color 0.3s ease;
}

footer .help-links a:hover {
  color: #ff00ef;
}

footer .social_icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.6rem 0;
}

footer .social_icon li {
  list-style: none;
  align-items: center;
}

footer .social_icon li a {
  margin: 0 0.6rem;
  display: inline-block;
  background-clip: content-box;
  font-size: 2.7rem;
  color: #858585;
  transition: color 0.3s ease;
}

footer .social_icon li a:hover {
  color: #ff00ee;
}

footer .copyright {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-around;
  margin-top: 1.8rem;
}

footer .copyright p,
footer .copyright .footer_logo {
  width: 80%;
}

footer .copyright .footer_logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .copyright .footer_logo a {
  color: #ffffff;
  position: relative;
}

footer .copyright svg {
  width: 3.3rem;
  fill: #858585;
  transition: fill 0.3s ease;
}

footer .copyright svg:hover {
  fill: #ff00ef;
}

footer .copyright p {
  color: #ffffff;
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0.6rem 0;
}

footer .copyright p:nth-child(3) {
  color: #ffffff;
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0.6rem 0;
}