@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: 'Mont';
  src: url('../fonts/Mont-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mont';
  src: url('../fonts/Mont-Book.otf') format('opentype');
  font-weight: 350;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mont';
  src: url('../fonts/Mont-BookItalic.otf') format('opentype');
  font-weight: 350;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Mont';
  src: url('../fonts/Mont-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mont';
  src: url('../fonts/Mont-SemiBold.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mont';
  src: url('../fonts/Mont-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mont';
  src: url('../fonts/Mont-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mont", "Poppins", sans-serif; 
}

body {
  --cl--1--: #fff;
  --cl--head--: #000000;
  --cl--2--: #14171f;
  --cl--8--: #002349;
  --cl--4--: #6b0000;
  --cl--5--: #f6f8f7;
  --cl--6--: #4cd9fe;
  --cl--7A--: #2947a9;
  --cl--7--:  #C3262E;
  --cl--3--: #083e85;
  --cl--lb--: #ff4f4f;
  --cl--db--: #001731;
  --cl--lg--: #999999;
  --cl--gl--: #8e740b;
}

#news-article {
  background: var(--cl--5--);
}

.news-image-container {
  height: 70vh;
}

.news-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  offset-position: center;
}

.news-container {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin: 0 auto;
  padding: 6em 4em 2em 4em;
  background: var(--cl--1--);
  transform: translateY(-50px);
  border-radius: 5px;
}
.news-container i,
.news-container h2 {
  color: var(--cl--lg--);
  margin-right: 0.3em;
  font-size: 20px;
  margin-bottom: 1em;
}

.news-container h1 {
  font-size: 40px;
  margin-bottom: 1.5em;
}
.news-button-container {
  margin: 0 auto;
  text-align: center;
  padding: 4em 0;
}
.news-button-container a {
  display: inline-flex;
  background: var(--cl--7--);
  padding: 0.7em 1.5em;
  border-radius: 50px;
  color: var(--cl--1--);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--cl--7--);
  box-shadow: 4px 13px 30px 1px rgba(11, 43, 184, 0.2);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  cursor: pointer;
}

.news-button-container a:hover {
  color: var(--cl--7--);
  background: transparent;
  border: 1px solid var(--cl--7--);
}
@media screen and (max-width: 768px) {
  .news-container {
    width: 100%;
    transform: translateY(0);
    padding: 3em 1em 2em 1em;
  }

  .news-container h1 {
    font-size: 24px;
    margin-bottom: 1.5em;
  }
}
