:root {
  --unit: 0.25rem;
  --unit-timing: 0.25s;
}

html,
body {
  background-color: #fbfbfd;
}

* {
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

.component {
  margin: calc(var(--unit) * 13) auto;
}

.half {
  width: calc(50% - (var(--unit) * 5) / 2);
}

.flex {
  display: flex;
}

.flex-grow {
  flex-grow: 1;
  margin-bottom: calc(var(--unit) * 8);
  min-width: 230px;
}

.component + .flex {
  margin-top: calc(var(--unit) * -13);
}

.flex div:first-child {
  margin-right: calc(var(--unit) * 5);
}

.flex-wrapper + .component {
  margin-top: 0;
}

.spacing {
  display: flex;
  margin-bottom: calc(var(--unit) * 13);
  height: calc(var(--unit) * 8);
  width: 100%;
}

.spacing div {
  background-color: rgb(0, 9, 39);
  box-sizing: border-box;
  height: 100%;
}

.spacing div:nth-child(1) {
  width: var(--unit);
}

.spacing div:nth-child(2) {
  opacity: 0.65;
  width: calc(var(--unit) * 2);
}

.spacing div:nth-child(3) {
  opacity: 0.5;
  width: calc(var(--unit) * 3);
}

.spacing div:nth-child(4) {
  opacity: 0.35;
  width: calc(var(--unit) * 5);
}

.spacing div:nth-child(5) {
  opacity: 0.15;
  width: calc(var(--unit) * 8);
}

.spacing div:nth-child(6) {
  opacity: 0.1;
  width: calc(var(--unit) * 13);
}

.spacing div:nth-child(7) {
  opacity: 0.05;
  width: calc(var(--unit) * 21);
}

.wrapper {
  margin: calc(var(--unit) * 13) auto;
  max-width: 1024px;
  padding: 0 calc(var(--unit) * 8);
}

label {
  background-color: rgba(215, 219, 254, 0.35);
  border-radius: calc(var(--unit) * 3);
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.5);
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  margin-bottom: calc(var(--unit) * 8);
  padding: calc(var(--unit) * 3);
  text-align: right;
  font-weight: 400;
  width: 100%;
}

/* Titles */

h1,
h2,
h3,
h4,
h5 {
  word-break: break-word;
}

h1 {
  color: rgb(0, 9, 39);
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-size: 40px;
  line-height: 51px;
  font-weight: 700;
  margin-bottom: calc(var(--unit) * 5);
}

h2 {
  color: rgb(0, 9, 39);
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-size: 32px;
  line-height: 43px;
  font-weight: 700;
  margin-bottom: calc(var(--unit) * 3);
}

h3 {
  color: rgb(0, 9, 39);
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-size: 24px;
  line-height: 35px;
  font-weight: 700;
  margin-bottom: calc(var(--unit) * 2);
}

h4 {
  color: rgb(0, 9, 39);
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-size: 20px;
  line-height: 31px;
  font-weight: 700;
  margin-bottom: calc(var(--unit) * 2);
}

h5 {
  color: rgb(0, 9, 39);
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: calc(var(--unit) * 2);
}

h1.poppins,
h2.poppins,
h3.poppins,
h4.poppins,
h5.poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

/* Bread */

.detail {
  border-left: 1px solid rgba(215, 219, 254, 1);
  flex-grow: 1;
  padding: calc(var(--unit) * 3) 0 calc(var(--unit) * 3) calc(var(--unit) * 5);
}

ol,
ul,
.detail,
p {
  color: rgba(0, 18, 45, 1);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 31px;
  margin-bottom: calc(var(--unit) * 3);
}

ol.medium,
ul.medium,
.detail.medium,
p.medium {
  font-size: 18px;
  line-height: 28px;
}

ol.small,
ul.small,
.detail.small,
p.small {
  font-size: 15px;
  line-height: 23px;
}

ol strong,
ul strong,
.detail strong,
p strong {
  font-weight: 500;
}

p strong,
p span {
  margin-right: var(--unit);
}

.detail strong,
.detail span {
  display: block;
}

.detail span {
  color: rgba(0, 0, 0, 0.65);
}

.detail strong {
  color: rgb(0, 28, 117);
}

ul a,
.detail a,
p a {
  color: rgba(0, 42, 176, 1);
  display: inline;
  font-weight: 400;
  position: relative;
  text-decoration: none;
}

ul a::before,
.detail a::before,
p a::before {
  background-color: rgb(0, 42, 176);
  bottom: 0px;
  content: "";
  height: 1px;
  left: 0px;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease 0s;
  width: 100%;
}

ul a:hover::before,
.detail a:hover::before,
p a:hover::before {
  transform-origin: left center;
  transform: scaleX(1);
}

/* List items */

ul,
ol {
  margin: calc(var(--unit) * 5) 0;
}

ul.bullet {
  list-style-type: disc;
}

ol.numbered {
  list-style-type: decimal !important;
}

ol li,
ul li {
  display: flex;
  margin: 0 0 calc(var(--unit) * 3) 0;
}

ol.numbered li,
ul.bullet li {
  display: list-item;
  transform: translateX(17px);
  width: calc(100% - 17px);
}

ol.numbered li {
  padding-left: calc(var(--unit) * 2);
}

ul li svg {
  margin: 2px calc(var(--unit) * 2) 0 0;
}

/* Details */

detail {
  align-items: center;
  color: rgba(0, 0, 0, 0.65);
  display: inline-flex;
  font-size: 80%;
}

detail svg {
  margin: 0 calc(var(--unit) * 1) !important;
  margin-top: -1px !important;
}

/* Buttons */

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

button.button {
  align-items: center;
  display: flex;
  font-family: "Poppins", sans-serif;
  margin: calc(var(--unit) * 5) calc(var(--unit) * 2) calc(var(--unit) * 2) 0;
  font-size: 18px;
  font-weight: 600;
  padding: calc(var(--unit) * 3) calc(var(--unit) * 5);
}

button.button span:first-child {
  padding: 0 calc(var(--unit) * 3);
}

button.button span:last-child {
  display: block;
}

button.neutral {
  background-color: rgba(0, 42, 176, 1);
  border-radius: calc(var(--unit) * 2);
  color: rgba(255, 255, 255, 1);
  transition: background-color var(--unit-timing) ease-in-out;
}

button.neutral:hover {
  background-color: rgba(0, 42, 176, 0.85);
}

@media screen and (max-width: 1084px) {
  .flex-wrapper,
  .mobile-block {
    display: block;
    padding-top: 1px;
  }

  .flex-wrapper .half {
    margin-right: 0 !important;
    width: 100% !important;
  }
}

@media screen and (max-width: 640px) {
  #details {
    display: block;
  }

  #details div {
    margin-right: 0;
  }

  .wrapper {
    margin: calc(var(--unit) * 8) auto;
    padding: 0 calc(var(--unit) * 8);
  }
}
