main {
  background: rgba(29, 40, 82, 1);
  color: rgba(255, 255, 255, 1);
}
main .header {
  background: linear-gradient(360deg, rgba(56, 92, 235, 0.4) 0%, rgba(56, 92, 235, 0) 79.81%);
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.5);
}
.content {
  width: 100%;
}
.header,
.sub-header,
.footer {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-items: center;
  width: 100%;
}
.sub-header {
  padding: 0;
}
.header h1 {
  font-weight: 500;
  margin: 5px 0 24px 0;
}
.header .description {
  font-size: 24px;
  max-width: 800px;
  text-align: center;
}
.sub-header h2 {
  font-size: 32px;
  font-weight: 500;
  grid-column: 1/-1;
  text-align: center;
  width: 100%;
}
.sub-header dl {
  counter-reset: dl-counter;
}
.sub-header dl dt {
  font-size: 20px;
  font-weight: 500;
  padding: 4px 0 10px 0;
  position: relative;
}
.sub-header dl dd {
  margin: 0 0 50px 0;
}
.sub-header dl dt, .sub-header dl dd {
  padding-left: 50px;
}

.sub-header dl dt:before {
  color: white;
  background: rgba(56, 92, 235, 1);
  border-radius: 50%;
  content: counter(dl-counter);
  counter-increment: dl-counter;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 18px;
  height: 32px;
  width: 32px;
  line-height: 32px;
  text-align: center;
}
main .gradient-top {
  background: linear-gradient(360deg, rgba(56, 92, 235, 0.4) 0%, rgba(56, 92, 235, 0) 79.81%);
}
.info {
  display: grid;
  grid-template-columns: 50% 50%;
}
.bottom-padding {
  padding-bottom: 80px;
}
.top-padding {
  padding-top: 80px;
}

.info .container-end {
  align-items: end;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.info .container-start {
  align-items: start;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.info .img-left {
  display: flex;
  align-items: start;
  justify-content: flex-start;
}
.info .img-right {
  display: flex;
  align-items: end;
  justify-content: flex-end;
}
.info .panel {
  background: rgba(39, 59, 138, 0.85);
  border-radius: 24px;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.5);
  padding: 40px 32px;
  width: 616px;
}
.info .borderless-panel {
  padding: 40px 32px;
  max-width: 520px;
  justify-self: center;
}
.info .right-border {
  border-right: 1px solid white;
}
.info .container h3,
.info .borderless-panel h3,
.info .panel h3 {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 8px 0;
}
.footer {
  background: rgba(12, 16, 31, 1);
}
.footer .action {
  max-width: 780px;
  text-align: center;
}
.footer .email {
  padding-top: 64px;
}
.footer .email>a {
  color: white;
  text-decoration: none;
}
.footer .logo {
  align-items: center;
  background: linear-gradient(180deg, #0C101F 0%, #000000 100%);
  display: flex;
  flex-direction: column;
  padding: 40px 0 100px 0;
  width: 100%;
}
.footer .logo>img {
  margin-top: 40px;
}
