.Banner {
  position: relative;
  background-color: #0E2A4D;
  padding: 180px 0 5rem 0;
  overflow: hidden;
  min-height: 450px;
}
@media screen and (max-width: 480px) {
  .Banner {
    padding-top: 115px;
  }
}
.Banner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.Banner-imgDiv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.Banner-imgDiv:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(14, 42, 77, 0.6);
}
.Banner-imgDiv img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.Banner-breadcrumb {
  margin: 0 0 1.5rem 0;
}
.Banner-breadcrumb p {
  margin: 0;
}
.Banner-breadcrumb span, .Banner-breadcrumb a {
  font-family: "nunito", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}
.Banner-breadcrumb .separator {
  vertical-align: middle;
  display: inline-block;
  margin: 0 0.8rem;
}
.Banner-title {
  font-family: "nunito", sans-serif;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  font-size: 64px;
  line-height: 70px;
  margin-top: 13px;
}
@media screen and (max-width: 768px) {
  .Banner-title {
    font-size: 40px;
    line-height: 52px;
  }
}
.Banner-desc {
  font-family: "poppins", sans-serif;
  font-size: 1.6rem;
  line-height: 2.2rem;
  font-weight: 500;
  text-align: center;
  width: 100%;
  max-width: 65.1rem;
  margin: 1rem 0 0 0;
  color: #ffffff;
}

.EmploiCard {
  border-radius: 8px;
  background-color: #ffffff;
  padding: 40px 38px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 480px) {
  .EmploiCard {
    padding: 20px 12px;
  }
}
.EmploiCard-jobInfos {
  font-family: "poppins", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.EmploiCard-title {
  font-family: "poppins", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #5541C6;
}
.EmploiCard-content {
  margin-top: 18px;
  font-size: 16px;
  line-height: 22px;
  font-family: "poppins", sans-serif;
  color: #0E2A4D;
}
.EmploiCard-content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
}
.EmploiCard-content ul li {
  position: relative;
  padding-left: 14px;
  font-weight: 500;
}
.EmploiCard-content ul li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #0E2A4D;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
}

.EmploiSheet-date {
  display: inline-block;
  font-family: "poppins", sans-serif;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  color: #ffffff;
  padding: 5px 15px;
  background-color: #5541C6;
  box-shadow: 0 0 10px 0 rgba(41, 56, 49, 0.12);
  border-radius: 27px;
  width: auto;
  text-align: center;
  margin-bottom: 16px;
}
.EmploiSheet-wrapper {
  width: 1356px;
  max-width: 100%;
  margin: auto;
  padding: 85px 20px 90px;
}
@media screen and (max-width: 768px) {
  .EmploiSheet-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.EmploiSheet-head {
  display: grid;
  grid-template-columns: 428px 1fr;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .EmploiSheet-head {
    grid-template-columns: 1fr;
  }
}
.EmploiSheet-content {
  margin-top: 90px;
}
.EmploiSheet-content--title {
  font-family: "nunito", sans-serif;
  font-size: 42px;
  line-height: 52px;
  font-weight: 700;
  color: #0E2A4D;
}
.EmploiSheet-content--programme {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.EmploiContent {
  border-radius: 8px;
  background-color: #ffffff;
  padding: 6px 48px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin-top: 16px;
}
@media screen and (max-width: 480px) {
  .EmploiContent {
    padding: 6px 12px;
  }
}
.EmploiContent ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
}
.EmploiContent ul li {
  position: relative;
  padding-left: 14px;
}
.EmploiContent ul li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #0E2A4D;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
}
.EmploiContent-item {
  padding: 42px 0;
}
.EmploiContent-item:not(:first-child) {
  border-top: 1px solid rgba(14, 42, 77, 0.2);
}
.EmploiContent-title {
  font-family: "poppins", sans-serif;
  font-size: 24px;
  line-height: 32px;
  color: #0E2A4D;
  margin-bottom: 32px;
}
.EmploiContent-text {
  font-size: 16px;
  line-height: 22px;
  font-family: "poppins", sans-serif;
  color: #0E2A4D;
  padding-left: 42px;
}