@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;
}

html {
  scroll-behavior: smooth;
}

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;
  background: var(--cl--1--);
  margin: 0;
}

img {
  max-width: 100%;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--cl--2--);
  text-transform: capitalize;
  margin: 0;
}

h1 {
  font-size: clamp(40px, 10vw, 70px);
}

h2 {
  font-size: clamp(25px, 5vw, 35px);
  font-weight: 300;
}

h3 {
  font-size: 20px;
}

p {
  font-size: 16px;
  color: var(--cl--7--);
  margin: 0;
}

a {
  display: inline-block;
  text-decoration: none;
  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;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.row {
  display: flex;
}

.flex {
  flex-wrap: wrap;
  gap: clamp(2em, 5vw, 5em);
}

.column {
  display: grid;
}
.banner {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../Static-images/handshake.jpg);
}
.main-container {
  height: 80vh;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: initial;
  justify-content: center;
  text-align: center;
}
.main-container h1,
.main-container h2,
.main-container h3,
.main-container h4 {
  color: var(--cl--1--);
}

.main-container h2 {
  font-size: 3em;
  font-weight: 500;
  margin-top: 2em;
}

.hero-buttons {
  display: flex;
}

.banner .btn-job-openings {
  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;
  margin-top: 2em;
  font-size: 18px;
  justify-content: center;
  text-align: center;
  box-shadow: 4px 13px 30px 1px rgba(11, 43, 184, 0.2);
  transition: 0.3s ease-in-out;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  -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;
}

.banner .btn-job-openings:hover {
  background: var(--cl--1--);
  color: var(--cl--7--);
}

.column {
  display: grid;
}
.reputation,
.project {
  padding: 4em 0;
  max-width: 75%;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(60px, 5vw, 35px);
  color: var(--cl--2--);
  font-weight: 500;
  position: relative;
  text-align: center;
  margin: 0 1em;
}

.section-title::after {
  content: "";
  width: 100px;
  height: 4px;
  background-color: var(--cl--7--);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.reputation-cards,
.service-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2em, 5vw, 5em);
  padding-top: 4em;
}

.r-card {
  background: var(--cl--1--);
  padding: 2em;
  border-radius: 5px;
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.r-card svg {
  fill: var(--cl--7--);
}

.r-card h3 {
  padding: 1em 0;
  color: var(--cl--2--);
}

.r-card p {
  color: var(--cl--4--);
}

.job-oppertunites {
  padding: 4em 0;
  max-width: 100%;
  margin: 0 auto;
  background: var(--cl--5--);
}

.job-oppertunites h2 {
  text-align: center;
  color: var(--cl--2--);
}
.job-container {
  max-width: 70%;
  margin: 0 auto;
}

.job-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1em 3em;
  margin-top: 1em;
}

.job-title {
  font-size: 1.5em;
  color: var(--cl--7--);
  font-weight: 700;
}

.job-title:hover {
  color: var(--cl--2--);
}

.job-description {
  font-size: 14px;
  color: var(--cl--4--);
  font-size: 1em;
}

/*Error Catching Message*/
.caught-error-container {
  padding: 6em 0;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
.caught-error-message {
  font-weight: 700;
}
/*End Error Catching Message*/

@media screen and (max-width: 1100px) {
  .reputation,
  .job-container {
    max-width: 100%;
  }
  .job-container .job-description {
    display: none;
  }
  .section-title {
    font-size: clamp(40px, 5vw, 35px);
  }
  .reputation-cards,
.service-card {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2em, 5vw, 5em);
  padding-top: 4em;
}
}

#apply-job {
  padding: 3em 0;
  background: var(--cl--5--);
}
