: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);
  --box-shadow-soft: 0px -26px 20px 0px rgba(0, 0, 0, 0.06);
}
body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
}

/* -------------------------------------------- */
/* -------------------------------------------- */
/* --- GLOBAL --------------------------------- */
/* -------------------------------------------- */
/* -------------------------------------------- */
.cig--container-max-width {
  margin-inline: auto;
  position: relative;
  max-width: var(--max-width);
}
.cig--page-header-section {
  background: var(--color-blue-light-bg);
  padding: 1rem 2rem 2rem 2rem;
  text-align: center;
}
.cig--page-header-section h2 {
  font-size: 32px;
  color: var(--color-blue-dark);
  margin: 0;
}
h2.cig--heading-plain {
  margin-top: 2rem;
}
h2.cig--heading {
  font-size: 32px;
  color: var(--color-blue-dark);
  text-align: center;
  position: relative;
  margin: 2.5rem 0;
}
h2.cig--heading::after {
  content: "";
  display: block;
  width: 100px;
  margin: 0.5rem auto;
  height: 3px;
  background: var(--color-blue-light);
}
span.cig--heading-span {
  font-size: 16px;
  color: var(--color-blue-dark);
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
  display: block;
}
span.cig--heading-span::after {
  content: "";
  display: block;
  width: 100px;
  margin: 0.5rem auto;
  height: 3px;
  background: var(--color-blue-light);
}
h2.cig--heading-light {
  font-size: 32px;
  color: var(--color-white);
  text-align: center;
  position: relative;
  margin: 2rem 0;
}
h2.cig--heading-light::after {
  content: "";
  display: block;
  width: 100px;
  margin: 0.5rem auto;
  height: 3px;
  background: var(--color-blue-light);
}
.cig--card-border {
  position: relative;
  z-index: 1;
}
.cig--card-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  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--card-border-half {
  position: relative;
  z-index: 1;
  border-radius: 5px;
  box-shadow: var(--shadow-main);
}
.cig--card-border-half::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 5px;
  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--card-border-round {
  position: relative;
  z-index: 1;
}
.cig--card-border-round::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  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--card-border-thin {
  position: relative;
  z-index: 1;
}
.cig--card-border-thin::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1.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;
}

/* global btns */
.cig--center-cta-wrapper {
  text-align: center;
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}
.cig--left-cta-wrapper {
  text-align: left;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 0 10px;
  height: 100px;
  display: flex;
  align-items: center;
}
.cig--view-all-btn {
  text-decoration: none;
  padding: 12px 20px;
  min-width: 200px;
  color: var(--color-white);
  background: var(--color-blue-dark);
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 50px;
  letter-spacing: 0.8px;
  transition: 0.2s ease;
  display: inline-block;
  text-align: center;
  margin: 1rem auto;
}
.cig--view-all-btn-minwidth {
  min-width: 230px;
  text-align: center;
}
.cig--view-all-btn:hover {
  background: var(--color-grey-dark);
}
.cig--color-light {
  color: var(--color-blue-light);
}
@media (max-width: 768px) {
  h2.cig--heading,
  h2.cig--heading-light,
  .cig--page-header-section h2 {
    font-size: 24px;
  }
  h2.cig--heading::after,
  h2.cig--heading-light::after {
    top: 45px;
  }
  .cig--left-cta-wrapper {
    justify-content: center;
  }
}

/* ----------- */
/* SITE FOOTER */
/* ----------- */
footer.cig--site-footer {
  position: relative;
  box-sizing: border-box;
}
.cig--footer-content-wrapper {
  /* background: #050222; */
  background: #06022b;
  padding: 80px 0 40px;
}
.cig--footer-flex-between-wrapper,
.cig--footer-flex-between-reverse-wrapper,
.cig--footer-flex-stretch-wrapper {
  display: flex;
  justify-content: space-between;
}
.cig--footer-flex-stretch-wrapper {
  flex-direction: column;
}
.cig--footer-logo-wrapper {
  display: flex;
  flex-direction: column;
  text-align: start;
  gap: 10px;
}
a.cig--footer-logo {
  display: block;
  width: 250px;
  height: 58px;
  background: url("data:image/svg+xml,%3Csvg width='125' height='29' viewBox='0 0 125 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.5205 0.352323C14.6746 -0.119231 15.344 -0.116814 15.4948 0.35584L18.2767 9.08071C18.3817 9.41 18.1354 9.7461 17.7891 9.74619L12.155 9.74768C11.807 9.74777 11.5604 9.40879 11.6683 9.07869L14.5205 0.352323Z' fill='%23F2F2F2'/%3E%3Cpath d='M24.4386 28.3318C24.5892 28.8032 24.0472 29.1914 23.6478 28.8983L16.2836 23.4937C16.0046 23.2889 16.0057 22.8726 16.2858 22.6694L20.8623 19.3472C21.1445 19.1423 21.545 19.2732 21.651 19.605L24.4386 28.3318Z' fill='%23F2F2F2'/%3E%3Cpath d='M5.35947 28.3284C5.2051 28.7999 5.747 29.192 6.14816 28.8991L13.553 23.4927C13.8325 23.2887 13.8324 22.8723 13.5529 22.6684L9.00488 19.3499C8.72397 19.145 8.32439 19.2735 8.21632 19.6035L5.35947 28.3284Z' fill='%23F2F2F2'/%3E%3Cpath d='M0.205936 11.5786C-0.187756 11.2843 0.0207292 10.6594 0.512634 10.6592L9.43067 10.6569C9.7794 10.6568 10.0261 10.9971 9.91681 11.3275L8.14871 16.6743C8.03909 17.0058 7.63587 17.1322 7.35587 16.923L0.205936 11.5786Z' fill='%23F2F2F2'/%3E%3Cpath d='M10.6317 12.2065C10.5224 12.5369 10.7691 12.8772 11.1178 12.8771L27.8238 12.8727C27.9318 12.8727 28.037 12.8386 28.1244 12.7752L29.7799 11.5754C30.1811 11.2846 29.9748 10.6514 29.479 10.6516L11.5142 10.6563C11.2934 10.6564 11.0975 10.7977 11.0283 11.007L10.6317 12.2065Z' fill='%23B31942'/%3E%3Cpath d='M9.59676 15.336C9.48749 15.6665 9.73418 16.0068 10.0829 16.0067L23.5046 16.0031C23.6126 16.0031 23.7178 15.969 23.8052 15.9057L25.3215 14.8067C25.7227 14.5159 25.5164 13.8828 25.0206 13.8829L10.4459 13.8867C10.2251 13.8868 10.0293 14.0282 9.96007 14.2374L9.59676 15.336Z' fill='%23B31942'/%3E%3Cpath d='M19.4862 19.0359C19.3988 19.0993 19.2936 19.1334 19.1855 19.1334L9.98452 19.1359C9.88673 19.1359 9.79098 19.108 9.70861 19.0554L8.93541 18.5619C8.73845 18.4361 8.65192 18.1932 8.72518 17.9717L8.92516 17.3669C8.99435 17.1577 9.19022 17.0164 9.41103 17.0163L20.7013 17.0133C21.1972 17.0132 21.4035 17.6463 21.0023 17.9371L19.4862 19.0359Z' fill='%23B31942'/%3E%3Cpath d='M14.5993 22.177C14.7767 22.2902 15.0054 22.2834 15.1758 22.1599L16.6832 21.0674C17.0845 20.7766 16.8782 20.1434 16.3823 20.1436L13.1645 20.1444C12.6532 20.1446 12.4582 20.8103 12.8889 21.0853L14.5993 22.177Z' fill='%23B31942'/%3E%3Cpath d='M49.4949 12.893L50.7151 13.7597C49.7431 15.266 47.7165 16.4422 45.2969 16.4422C40.9334 16.4422 37.666 13.2026 37.666 8.76612C37.666 4.32968 40.9334 1.09004 45.2969 1.09004C47.1167 1.09004 49.0813 1.77099 50.3635 3.40112L49.0607 4.37095C48.4816 3.42176 46.8479 2.45193 45.2969 2.45193C41.5332 2.45193 39.279 5.40268 39.279 8.76612C39.279 12.1296 41.5332 15.0803 45.2969 15.0803C46.8272 15.0803 48.3989 14.5851 49.4949 12.893Z' fill='%23F2F2F2'/%3E%3Cpath d='M54.5843 12.2327L52.9713 16.0708H51.2342L57.6036 1.46147H59.0512L65.4206 16.0708H63.6835L62.0704 12.2327H54.5843ZM58.3274 3.19478L55.1427 10.8709H61.4914L58.3274 3.19478Z' fill='%23F2F2F2'/%3E%3Cpath d='M68.8855 9.28199V16.0708H67.3965V1.46147H71.9047C74.8826 1.46147 76.7231 2.74081 76.7231 5.36141C76.7231 7.3836 75.3789 8.9312 72.9801 9.13754L77.1988 16.0708H75.379L71.367 9.28199H68.8855ZM68.8855 2.82335V7.9201H71.5325C74.2002 7.9201 75.1101 6.76456 75.1101 5.36141C75.1101 3.95826 74.2002 2.82335 71.5325 2.82335H68.8855Z' fill='%23F2F2F2'/%3E%3Cpath d='M81.144 9.15818V14.7089H88.9817V16.0708H79.655V1.46147H88.7335V2.82335H81.144V7.7963H88.2372V9.15818H81.144Z' fill='%23F2F2F2'/%3E%3Cpath d='M93.4025 9.15818V14.7089H101.24V16.0708H91.9135V1.46147H100.992V2.82335H93.4025V7.7963H100.496V9.15818H93.4025Z' fill='%23F2F2F2'/%3E%3Cpath d='M105.661 9.28199V16.0708H104.172V1.46147H108.68C111.658 1.46147 113.499 2.74081 113.499 5.36141C113.499 7.3836 112.155 8.9312 109.756 9.13754L113.974 16.0708H112.154L108.143 9.28199H105.661ZM105.661 2.82335V7.9201H108.308C110.976 7.9201 111.886 6.76456 111.886 5.36141C111.886 3.95826 110.976 2.82335 108.308 2.82335H105.661Z' fill='%23F2F2F2'/%3E%3Cpath d='M124.661 2.86462L123.358 3.87572C122.717 2.92653 121.766 2.45193 120.525 2.45193C118.995 2.45193 117.403 3.25668 117.403 5.09316C117.403 9.03437 124.909 6.95028 124.909 12.2121C124.909 14.874 122.407 16.4422 120.091 16.4422C118.312 16.4422 116.596 15.8025 115.479 14.2756L116.823 13.3057C117.444 14.3787 118.623 15.0803 120.153 15.0803C121.621 15.0803 123.296 14.1311 123.296 12.4185C123.296 8.29153 115.789 10.582 115.789 5.2376C115.789 2.41066 118.147 1.09004 120.525 1.09004C122.18 1.09004 123.503 1.54401 124.661 2.86462Z' fill='%23F2F2F2'/%3E%3Cpath d='M38.455 20.1529V27.6449H37.6914V20.1529H38.455Z' fill='%23B31942'/%3E%3Cpath d='M41.4421 20.1529L45.9175 26.5021H45.9387V20.1529H46.7023V27.6449H45.7478L41.2724 21.2323H41.2512V27.6449H40.4877V20.1529H41.4421Z' fill='%23B31942'/%3E%3Cpath d='M57.8126 20.9677L57.2399 21.5286C56.7309 20.9889 56.0203 20.6609 55.0977 20.6609C53.1676 20.6609 52.0116 22.1741 52.0116 23.8989C52.0116 25.6238 53.1676 27.137 55.0977 27.137C55.8719 27.137 56.6142 26.9253 57.1763 26.6079V24.1H55.384V23.4016H57.9398V27.0735C57.102 27.5708 56.0097 27.8354 55.0977 27.8354C52.86 27.8354 51.1844 26.174 51.1844 23.8989C51.1844 21.6238 52.86 19.9625 55.0977 19.9625C56.2854 19.9625 57.1445 20.3011 57.8126 20.9677Z' fill='%230A71B9'/%3E%3Cpath d='M67.2651 23.8989C67.2651 26.174 65.5895 27.8354 63.3518 27.8354C61.1142 27.8354 59.4386 26.174 59.4386 23.8989C59.4386 21.6238 61.1142 19.9625 63.3518 19.9625C65.5895 19.9625 67.2651 21.6238 67.2651 23.8989ZM66.4379 23.8989C66.4379 22.1741 65.282 20.6609 63.3518 20.6609C61.4217 20.6609 60.2658 22.1741 60.2658 23.8989C60.2658 25.6238 61.4217 27.137 63.3518 27.137C65.282 27.137 66.4379 25.6238 66.4379 23.8989Z' fill='%230A71B9'/%3E%3Cpath d='M68.5906 20.1529L70.9767 26.5021H70.9979L73.4583 20.1529H74.2855L71.3585 27.6449H70.595L67.7422 20.1529H68.5906Z' fill='%230A71B9'/%3E%3Cpath d='M76.0388 24.1V26.9465H80.0582V27.6449H75.2753V20.1529H79.9309V20.8513H76.0388V23.4016H79.6764V24.1H76.0388Z' fill='%230A71B9'/%3E%3Cpath d='M82.3253 24.1635V27.6449H81.5617V20.1529H83.8736C85.4007 20.1529 86.3446 20.809 86.3446 22.1529C86.3446 23.1899 85.6553 23.9836 84.4251 24.0894L86.5885 27.6449H85.6553L83.5979 24.1635H82.3253ZM82.3253 20.8513V23.4651H83.6827C85.0508 23.4651 85.5174 22.8725 85.5174 22.1529C85.5174 21.4333 85.0508 20.8513 83.6827 20.8513H82.3253Z' fill='%230A71B9'/%3E%3Cpath d='M88.8026 20.1529L93.2779 26.5021H93.2991V20.1529H94.0627V27.6449H93.1082L88.6329 21.2323H88.6117V27.6449H87.8481V20.1529H88.8026Z' fill='%230A71B9'/%3E%3Cpath d='M97.2688 20.1529L99.8035 26.2481L102.338 20.1529H103.505V27.6449H102.741V21.1688H102.72L100.005 27.6449H99.602L96.8871 21.1688H96.8658V27.6449H96.1023V20.1529H97.2688Z' fill='%230A71B9'/%3E%3Cpath d='M106.301 24.1V26.9465H110.32V27.6449H105.537V20.1529H110.193V20.8513H106.301V23.4016H109.938V24.1H106.301Z' fill='%230A71B9'/%3E%3Cpath d='M112.778 20.1529L117.253 26.5021H117.275V20.1529H118.038V27.6449H117.084L112.608 21.2323H112.587V27.6449H111.824V20.1529H112.778Z' fill='%230A71B9'/%3E%3Cpath d='M122.485 20.8513V27.6449H121.721V20.8513H119.208V20.1529H124.998V20.8513H122.485Z' fill='%230A71B9'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
  transition: var(--transition-main);
}
a.cig--footer-logo:hover {
  transform: scale(1.02);
}

span.cig--footer-text {
  color: #e2e2e2;
  font-size: 16px;
  font-weight: 400;
  display: block;
}

ul.cig--footer-social-list-wrapper,
ul.cig--footer-legal-list-wrapper {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  list-style: none;
}
ul.cig--footer-social-list-wrapper {
  gap: 24px;
}

ul.cig--footer-legal-list-wrapper {
  gap: 10px;
  align-items: center;
}
.cig--footer-legal-list-divider {
  padding: 0 10px;
  border-left: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
}
.cig--footer-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-main);
}

.cig--footer-icon-linkedin {
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.429 8.969H13.143V10.819C13.678 9.755 15.05 8.799 17.111 8.799C21.062 8.799 22 10.917 22 14.803V22H18V15.688C18 13.475 17.465 12.227 16.103 12.227C14.214 12.227 13.429 13.572 13.429 15.687V22H9.429V8.969ZM2.57 21.83H6.57V8.799H2.57V21.83ZM7.143 4.55C7.14315 4.88528 7.07666 5.21724 6.94739 5.52659C6.81812 5.83594 6.62865 6.11651 6.39 6.352C6.15064 6.59012 5.86671 6.77874 5.55442 6.90708C5.24214 7.03543 4.90763 7.10098 4.57 7.1C3.8896 7.09847 3.23691 6.83029 2.752 6.353C2.5143 6.11665 2.32553 5.83575 2.1965 5.52637C2.06746 5.21699 2.00069 4.88521 2 4.55C2 3.873 2.27 3.225 2.753 2.747C3.2367 2.26788 3.89018 1.99938 4.571 2C5.253 2 5.907 2.269 6.39 2.747C6.873 3.225 7.143 3.873 7.143 4.55Z' fill='white'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--footer-icon-x {
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_4093_33606)'%3E%3Cmask id='mask0_4093_33606' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Cpath d='M0 0H24V24H0V0Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_4093_33606)'%3E%3Cpath d='M18.9 1.125H22.5806L14.5406 10.3376L24 22.8759H16.5943L10.7897 15.273L4.15543 22.8759H0.471429L9.07029 13.0187L0 1.12671H7.59429L12.8331 8.07471L18.9 1.125ZM17.6057 20.6679H19.6457L6.48 3.21814H4.29257L17.6057 20.6679Z' fill='white'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4093_33606'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--footer-icon-meta {
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 13.5H16.5L17.5 9.5H14V7.5C14 6.47 14 5.5 16 5.5H17.5V2.14C17.174 2.097 15.943 2 14.643 2C11.928 2 10 3.657 10 6.7V9.5H7V13.5H10V22H14V13.5Z' fill='white'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--footer-icon-instagram {
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.0286 2C14.1536 2.003 14.7246 2.009 15.2176 2.023L15.4116 2.03C15.6356 2.038 15.8566 2.048 16.1236 2.06C17.1876 2.11 17.9136 2.278 18.5506 2.525C19.2106 2.779 19.7666 3.123 20.3226 3.678C20.8313 4.17773 21.2248 4.78247 21.4756 5.45C21.7226 6.087 21.8906 6.813 21.9406 7.878C21.9526 8.144 21.9626 8.365 21.9706 8.59L21.9766 8.784C21.9916 9.276 21.9976 9.847 21.9996 10.972L22.0006 11.718V13.028C22.003 13.7574 21.9953 14.4868 21.9776 15.216L21.9716 15.41C21.9636 15.635 21.9536 15.856 21.9416 16.122C21.8916 17.187 21.7216 17.912 21.4756 18.55C21.2248 19.2175 20.8313 19.8223 20.3226 20.322C19.8228 20.8307 19.2181 21.2242 18.5506 21.475C17.9136 21.722 17.1876 21.89 16.1236 21.94L15.4116 21.97L15.2176 21.976C14.7246 21.99 14.1536 21.997 13.0286 21.999L12.2826 22H10.9736C10.2438 22.0026 9.51409 21.9949 8.78457 21.977L8.59057 21.971C8.35318 21.962 8.11584 21.9517 7.87857 21.94C6.81457 21.89 6.08857 21.722 5.45057 21.475C4.7834 21.2241 4.17901 20.8306 3.67957 20.322C3.17051 19.8224 2.77668 19.2176 2.52557 18.55C2.27857 17.913 2.11057 17.187 2.06057 16.122L2.03057 15.41L2.02557 15.216C2.00713 14.4868 1.9988 13.7574 2.00057 13.028V10.972C1.9978 10.2426 2.00514 9.5132 2.02257 8.784L2.02957 8.59C2.03757 8.365 2.04757 8.144 2.05957 7.878C2.10957 6.813 2.27757 6.088 2.52457 5.45C2.77626 4.7822 3.17079 4.17744 3.68057 3.678C4.17972 3.16955 4.78376 2.77607 5.45057 2.525C6.08857 2.278 6.81357 2.11 7.87857 2.06C8.14457 2.048 8.36657 2.038 8.59057 2.03L8.78457 2.024C9.51376 2.00623 10.2432 1.99857 10.9726 2.001L13.0286 2ZM12.0006 7C10.6745 7 9.40272 7.52678 8.46503 8.46447C7.52735 9.40215 7.00057 10.6739 7.00057 12C7.00057 13.3261 7.52735 14.5979 8.46503 15.5355C9.40272 16.4732 10.6745 17 12.0006 17C13.3267 17 14.5984 16.4732 15.5361 15.5355C16.4738 14.5979 17.0006 13.3261 17.0006 12C17.0006 10.6739 16.4738 9.40215 15.5361 8.46447C14.5984 7.52678 13.3267 7 12.0006 7ZM12.0006 9C12.3945 8.99993 12.7847 9.07747 13.1487 9.22817C13.5127 9.37887 13.8434 9.5998 14.122 9.87833C14.4007 10.1569 14.6217 10.4875 14.7725 10.8515C14.9233 11.2154 15.001 11.6055 15.0011 11.9995C15.0011 12.3935 14.9236 12.7836 14.7729 13.1476C14.6222 13.5116 14.4013 13.8423 14.1227 14.121C13.8442 14.3996 13.5135 14.6206 13.1496 14.7714C12.7856 14.9223 12.3955 14.9999 12.0016 15C11.2059 15 10.4429 14.6839 9.88025 14.1213C9.31764 13.5587 9.00157 12.7956 9.00157 12C9.00157 11.2044 9.31764 10.4413 9.88025 9.87868C10.4429 9.31607 11.2059 9 12.0016 9M17.2516 5.5C16.92 5.5 16.6021 5.6317 16.3677 5.86612C16.1333 6.10054 16.0016 6.41848 16.0016 6.75C16.0016 7.08152 16.1333 7.39946 16.3677 7.63388C16.6021 7.8683 16.92 8 17.2516 8C17.5831 8 17.901 7.8683 18.1355 7.63388C18.3699 7.39946 18.5016 7.08152 18.5016 6.75C18.5016 6.41848 18.3699 6.10054 18.1355 5.86612C17.901 5.6317 17.5831 5.5 17.2516 5.5Z' fill='white'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}

.cig--footer-icon:hover {
  filter: brightness(0.3) saturate(120%) invert(30%) sepia(50%) saturate(1300%)
    hue-rotate(190deg);
  transform: scale(1.08);
}

.cig--footer-link-parent-wrapper {
  display: flex;
  flex-direction: row;
  gap: 60px;
}

.cig--footer-legal-wrapper {
  background: #020018;
  padding: 20px 0;
}

ul.cig--footer-link-wrapper {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
}

span.cig--footer-link-heading {
  font-weight: 600;
  font-size: 16px;
  color: var(--color-white);
  text-transform: uppercase;
}

a.cig--footer-link {
  text-decoration: none;
  color: var(--color-blue-light);
  font-size: 16px;
  font-weight: 500;
  transition: 0.2s ease;
}
a.cig--footer-link:hover {
  color: var(--color-white);
}

/* Language Picker */
.cig--language-picker-select-wrapper {
  position: relative;
  width: 160px;
}
.cig--language-picker-select-wrapper .ms-choice {
  background: #0d0747;
  /* background: #110E2F; */
  border: none;
}
.cig--language-picker-select-wrapper .ms-choice span {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: var(--color-white);
}
.cig--language-picker-select-wrapper .ms-choice > div.icon-caret {
  border-color: #fff transparent transparent transparent !important;
  border-width: 5px 5px 0 5px !important;
  border-radius: 10px;
}
.cig--language-picker-select-wrapper .ms-drop {
  color: #fff !important;
  border: none !important;
  border-radius: 5px 5px 0 0 !important;
  background: #191352;
}

.cig--language-picker-select-wrapper .ms-drop ul li:hover {
  background-color: #2867c6;
  color: #fff;
}

/* Add icon before placeholder text */
.cig--language-picker-select-wrapper .ms-choice::before {
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6.5C0 4.77609 0.68482 3.12279 1.90381 1.90381C3.12279 0.68482 4.77609 0 6.5 0C8.22391 0 9.87721 0.68482 11.0962 1.90381C12.3152 3.12279 13 4.77609 13 6.5C13 8.22391 12.3152 9.87721 11.0962 11.0962C9.87721 12.3152 8.22391 13 6.5 13C4.77609 13 3.12279 12.3152 1.90381 11.0962C0.68482 9.87721 0 8.22391 0 6.5ZM6.09375 0.875063C5.54937 1.04081 5.00906 1.54131 4.56056 2.38225C4.41279 2.66183 4.2857 2.95185 4.18031 3.25H6.09375V0.875063ZM3.32313 3.25C3.45855 2.81841 3.63258 2.39991 3.84313 1.99956C3.98361 1.73392 4.14585 1.48037 4.32819 1.2415C3.3215 1.65898 2.45538 2.35594 1.83219 3.25H3.32313ZM2.85025 6.09375C2.87462 5.38119 2.96237 4.69788 3.10375 4.0625H1.36013C1.05716 4.70035 0.876373 5.38932 0.827125 6.09375H2.85025ZM3.93819 4.0625C3.77838 4.72859 3.68637 5.40914 3.66356 6.09375H6.09375V4.0625H3.93819ZM6.90625 4.0625V6.09375H9.33562C9.31311 5.40916 9.22137 4.72861 9.06181 4.0625H6.90625ZM3.66438 6.90625C3.68692 7.59083 3.77865 8.27138 3.93819 8.9375H6.09375V6.90625H3.66438ZM6.90625 6.90625V8.9375H9.06181C9.21375 8.31594 9.31044 7.631 9.33644 6.90625H6.90625ZM4.18031 9.75C4.29244 10.0636 4.42 10.3545 4.56056 10.6177C5.00906 11.4587 5.55019 11.9584 6.09375 12.1249V9.75H4.18031ZM4.32819 11.7585C4.14584 11.5196 3.9836 11.2661 3.84313 11.0004C3.63259 10.6001 3.45855 10.1816 3.32313 9.75H1.83219C2.45535 10.6441 3.32148 11.3411 4.32819 11.7585ZM3.10375 8.9375C2.95682 8.26968 2.87196 7.5897 2.85025 6.90625H0.827125C0.8775 7.62937 1.06356 8.31431 1.36013 8.9375H3.10375ZM8.67181 11.7585C9.67852 11.3411 10.5447 10.6441 11.1678 9.75H9.67687C9.54144 10.1816 9.36741 10.6001 9.15688 11.0004C9.01643 11.2661 8.85418 11.5197 8.67181 11.7585ZM6.90625 9.75V12.1249C7.45063 11.9592 7.99094 11.4587 8.43944 10.6177C8.58 10.3545 8.70756 10.0636 8.81969 9.75H6.90625ZM9.89625 8.9375H11.6399C11.9364 8.31431 12.1225 7.62937 12.1729 6.90625H10.1497C10.128 7.5897 10.0432 8.26968 9.89625 8.9375ZM12.1729 6.09375C12.1236 5.38932 11.9428 4.70036 11.6399 4.0625H9.89625C10.0376 4.69788 10.1254 5.38119 10.1497 6.09375H12.1729ZM9.15688 1.99956C9.35756 2.37656 9.53225 2.79581 9.67687 3.25H11.1678C10.5447 2.35591 9.67852 1.65894 8.67181 1.2415C8.84894 1.47225 9.01144 1.72737 9.15688 1.99956ZM8.81969 3.25C8.71431 2.95185 8.58722 2.66182 8.43944 2.38225C7.99094 1.54131 7.45063 1.04163 6.90625 0.875063V3.25H8.81969Z' fill='white'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
  margin-right: 8px;
  width: 14px;
  height: 14px;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

/* Ensure text does not overlap */
.cig--language-picker-select-wrapper .ms-choice span {
  display: inline-block;
}
.cig--language-picker-select-wrapper .ms-choice > span {
  top: 7px !important;
  left: 28px !important;
}

@media (max-width: 768px) {
  .cig--footer-flex-between-wrapper,
  .cig--footer-flex-stretch-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  .cig--footer-flex-between-reverse-wrapper {
    padding: 10px 0;
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
  }
  .cig--footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .cig--footer-link-parent-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  a.cig--footer-logo {
    display: block;
    width: 180px;
    height: 130px;
    background: url("data:image/svg+xml,%3Csvg width='180' height='130' viewBox='0 0 180 130' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M88.9096 0.742489C89.2339 -0.251269 90.6421 -0.246175 90.9591 0.749902L96.8113 19.1368C97.0322 19.8308 96.5142 20.539 95.7857 20.5392L83.9334 20.5424C83.2014 20.5426 82.6826 19.8282 82.9096 19.1325L88.9096 0.742489Z' fill='white'/%3E%3Cpath d='M109.774 59.7068C110.091 60.7002 108.951 61.5183 108.11 60.9005L92.6186 49.5108C92.0318 49.0794 92.0341 48.2021 92.6232 47.7737L102.251 40.7725C102.844 40.3407 103.687 40.6166 103.91 41.3159L109.774 59.7068Z' fill='white'/%3E%3Cpath d='M69.6378 59.6996C69.3131 60.6932 70.4531 61.5196 71.297 60.9024L86.8744 49.5088C87.4623 49.0788 87.4621 48.2015 86.8741 47.7716L77.3066 40.7783C76.7156 40.3463 75.8751 40.6172 75.6477 41.3127L69.6378 59.6996Z' fill='white'/%3E%3Cpath d='M58.7965 24.4009C57.9683 23.7807 58.4069 22.4637 59.4417 22.4634L78.2023 22.4584C78.9359 22.4582 79.4549 23.1754 79.225 23.8718L75.5055 35.1396C75.2749 35.8382 74.4266 36.1047 73.8376 35.6636L58.7965 24.4009Z' fill='white'/%3E%3Cpath d='M80.7288 25.7241C80.4989 26.4204 81.0179 27.1377 81.7515 27.1375L116.895 27.1281C117.123 27.1281 117.344 27.0562 117.528 26.9227L121.01 24.3941C121.854 23.7813 121.42 22.447 120.377 22.4472L82.5854 22.4573C82.1209 22.4574 81.7088 22.7553 81.5633 23.1962L80.7288 25.7241Z' fill='%23B31942'/%3E%3Cpath d='M78.5517 32.3193C78.3218 33.0157 78.8408 33.7329 79.5744 33.7327L107.809 33.7252C108.036 33.7252 108.258 33.6533 108.442 33.5198L111.631 31.2038C112.475 30.591 112.041 29.2567 110.998 29.257L80.3381 29.2651C79.8736 29.2652 79.4615 29.5631 79.316 30.004L78.5517 32.3193Z' fill='%23B31942'/%3E%3Cpath d='M99.3558 40.1166C99.1719 40.25 98.9506 40.3219 98.7234 40.322L79.3674 40.3271C79.1617 40.3272 78.9603 40.2683 78.787 40.1575L77.1604 39.1175C76.7461 38.8526 76.5641 38.3406 76.7182 37.8737L77.1389 36.5993C77.2844 36.1584 77.6965 35.8605 78.161 35.8603L101.912 35.854C102.955 35.8538 103.389 37.1881 102.545 37.8009L99.3558 40.1166Z' fill='%23B31942'/%3E%3Cpath d='M89.0753 46.736C89.4485 46.9746 89.9298 46.9604 90.2882 46.7001L93.4593 44.3977C94.3033 43.7849 93.8695 42.4505 92.8263 42.4508L86.0571 42.4526C84.9815 42.4529 84.5711 43.856 85.4772 44.4353L89.0753 46.736Z' fill='%23B31942'/%3E%3Cpath d='M24.3798 99.1487L26.8944 100.938C24.8912 104.048 20.7143 106.477 15.7275 106.477C6.73427 106.477 0 99.7878 0 90.6279C0 81.468 6.73427 74.7791 15.7275 74.7791C19.4782 74.7791 23.5273 76.1851 26.1699 79.5508L23.4847 81.5532C22.2913 79.5934 18.9241 77.591 15.7275 77.591C7.9703 77.591 3.32451 83.6834 3.32451 90.6279C3.32451 97.5724 7.9703 103.665 15.7275 103.665C18.8815 103.665 22.1208 102.642 24.3798 99.1487Z' fill='white'/%3E%3Cpath d='M34.8691 97.7854L31.5446 105.71H27.9643L41.0919 75.546H44.0754L57.203 105.71H53.6227L50.2982 97.7854H34.8691ZM42.5837 79.1248L36.0199 94.9735H49.1048L42.5837 79.1248Z' fill='white'/%3E%3Cpath d='M64.3442 91.693V105.71H61.2754V75.546H70.567C76.7045 75.546 80.4979 78.1875 80.4979 83.5982C80.4979 87.7734 77.7274 90.9687 72.7833 91.3948L81.4782 105.71H77.7274L69.4588 91.693H64.3442ZM64.3442 78.3579V88.8811H69.7998C75.298 88.8811 77.1734 86.4953 77.1734 83.5982C77.1734 80.7011 75.298 78.3579 69.7998 78.3579H64.3442Z' fill='white'/%3E%3Cpath d='M89.6093 91.4374V102.898H105.763V105.71H86.5405V75.546H105.252V78.3579H89.6093V88.6255H104.229V91.4374H89.6093Z' fill='white'/%3E%3Cpath d='M114.874 91.4374V102.898H131.028V105.71H111.806V75.546H130.517V78.3579H114.874V88.6255H129.494V91.4374H114.874Z' fill='white'/%3E%3Cpath d='M140.14 91.693V105.71H137.071V75.546H146.362C152.5 75.546 156.293 78.1875 156.293 83.5982C156.293 87.7734 153.523 90.9687 148.579 91.3948L157.274 105.71H153.523L145.254 91.693H140.14ZM140.14 78.3579V88.8811H145.595C151.093 88.8811 152.969 86.4953 152.969 83.5982C152.969 80.7011 151.093 78.3579 145.595 78.3579H140.14Z' fill='white'/%3E%3Cpath d='M179.3 78.4431L176.614 80.5307C175.293 78.5709 173.332 77.591 170.775 77.591C167.621 77.591 164.339 79.2526 164.339 83.0443C164.339 91.1817 179.811 86.8787 179.811 97.7428C179.811 103.239 174.654 106.477 169.88 106.477C166.215 106.477 162.677 105.156 160.375 102.003L163.146 100.001C164.424 102.216 166.854 103.665 170.008 103.665C173.034 103.665 176.486 101.705 176.486 98.1688C176.486 89.648 161.015 94.3771 161.015 83.3426C161.015 77.5058 165.874 74.7791 170.775 74.7791C174.185 74.7791 176.913 75.7164 179.3 78.4431Z' fill='white'/%3E%3Cpath d='M1.63233 114.138V129.606H0.0585938V114.138H1.63233Z' fill='%23B31942'/%3E%3Cpath d='M7.78894 114.138L17.0128 127.247H17.0565V114.138H18.6302V129.606H16.663L7.43922 116.366H7.39551V129.606H5.82178V114.138H7.78894Z' fill='%23B31942'/%3E%3Cpath d='M41.5289 115.82L40.3486 116.978C39.2995 115.864 37.835 115.186 35.9334 115.186C31.9554 115.186 29.5729 118.311 29.5729 121.872C29.5729 125.433 31.9554 128.558 35.9334 128.558C37.529 128.558 39.059 128.121 40.2175 127.465V122.287H36.5236V120.845H41.7912V128.427C40.0645 129.453 37.8132 130 35.9334 130C31.3215 130 27.868 126.569 27.868 121.872C27.868 117.175 31.3215 113.744 35.9334 113.744C38.3815 113.744 40.1519 114.444 41.5289 115.82Z' fill='%230A71B9'/%3E%3Cpath d='M61.0109 121.872C61.0109 126.569 57.5574 130 52.9455 130C48.3336 130 44.8801 126.569 44.8801 121.872C44.8801 117.175 48.3336 113.744 52.9455 113.744C57.5574 113.744 61.0109 117.175 61.0109 121.872ZM59.306 121.872C59.306 118.311 56.9235 115.186 52.9455 115.186C48.9674 115.186 46.585 118.311 46.585 121.872C46.585 125.433 48.9674 128.558 52.9455 128.558C56.9235 128.558 59.306 125.433 59.306 121.872Z' fill='%230A71B9'/%3E%3Cpath d='M63.7427 114.138L68.6606 127.247H68.7043L73.7753 114.138H75.4801L69.4475 129.606H67.8738L61.9941 114.138H63.7427Z' fill='%230A71B9'/%3E%3Cpath d='M79.0938 122.287V128.164H87.3777V129.606H77.52V114.138H87.1154V115.58H79.0938V120.845H86.5909V122.287H79.0938Z' fill='%230A71B9'/%3E%3Cpath d='M92.0503 122.418V129.606H90.4765V114.138H95.2414C98.3889 114.138 100.334 115.492 100.334 118.267C100.334 120.408 98.9135 122.047 96.378 122.265L100.837 129.606H98.9135L94.6732 122.418H92.0503ZM92.0503 115.58V120.976H94.848C97.6676 120.976 98.6293 119.753 98.6293 118.267C98.6293 116.781 97.6676 115.58 94.848 115.58H92.0503Z' fill='%230A71B9'/%3E%3Cpath d='M105.4 114.138L114.624 127.247H114.668V114.138H116.241V129.606H114.274L105.05 116.366H105.007V129.606H103.433V114.138H105.4Z' fill='%230A71B9'/%3E%3Cpath d='M122.849 114.138L128.073 126.722L133.297 114.138H135.702V129.606H134.128V116.235H134.084L128.489 129.606H127.658L122.063 116.235H122.019V129.606H120.445V114.138H122.849Z' fill='%230A71B9'/%3E%3Cpath d='M141.464 122.287V128.164H149.748V129.606H139.89V114.138H149.486V115.58H141.464V120.845H148.961V122.287H141.464Z' fill='%230A71B9'/%3E%3Cpath d='M154.814 114.138L164.038 127.247H164.082V114.138H165.655V129.606H163.688L154.464 116.366H154.421V129.606H152.847V114.138H154.814Z' fill='%230A71B9'/%3E%3Cpath d='M174.821 115.58V129.606H173.247V115.58H168.067V114.138H180.001V115.58H174.821Z' fill='%230A71B9'/%3E%3C/svg%3E%0A")
      center / contain no-repeat;
  }
  ul.cig--footer-legal-list-wrapper {
    justify-content: center;
    flex-wrap: wrap;
  }
}
