html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-neutral-light-2);
  box-sizing: border-box;
}

.no-script-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.no-script__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40vw;
  box-shadow: var(--spacing-xxsmall) 3px 18px rgba(0, 0, 0, 0.161);
  padding: 2.2rem;
  background-color: var(--color-neutral-white);
  text-align: center;
}

.no-script__card-top-image img {
  width: 105px;
}

.no-script__card-title {
  font: var(--text-body-medium);
  letter-spacing: var(--text-body-medium-letter);
  margin-top: var(--spacing-xxlarge);
  margin-bottom: var(--spacing-xxlarge);
}

.no-script__card-title p,
.no-script__card-title strong {
  color: var(--color-brand-secondary-regular);
}

.no-script__card-title strong {
  font-weight: var(--font-weight-regular);
}

.no-script__card-text {
  font: var(--text-body-medium);
  letter-spacing: var(--text-body-medium-letter);
}

.no-script__card-small {
  font: var(--text-link-medium);
  letter-spacing: var(--text-link-medium-letter);
  margin-top: var(--spacing-base);
  margin-bottom: var(--spacing-base);
}

.no-script__card-navigators-images-wrapper {
  display: flex;
  width: 100%;
  height: 100px;
  justify-content: space-evenly;
}

.no-script__card-navigators-images-wrapper img {
  width: 50px;
}

.no-script__sub-card {
  margin-top: var(--spacing-xxlarge);
  display: flex;
}

.no-script__sub-card-logo-image img {
  width: 210px;
}

.no-script__sub-card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 2px solid #bababa;
  padding-left: var(--spacing-base);
}

@media screen and (max-width: 800px) {
  .no-script__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    box-shadow: 5px 3px 18px rgba(0, 0, 0, 0.161);
    padding: 2.2rem;
    background-color: var(--color-neutral-white);
    text-align: center;
  }

  .no-script__sub-card-logo-image img {
    display: none;
  }

  .no-script__sub-card-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-left: var(--spacing-base);
    border: none;
    line-height: 1.2em;
  }
}
