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.3;
}
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-family: Arial, Helvetica, sans-serif;
  font-size: 62.5%;
}

@media (max-width: 850px) {
  html {
    font-size: 50%;
  }
}

body > * {
  overflow: hidden;
}

.heading-primary {
  font-size: 4rem;
  font-weight: 600;
}

.heading-secondary {
  font-size: 2.2rem;
}

.heading-tertiary {
  font-size: 1.8rem;
}

.text-cont {
  font-size: 1.4rem;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-text {
  width: 80%;
  margin: 0 auto;
  padding: 5rem 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  .section-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .move-one {
    grid-area: 4 / 1 / 5 / 2;
  }

  .move-two {
    grid-area: 8 / 1 / 9 / 2;
  }

  .move-three {
    grid-area: 12 / 1 / 13 / 2;
  }

  .move-four {
    grid-area: 16 / 1 / 17 / 2;
  }

  .move-five {
    grid-area: 20 / 1 / 21 / 2;
  }
}
