:root {
  --color-blue-light: #2867c6;
  --color-blue-dark: #112d51;
  --color-blue-light-text: #5a607a;
  --color-blue-light-bg: #eff5f9;
  --color-white: #fff;
  --color-grey-dark: #1a1b24;
  --color-grey-light: #fafafa;
  --color-grey-dark-text: #434343;
  --color-grey-mid: #666666;
  --border-grey: 1px solid #d7d7d7;
  --border-radius-10: 10px;
  --border-radius-5: 5px;
  --max-width: 1170px;
  --transition-main: 0.2s ease;
  --shadow-main: 0px 4px 6px 1px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
}

/* -------------------------------------------- */
/* --- GLOBAL --------------------------------- */
/* -------------------------------------------- */
.cig-emp-hero {
  height: 240px;
  position: relative;
  background: rgb(250, 253, 255);
  background: linear-gradient(
    124deg,
    rgba(250, 253, 255, 1) 10%,
    rgba(230, 238, 242, 1) 50%
  );
  /* box-sizing: border-box; */
}
.cig-emp-hero-img img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}
.cig-emp-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0% 100%);
  background-color: #fff;
  z-index: 0;
}
.cig-hero-flex-wrapper {
  display: flex;
  align-items: center;
}
.cig-hero-flex-wrapper-firstchild {
  flex: 1;
}
.cig-hero-flex-wrapper-secondchild {
  flex: 1;
}
.cig-hero-flex-content-wrapper {
  box-sizing: border-box;
  margin-inline: auto;
  width: 100%;
  max-width: var(--max-width);
  padding: 0 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

h1.cig-emp-hero-head {
  font-size: 40px;
  line-height: 1.2;
  color: var(--color-blue-dark);
  margin: 0;
}

.cig-emp-hero-img {
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

@media (max-width: 768px) {
  .cig-hero-flex-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  h1.cig-emp-hero-head {
    font-size: 28px;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    padding: 1rem 1rem;
    text-align: center;
  }
  .cig-emp-hero-img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  .cig-emp-hero-img::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 25, 64, 0.8);
    z-index: 1;
  }
}

/* ---------------------------- */
/* ++ SIDEBAR PARENT WRAPPER ++ */
/* ---------------------------- */
.cig-sidebar-layout-parent-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.cig-sidebar-firstchild {
  width: 810px;
}
/* SIDEBAR STYLES */
.cig-sidebar-secondchild {
  margin: 3rem 0;
  height: auto;
  width: 320px;
}
@media (max-width: 768px) {
  .cig-sidebar-layout-parent-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .cig-sidebar-firstchild {
    width: 100%;
  }
  .cig-sidebar-secondchild {
    width: 100%;
    margin: 0;
  }
}

/* --------------- */
/* ++ JOB CARDS ++ */
/* --------------- */
#cig__job_cards {
  margin: 3rem 0 1rem;
}
ul.cig--job-card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin: 0;
  padding: 0;
}
li.cig--job-card-wrapper {
  list-style: none;
  background: var(--color-white);
  box-shadow: var(--shadow-main);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cig--job-card-head {
  border-radius: 11px 11px 0 0;
  min-height: 50px;
  padding: 1rem;
  position: relative;
  background: linear-gradient(134deg, #022c60 15.63%, #5f96ce 100%);
  z-index: 1;
}
.cig--job-card-head::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px 10px 0 0;
  padding: 5px;
  background: linear-gradient(330deg, #f5f5f5, #a47e62);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 2;
}
.cig--job-card-head h3 {
  margin: 0;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: pre-wrap;
}
.cig--card-info-list {
  padding: 1rem;
  background: var(--color-blue-light-bg);
}
.cig--card-info-list ul.cig--card-info {
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  position: relative;
  z-index: 3;
}
.cig--card-info-list ul.cig--card-info li {
  list-style: none;
  font-size: 16px;
  padding: 3px 0 3px 26px;
  position: relative;
}
.cig--card-info-list ul.cig--card-info li:nth-child(1)::before {
  content: "";
  height: 20px;
  width: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.0473 9.58464C9.49229 9.58464 8.95998 9.36514 8.5675 8.97444C8.17503 8.58374 7.95454 8.05384 7.95454 7.5013C7.95454 6.94877 8.17503 6.41886 8.5675 6.02816C8.95998 5.63746 9.49229 5.41797 10.0473 5.41797C10.6024 5.41797 11.1347 5.63746 11.5272 6.02816C11.9196 6.41886 12.1401 6.94877 12.1401 7.5013C12.1401 7.77489 12.086 8.0458 11.9808 8.29856C11.8757 8.55132 11.7215 8.78099 11.5272 8.97444C11.3328 9.1679 11.1021 9.32135 10.8482 9.42605C10.5943 9.53075 10.3222 9.58464 10.0473 9.58464ZM10.0473 1.66797C8.49321 1.66797 7.00274 2.28255 5.90381 3.37651C4.80487 4.47047 4.1875 5.95421 4.1875 7.5013C4.1875 11.8763 10.0473 18.3346 10.0473 18.3346C10.0473 18.3346 15.9072 11.8763 15.9072 7.5013C15.9072 5.95421 15.2898 4.47047 14.1909 3.37651C13.0919 2.28255 11.6015 1.66797 10.0473 1.66797Z' fill='%235A607A'/%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  left: 0;
}
.cig--card-info-list ul.cig--card-info li:nth-child(2)::before {
  content: "";
  height: 20px;
  width: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.3488 4.4585C2 4.85955 2 5.54845 2 6.92462V14.5203C2 15.4954 2 15.983 2.252 16.3501C2.5032 16.7172 2.9432 16.8716 3.8232 17.1796L4.8584 17.5427C5.4192 17.7392 5.8504 17.8904 6.2128 17.9874C6.4496 18.0513 6.6664 17.8637 6.6664 17.6163V5.36652C6.66363 5.26832 6.62877 5.17382 6.56727 5.09775C6.50576 5.02169 6.42106 4.96835 6.3264 4.94607C6.0152 4.86602 5.6408 4.73503 5.128 4.55553C3.8856 4.11971 3.264 3.90221 2.792 4.12295C2.6227 4.20229 2.47173 4.31659 2.3488 4.4585ZM10.496 3.11143L9.2672 3.97255C8.8232 4.28385 8.4968 4.51268 8.2192 4.6752C8.15379 4.71213 8.09912 4.76577 8.06065 4.83076C8.02218 4.89575 8.00127 4.9698 8 5.04552V17.212C8 17.5112 8.3072 17.6987 8.5568 17.537C8.8248 17.364 9.132 17.1489 9.504 16.8886L10.7328 16.0274C11.1768 15.7161 11.5032 15.4873 11.7808 15.3248C11.8462 15.2879 11.9009 15.2342 11.9394 15.1692C11.9778 15.1043 11.9987 15.0302 12 14.9545V2.7872C12 2.48722 11.6928 2.30044 11.4432 2.46135C11.1752 2.63519 10.868 2.85027 10.496 3.11143ZM16.176 2.81954L15.1416 2.4573C14.5808 2.26082 14.1496 2.10962 13.7872 2.01259C13.5504 1.94872 13.3336 2.1363 13.3336 2.38372V14.6335C13.3364 14.7317 13.3712 14.8262 13.4327 14.9022C13.4942 14.9783 13.5789 15.0316 13.6736 15.0539C13.9848 15.134 14.3592 15.2642 14.872 15.4445C16.1144 15.8803 16.736 16.0978 17.208 15.8771C17.3773 15.7977 17.5283 15.6834 17.6512 15.5415C18 15.1404 18 14.4516 18 13.0754V5.47972C18 4.50459 18 4.01622 17.748 3.64994C17.4968 3.28285 17.0568 3.12841 16.1768 2.82035L16.176 2.81954Z' fill='%235A607A'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  left: 0;
}
.cig--card-info-list ul.cig--card-info li:nth-child(3)::before {
  content: "";
  height: 20px;
  width: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5.2C3 4.32 3.70049 3.6 4.55664 3.6H15.4531C15.8659 3.6 16.2619 3.76857 16.5538 4.06863C16.8457 4.36869 17.0097 4.77565 17.0097 5.2V16.4C17.0097 16.8243 16.8457 17.2313 16.5538 17.5314C16.2619 17.8314 15.8659 18 15.4531 18H4.55664C4.14379 18 3.74785 17.8314 3.45593 17.5314C3.164 17.2313 3 16.8243 3 16.4V5.2ZM4.55664 6.8V16.4H15.4531V6.8H4.55664ZM6.11327 2H7.66991V3.6H6.11327V2ZM12.3398 2H13.8965V3.6H12.3398V2ZM6.11327 9.2H7.66991V10.8H6.11327V9.2ZM6.11327 12.4H7.66991V14H6.11327V12.4ZM9.22655 9.2H10.7832V10.8H9.22655V9.2ZM9.22655 12.4H10.7832V14H9.22655V12.4ZM12.3398 9.2H13.8965V10.8H12.3398V9.2ZM12.3398 12.4H13.8965V14H12.3398V12.4Z' fill='%235A607A'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  left: 0;
}

.cig--job-card-cta {
  padding: 1rem;
}
a.cig--card-cta {
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  background: var(--color-blue-dark);
  color: var(--color-white);
}
a.cig--card-cta {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  text-decoration: none;
  background: var(--color-blue-dark);
  color: var(--color-white);
  transition: 0.2s ease;
}
a.cig--card-cta:hover {
  background: #000;
}

@media (max-width: 768px) {
  form.cig--emp-job-filter,
  form.cig--emp-job-filter ul {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    /* width: 100%; */
  }
  form.cig--emp-job-filter ul {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .center-submenu {
    left: 50% !important;
    transform: translateX(-50%);
    top: 110%;
  }
  input.menu__search {
    width: 100%;
    box-sizing: border-box;
  }
  input.menu__submit {
    width: 100%;
  }
  ul.cig--job-card-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(auto-fill, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}

/* ------------- */
/* ++ SIDEBAR ++ */
/* ------------- */
.cig-sidebar-parent-wrapper {
  position: sticky;
  top: 10px;
  box-sizing: border-box;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  background: #f0f5f8;
  border-radius: 15px;
}
.cig-sidebar-emp-logo-wrapper {
  padding: 6px;
  display: inline-block;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #e5ebf4;
  width: fit-content;
}
img.cig-sidebar-emp-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.cig-sidebar-emp-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 280px;
  overflow-wrap: break-word;
}
.cig-sidebar-emp-details h2 {
  margin: 0;
  color: var(--color-blue-dark);
}
ul.cig-icon-list-wrapper {
  margin: 0;
  padding: 0;
}
li.cig-icon-list-item {
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  padding: 4px 0 4px 26px;
  position: relative;
}
.cig-emp-hero-cig-icon-list-wrapper li.cig-icon-list-item {

  font-size: 20px;

}
li.cig-icon-list-item:nth-child(1)::before {
  content: "";
  height: 20px;
  width: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='20' viewBox='0 0 19 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.33756 9.58464C8.82163 9.58464 8.32682 9.36514 7.962 8.97444C7.59718 8.58374 7.39223 8.05384 7.39223 7.5013C7.39223 6.94877 7.59718 6.41886 7.962 6.02816C8.32682 5.63746 8.82163 5.41797 9.33756 5.41797C9.8535 5.41797 10.3483 5.63746 10.7131 6.02816C11.0779 6.41886 11.2829 6.94877 11.2829 7.5013C11.2829 7.77489 11.2326 8.0458 11.1348 8.29856C11.0371 8.55132 10.8938 8.78099 10.7131 8.97444C10.5325 9.1679 10.318 9.32135 10.082 9.42605C9.84599 9.53075 9.59303 9.58464 9.33756 9.58464ZM9.33756 1.66797C7.89294 1.66797 6.50749 2.28255 5.486 3.37651C4.4645 4.47047 3.89063 5.95421 3.89062 7.5013C3.89063 11.8763 9.33756 18.3346 9.33756 18.3346C9.33756 18.3346 14.7845 11.8763 14.7845 7.5013C14.7845 5.95421 14.2106 4.47047 13.1891 3.37651C12.1676 2.28255 10.7822 1.66797 9.33756 1.66797Z' fill='%23112D51'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
}
.cig-emp-hero-cig-icon-list-wrapper li.cig-icon-list-item:nth-child(1)::before {
  height: 24px;
  width: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='20' viewBox='0 0 19 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.33756 9.58464C8.82163 9.58464 8.32682 9.36514 7.962 8.97444C7.59718 8.58374 7.39223 8.05384 7.39223 7.5013C7.39223 6.94877 7.59718 6.41886 7.962 6.02816C8.32682 5.63746 8.82163 5.41797 9.33756 5.41797C9.8535 5.41797 10.3483 5.63746 10.7131 6.02816C11.0779 6.41886 11.2829 6.94877 11.2829 7.5013C11.2829 7.77489 11.2326 8.0458 11.1348 8.29856C11.0371 8.55132 10.8938 8.78099 10.7131 8.97444C10.5325 9.1679 10.318 9.32135 10.082 9.42605C9.84599 9.53075 9.59303 9.58464 9.33756 9.58464ZM9.33756 1.66797C7.89294 1.66797 6.50749 2.28255 5.486 3.37651C4.4645 4.47047 3.89063 5.95421 3.89062 7.5013C3.89063 11.8763 9.33756 18.3346 9.33756 18.3346C9.33756 18.3346 14.7845 11.8763 14.7845 7.5013C14.7845 5.95421 14.2106 4.47047 13.1891 3.37651C12.1676 2.28255 10.7822 1.66797 9.33756 1.66797Z' fill='%23112D51'/%3E%3C/svg%3E%0A");
}
@media (max-width: 768px) {
  .cig-emp-hero-cig-icon-list-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;

  }
  .cig-emp-hero-cig-icon-list-wrapper li.cig-icon-list-item {
    color: #ffffff;
    font-size: 20px;
    padding: 1rem 1rem;
    text-align: center;
  }
}
li.cig-icon-list-item:nth-child(2)::before {
  content: "";
  height: 20px;
  width: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='20' viewBox='0 0 19 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.01953 10.1963C1.01953 8.03289 1.87889 5.95805 3.40855 4.42827C4.93822 2.89849 7.01289 2.03906 9.17616 2.03906C11.3394 2.03906 13.4141 2.89849 14.9438 4.42827C16.4734 5.95805 17.3328 8.03289 17.3328 10.1963C17.3328 12.3598 16.4734 14.4346 14.9438 15.9644C13.4141 17.4942 11.3394 18.3536 9.17616 18.3536C7.01289 18.3536 4.93822 17.4942 3.40855 15.9644C1.87889 14.4346 1.01953 12.3598 1.01953 10.1963ZM8.66637 3.13723C7.98326 3.34524 7.30524 3.97335 6.74243 5.0287C6.557 5.37956 6.39752 5.74353 6.26527 6.11769H8.66637V3.13723ZM5.18961 6.11769C5.35955 5.57607 5.57794 5.05086 5.84214 4.54844C6.01843 4.21507 6.22202 3.89687 6.45083 3.5971C5.18757 4.12103 4.10071 4.99569 3.31868 6.11769H5.18961ZM4.59621 9.6865C4.6268 8.79226 4.73692 7.93473 4.91432 7.13735H2.72631C2.34612 7.93784 2.11926 8.80247 2.05746 9.6865H4.59621ZM5.96143 7.13735C5.7609 7.97327 5.64543 8.82733 5.61681 9.6865H8.66637V7.13735H5.96143ZM9.68595 7.13735V9.6865H12.7345C12.7062 8.82737 12.5911 7.9733 12.3909 7.13735H9.68595ZM5.61783 10.7062C5.64612 11.5653 5.76124 12.4193 5.96143 13.2553H8.66637V10.7062H5.61783ZM9.68595 10.7062V13.2553H12.3909C12.5816 12.4753 12.7029 11.6157 12.7355 10.7062H9.68595ZM6.26527 14.275C6.40597 14.6685 6.56604 15.0336 6.74243 15.364C7.30524 16.4193 7.98428 17.0464 8.66637 17.2554V14.275H6.26527ZM6.45083 16.7956C6.22201 16.4958 6.01842 16.1776 5.84214 15.8442C5.57794 15.3418 5.35955 14.8166 5.18961 14.275H3.31868C4.10066 15.397 5.18754 16.2717 6.45083 16.7956ZM4.91432 13.2553C4.72995 12.4172 4.62346 11.5639 4.59621 10.7062H2.05746C2.12068 11.6137 2.35416 12.4732 2.72631 13.2553H4.91432ZM11.9015 16.7956C13.1648 16.2717 14.2517 15.397 15.0336 14.275H13.1627C12.9928 14.8166 12.7744 15.3418 12.5102 15.8442C12.3339 16.1776 12.1303 16.4958 11.9015 16.7956ZM9.68595 14.275V17.2554C10.3691 17.0474 11.0471 16.4193 11.6099 15.364C11.7863 15.0336 11.9464 14.6685 12.0871 14.275H9.68595ZM13.438 13.2553H15.626C15.9982 12.4732 16.2317 11.6137 16.2949 10.7062H13.7561C13.7289 11.5639 13.6224 12.4172 13.438 13.2553ZM16.2949 9.6865C16.233 8.80247 16.0062 7.93784 15.626 7.13735H13.438C13.6154 7.93473 13.7255 8.79226 13.7561 9.6865H16.2949ZM12.5102 4.54844C12.762 5.02156 12.9812 5.54771 13.1627 6.11769H15.0336C14.2517 4.99565 13.1648 4.12098 11.9015 3.5971C12.1238 3.88668 12.3277 4.20686 12.5102 4.54844ZM12.0871 6.11769C11.9548 5.74353 11.7953 5.37955 11.6099 5.0287C11.0471 3.97335 10.3691 3.34626 9.68595 3.13723V6.11769H12.0871Z' fill='%23112D51'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
}
li.cig-icon-list-item a {
  text-decoration: none;
  color: var(--color-blue-light);
  transition: 0.2s ease;
}
li.cig-icon-list-item a:hover {
  text-decoration: none;
  color: var(--color-grey-dark);
}
p.cig-sidebar-emp-summary, div.cig-sidebar-emp-summary  {
  margin: 0;
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
button.cig-sidebar-emp-summary-anchor {
  border: none;
  padding: 12px 20px;
  color: #fff;
  font-size: 16px;
  background: var(--color-blue-light);
  transition: 0.2s ease;
  border-radius: 50px;
  cursor: pointer;
}
.cig-sidebar-emp-summary-anchor:hover {
  background: var(--color-blue-dark);
}
/* SPOTLIGHT */
.cig-sidebar-emp-spotlight {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 24px 14px;
  position: relative;
  color: #fff;
}
.cig-sidebar-emp-spotlight-img-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /* z-index: -1; */
}
.cig-sidebar-emp-spotlight-img-wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(
    163deg,
    rgba(7, 22, 51, 1) 0%,
    rgba(40, 103, 198, 0.75) 100%
    );
    border-radius: 10px;
  }
img.cig-sidebar-emp-spotlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.cig-sidebar-emp-spotlight-text-wrapper{
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}
.cig-sidebar-emp-spotlight span {
  font-weight: bold;
  font-size: 16px;
}
.cig-sidebar-emp-spotlight h3 {
  margin: 0;
  font-weight: bold;
  font-size: 22px;
}
.cig-sidebar-emp-spotlight p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.cig-sidebar-emp-spotlight a {
  margin-top: 10px;
  padding: 5px 20px;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-blue-light);
  background: #fff;
  transition: .2s ease;
  text-decoration: none;
  border-radius: 50px;
  width: fit-content;
}
.cig-sidebar-emp-spotlight a:hover {
  background: var(--color-grey-dark);
  color: #fff;
}


@media (max-width: 768px) {
  .cig-sidebar-parent-wrapper {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }
}
