: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);
}

/* Global */
main.cig--page-primary-container {
  position: relative;
  box-sizing: border-box;
  background: #fff;
}

/* Margin */
.cig--margin-top-l {
  margin-top: 60px;
}
.cig--margin-top-lm {
  margin-top: 40px;
}
.cig--margin-top-m {
  margin-top: 30px;
}
.cig--margin-top-ms {
  margin-top: 20px;
}
.cig--margin-top-s {
  margin-top: 10px;
}

/* Padding  */
.cig--vertical-padded-l {
  padding: 60px 0;
}
.cig--vertical-padded-l-flat {
  padding: 60px 0;
}
.cig--vertical-padded-lm-responsive {
  padding: 50px 0;
}
.cig--vertical-padded-lm {
  padding: 40px 0;
}
.cig--vertical-padded-m {
  padding: 30px 0;
}

@media only screen and (max-width: 1024px) {
  .cig--vertical-padded-l {
    padding: 60px 20px;
  }
  .cig--vertical-padded-lm-responsive {
    padding: 20px 0;
  }
  .cig--horizontal-padded-s {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Headings */
h1.cig--hero-flex-heading {
  position: relative;
  margin: 0;
  padding: 20px 0 40px;
  font-size: 40px;
  color: var(--color-blue-dark);
  text-transform: uppercase;
  z-index: 2;
}

h2.cig--primary-header-centered,
h2.cig--primary-header-default,
h2.cig--primary-header-centered-white,
h2.cig--primary-header-default-white {
  position: relative;
  font-weight: bold;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1.3em;
  margin: 0;
  padding-bottom: 14px;
}
h2.cig--primary-header-centered,
h2.cig--primary-header-default {
  color: var(--color-blue-dark);
}
h2.cig--primary-header-centered-white,
h2.cig--primary-header-default-white {
  color: var(--color-white);
}

h2.cig--primary-header-centered {
  text-align: center;
}
h2.cig--primary-header-centered::after,
h2.cig--primary-header-centered-white::after,
h2.cig--primary-header-default::after,
h2.cig--primary-header-default-white::after {
  content: "";
  width: 100px;
  height: 3px;
  background: var(--color-blue-light);
  position: absolute;
  bottom: 0;
}
h2.cig--primary-header-centered::after,
h2.cig--primary-header-centered-white::after {
  left: 50%;
  transform: translateX(-50%);
}
h2.cig--primary-header-default::after,
h2.cig--primary-header-default-white::after {
  left: 0;
}

/* Standart H2, centered on mobile */
h2.cig--primary-header-center-responsive {
  position: relative;
  font-weight: bold;
  color: var(--color-blue-dark);
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1.3em;
  margin: 0;
  padding-bottom: 14px;
}
h2.cig--primary-header-center-responsive::after {
  content: "";
  width: 100px;
  height: 3px;
  background: var(--color-blue-light);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  h2.cig--primary-header-center-responsive {
    text-align: center;
  }
  h2.cig--primary-header-center-responsive::after {
    content: "";
    left: 50%;
    transform: translateX(-50%);
  }
}
/*  */

h3.cig--sub-heading-uppercase,
h3.cig--standard-mid-heading {
  margin: 0;
  font-weight: bold;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.3em;
}
h3.cig--sub-heading-uppercase {
  color: #383c44;
}
h3.cig--standard-mid-heading {
  color: var(--color-blue-dark);
}
h3.cig--standard-sm-heading {
  margin: 0 0 10px 0;
  color: var(--color-blue-dark);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5em;
}

/* Paragraph */
p.cig--paragraph-white,
p.cig--paragraph-black,
p.cig--paragraph-vdgrey,
p.cig--paragraph-dgrey,
p.cig--paragraph-lgrey,
p.cig--paragraph-dgrey-flat,
p.cig--paragraph-lgrey-flat {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7em;
}
p.cig--paragraph-dgrey-bold,
p.cig--paragraph-dgrey-bold-mt {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
  color: #383c44;
}
p.cig--paragraph-dgrey-bold {
  margin: 0;
}
p.cig--paragraph-dgrey-bold-mt {
  margin: 30px 0 0;
}
p.cig--paragraph-dgrey-mt,
p.cig--paragraph-lgrey-mt,
p.cig--paragraph-vdgrey-mt {
  margin: 30px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
}
p.cig--paragraph-mb-m {
  margin: 0 0 20px 0;
}
p.cig--paragraph-mb-s {
  margin: 0 0 10px 0;
}
p.cig--paragraph-vdgrey,
p.cig--paragraph-vdgrey-mt {
  color: #383c44;
}
p.cig--paragraph-dgrey,
p.cig--paragraph-dgrey-mt,
p.cig--paragraph-dgrey-flat {
  color: #5a607a;
}
p.cig--paragraph-lgrey,
p.cig--paragraph-lgrey-mt,
p.cig--paragraph-lgrey-flat {
  color: #c5cbe8;
}
p.cig--paragraph-centered {
  text-align: center;
}
p.cig--paragraph-white {
  color: var(--color-white);
}
p.cig--paragraph-black {
  color: #050222;
}
@media only screen and (max-width: 768px) {
  .cig--paragraph-center-responsive {
    text-align: center;
  }

}
b.cig--bold-black,
b.cig--bold-white {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5em;
}
b.cig--bold-black {
  color: #050222;
}
b.cig--bold-white {
  color: var(--color-white);
}
span.cig--sub-heading {
  display: block;
  font-size: 20px;
  font-weight: inherit;
  color: inherit;
  font-weight: bold;
  text-transform: uppercase;
}
span.cig--sml-text {
  color: inherit;
  font-size: 14px;
  font-weight: 300;
}

/* Gray Gradient Wrapper */
.cig--gray-gradient-bg {
  padding-top: 60px;
  background: rgb(248, 248, 248);
  background: linear-gradient(
    180deg,
    rgba(248, 248, 248, 1) 0%,
    rgba(255, 255, 255, 1) 50%
  );
}

/* Wrappers */
.cig--primary-hero-parent-wrapper {
  background: rgb(250, 253, 255);
  background: linear-gradient(
    151deg,
    rgba(250, 253, 255, 1) 0%,
    rgba(230, 238, 242, 1) 70%
  );
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 82%);
}

.cig--primary-hero-flex-wrapper {
  display: flex;
  align-items: center;
  min-height: 220px;
}
.cig--hero-flex-s-child {
  flex: 2;
}
.cig--hero-flex-m-child {
  flex: 3;
}
.cig--floating-container {
  position: absolute;
  height: inherit;
  width: 100%;
}
/* Gap Wrappers */
.cig--col-sml-gap-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cig--col-sm-gap-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cig--col-mid-gap-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.cig--col-ml-gap-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.cig--col-lrg-gap-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Center Wrapper */
.cig--centered-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Colored Background */
.cig--bg-lb {
  background: var(--color-blue-light-bg);
}
.cig--bg-lg {
  background: #f8f8f8;
}

/* CTA */
a.cig--standard-link {
  text-decoration: none;
  color: var(--color-blue-light);
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition-main);
}
a.cig--standard-link:hover {
  color: var(--color-grey-dark);
}

a.cig--primary-page-cta {
  display: inline-block;
  text-decoration: none;
  padding: 12px 30px;
  background: var(--color-blue-light);
  color: var(--color-white);
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--transition-main);
}
a.cig--primary-page-cta-mt {
  margin-top: 20px;
}
a.cig--primary-page-cta:hover {
  background-color: var(--color-grey-dark);
}

a.cig--primary-page-cta-mb {
  display: none;
}
a.cig--primary-page-cta-pc {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  a.cig--primary-page-cta-mb {
    display: inline-block;
  }
  a.cig--primary-page-cta-pc {
    display: none;
  }
}
/* Button */
.cig--center-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}
button.cig--primary--btn,
button.cig--standard-btn,
button.cig--standard-btn-compact {
  display: inline-block;
  border: none;
  background: var(--color-blue-light);
  color: var(--color-white);
  border-radius: 50px;
  line-height: 1.4em;
  letter-spacing: 0.5px;
  font-size: 16px;
  text-transform: uppercase;
  transition: var(--transition-main);
  cursor: pointer;
}
button.cig--primary--btn {
  padding: 12px 30px;
  font-weight: 600;
}
button.cig--primary--btn:hover {
  background-color: var(--color-grey-dark);
}
button.cig--standard-btn,
button.cig--standard-btn-compact {
  padding: 14px 35px;
}
button.cig--standard-btn {
  font-weight: bold;
  width: 100%;
}
button.cig--standard-btn-compact {
  font-weight: 600;
  width: auto;
}
button.cig--standard-btn:hover,
button.cig--standard-btn-compact:hover {
  background: #071937;
}
button.cig--standard-btn-alt:hover {
  background: #000611;
}

@media only screen and (max-width: 768px) {
  .cig--primary-hero-flex-wrapper {
    display: flex;
    background: rgb(0, 59, 151);
    background: linear-gradient(
      151deg,
      rgba(0, 59, 151, 0.7) 0%,
      rgba(0, 25, 64, 0.7) 70%
    );
  }
  .cig--hero-flex-s-child {
    display: none;
  }
  h1.cig--hero-flex-heading {
    font-size: 28px;
    color: var(--color-white);
    text-align: center;
  }
  p.cig--paragraph-dgrey,
  p.cig--paragraph-lgrey {
    margin-top: 30px;
  }
}

/* Standard Icon List */
ul.cig--standard-icon-list-wrapper,
ul.cig--standard-spaced-icon-list-wrapper {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
ul.cig--standard-icon-list-wrapper {
  gap: 10px;
}
ul.cig--standard-spaced-icon-list-wrapper {
  gap: 20px;
}
li.cig--standard-icon-list-item {
  position: relative;
  padding-left: 32px;
  line-height: 1.5;
  color: #050222;
}
li.cig--standard-icon-list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
}

/* Top Icon List */
ul.cig--top-icon-grid-list-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr; /* Equal-height rows */
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cig--top-icon-grid-gap-mid {
  gap: 40px;
}
.cig--top-icon-grid-gap-lrg {
  gap: 50px 100px;
}
li.cig--top-icon-grid-list-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cig--top-icon-wrapper {
  width: 80px;
  height: 80px;
}
.cig--top-icon-grid-list-content {
  display: flex;
  flex-direction: column;
  gap: 0px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  ul.cig--top-icon-grid-list-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: auto;
  }
  li.cig--top-icon-grid-list-item {
    align-items: center;
  }
  .cig--top-icon-grid-list-content {
    text-align: center;
  }
}
/* Forms */
.cig--form--row {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  margin-bottom: 20px;
}
.cig--form--column {
  flex: 1;
  min-width: 220px;
}
.cig--form--column-full {
  min-width: 100%;
  margin-bottom: 20px;
}

.cig--form--label {
  display: block;
  color: var(--color-blue-dark);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 10px;
}
.cig--form--input,
.cig--form--textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: border-color 0.3s, transform 0.3s;
}

label.cig--form--required {
  position: relative;
}
label.cig--form--required::after {
  content: "*";
  position: absolute;
  color: #b31942;
  margin-left: 2px;
}

.cig--form--input:focus,
.cig--form--textarea:focus {
  border-color: var(--color-blue-light);
  outline: none;
  transform: scale(1.02);
}
.cig--form--textarea {
  resize: none;
}

/* Radio */
[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #969696;
  /* background: var(--color-blue-light); */
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

ul.cig--horizontal-list-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Submit */
.cig--contact-submit-button {
  display: block;
  width: 100%;
  padding: 16px;
  margin-top: 30px;
  background: var(--color-blue-dark);
  text-transform: uppercase;
  line-height: 1.4em;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.cig--form-submit-button {
  display: block;
  width: 100%;
  padding: 14px 10px;
  margin: 0;
  background: var(--color-blue-dark);
  text-transform: uppercase;
  line-height: 1.4em;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.cig--contact-submit-button:hover,
.cig--form-submit-button:hover {
  background: var(--color-grey-dark);
  transform: scale(1.02);
}
@media (max-width: 540px) {
  .cig--form--row {
    gap: 20px;
  }
  .cig--form-subtitle {
    font-size: 12px;
  }
  .cig--form-row {
    flex-direction: column;
    gap: 15px;
  }
  .cig--form--column {
    min-width: 100%;
  }
  .cig--form--label {
    font-size: 12px;
  }
  .cig--form--input,
  .cig--form--textarea {
    padding: 10px;
  }
  .cig--contact-submit-button {
    padding: 10px;
    font-size: 14px;
  }
}

/* Ready to join banner */
.cig--dark-bg-banner {
  background: var(--color-blue-dark);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
