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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
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;
}

html {
  font-size: 62.5%;
  font-family: "Segoe UI", Roboto, sans-serif;
}

@media (max-width: 1200px) {
  html {
    font-size: 60%;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 58%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 56%;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 54%;
  }
}

/* Headings */

.primary-heading {
  font-size: 3.2rem;
  font-weight: 700;
}

.secondary-heading {
  font-size: 2.4rem;
  font-weight: 600;
}

.tertiary-heading {
  font-size: 1.8rem;
  font-weight: 500;
}

.text-basic {
  font-size: 1.6rem;
  font-weight: 400;
}

/* Headings */

body {
  background-color: #232b2b;
}

.info-cell {
  background-color: #232b2b;
}

.info-text {
  width: 90%;
  margin: 0 auto;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: white;
}

.info-logo {
  width: 5vw;
  background-color: white;
  padding: 1rem;
  border-radius: 12px;
}

.info-img {
  width: 100%;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  margin: 0 auto;
  padding: 5rem 0;
  gap: 1rem;
  align-items: center;
}

.info-grid .info-img {
  border-radius: 12px;
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .move-one {
    grid-area: 2 / 1 / 3 / 2;
  }

  .move-two {
    grid-area: 6 / 1 / 7 / 2;
  }

  .move-three {
    grid-area: 10 / 1 / 11 / 2;
  }

  .move-four {
    grid-area: 14 / 1 / 15 / 2;
  }
}
