@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;
}
*,
*::after,
*::before {
  box-sizing: border-box;
  font-family: "Mont", "Poppins", sans-serif; 
  font-weight: 400;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  --cl--1--: #fff;
  --cl--2--: #14171f;
  --cl--8--: #002349;
  --cl--4--: #91a1d4;
  --cl--5--: #f6f8f7;
  --cl--6--: #4cd9fe;
  --cl--7--: #2947a9;
  --cl--3--: #083e85;
  --cl--lb--: #2947a9;
  --cl--db--: #001731;
  --cl--lg--: #999999;
  --cl--gl--: #8e740b;
  background: var(--cl--1--);
}
.main-container {
  padding: 4em 2em 2em 2em;
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 3em;
}

table {
  border-collapse: collapse;
  width: 100%;
}

table th,
table td {
  border: 1px solid var(--cl--2--);
  padding: 8px;
  text-align: left;
}

table th {
  background-color: var(--cl--7--);
  color: var(--cl--1--);
}

.job-title {
  padding: 1em 0;
  color: var(--cl--7--);
}
.job-date {
  padding: 0.5em 0;
}

/* Style the form elements */
.form-group {
  margin-bottom: 15px;
  width: 100%;
  max-width: 400px; /* Adjust the max-width as needed */
}

/* Set a fixed width for input elements */
.form-control {
  width: 100%; /* Make all input elements 100% width of the container */
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  height: 40px;
  background: var(--cl--5--);
  border: 1px solid var(--cl--2--);
  border-radius: 4px;
}
#linkedin {
  color: var(--cl--1--);
}
/* Center-align the form button */
.main-container button[type="submit"] {
  margin-top: 15px;
  display: inline-flex;
  background: var(--cl--7--);
  padding: 0.7em 1.5em;
  border-radius: 50px;
  border: 1px solid var(--cl--7--);
  color: var(--cl--1--);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  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;
  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;
}
.main-container button[type="submit"]:hover {
  color: var(--cl--7--);
  background: var(--cl--1--);
  border: 1px solid var(--cl--7--);
}
/* Popup */
#popup-success {
  position: fixed;
  height: 100%;
  width: 100%;
  background: var(--cl--5--);
}
#popup-success .close-btn {
  font-size: 18px;
  font-weight: 400;
  color: var(--cl--1--);
  padding: 0.5em 1.5em;
  border: none;
  background: var(--cl--7--);
  border-radius: 6px;
  cursor: pointer;
}

.modal-box {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
}

.active .overlay {
  display: block;
}
#popup-success.active .overlay {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 380px;
  width: 100%;
  padding: 30px 20px;
  border-radius: 24px;
  background-color: var(--cl--1--);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%) scale(1.2);
}
#popup-success.active .modal-box {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.modal-box i {
  font-size: 70px;
  color: var(--cl--7--);
}
.modal-box h2 {
  margin-top: 20px;
  font-size: 25px;
  font-weight: 500;
  color: var(--cl--2--);
}
.modal-box h3 {
  font-size: 16px;
  font-weight: 400;
  color: var(--cl--2--);
  text-align: center;
}
.modal-box .popup-buttons {
  margin-top: 25px;
}
.modal-box button {
  font-size: 14px;
  padding: 6px 12px;
  margin: 0 10px;
}
/* Popup */

#news-article {
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}

.news-image-container {
}

.news-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  offset-position: center;
}
