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;
}
/* 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;
}

* {
  box-sizing: border-box;
}

.page-wrapper {
  min-height: 100vh;
  font-family: "Ubuntu", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.home-navigation {
  position: absolute;
  top: 0%;
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.home-navigation .logo-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  z-index: 100;
}

.home-navigation .logo-container .logo-image {
  width: 100px;
  height: auto;
}

.special-banner {
  height: 1150px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  text-align: center;
  gap: 2rem;
  position: relative;
}

.special-banner img {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 0 100%;
  background-color: #8d89c0;
}

.special-banner h1,
.special-banner h2 {
  /* styles */
  color: #ffffff;
  font-weight: 600;
  width: 50%;
}

.special-banner h1 {
  margin-top: 180px;
  font-size: 4rem;
}

.special-banner h2 {
  font-size: 1.5rem;
}

.special-report-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10%;
}

.special-report {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: row;
  max-width: 1100px;
}

.special-report div:first-of-type {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.special-report div:first-of-type p {
  text-align: center;
  line-height: 1.6rem;
  width: 80%;
}

.special-report div:first-of-type .report-cta {
  color: #ffffff;
  background-color: #9b4242;
  width: fit-content;
  border: 0;
  padding: 15px 30px;
  border-radius: 40px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 250ms;
  text-decoration:none;
}

.special-report div:first-of-type .report-cta:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.special-report div:last-of-type {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.special-report div:last-of-type .report-card {
  max-width: 300px;
  width: 70%;
  padding: 15px;
  border: 2px solid #8d89c0;
  border-radius: 40px;
}

.special-report div:last-of-type .report-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.multi-article-section-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10%;
}
.multi-article-section {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  max-width: 1100px;
}

.multi-article-section .article-card {
  width: 250px;
  height: 350px;
  padding: 20px;
  border: 1px solid #b4b4b4;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  box-sizing: border-box;
  margin-bottom: 2rem;
}

.multi-article-section .article-card .article-image {
  width: 150px;
  height: 150px;
  padding: 2px;
  border-radius: 50%;
}

.multi-article-section .article-card .article-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
 }

.multi-article-section .article-card h3 {
  font-weight: 600;
  height: 100%;
  padding: 0 10px;
  font-size: 1.05rem;
  text-align: center;
}

.multi-article-section .article-card .article-cta {
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0 10px;
  border: 0;
  background-color: #ffffff;
  color: #9b4242;
  text-decoration:none;
}

.special-footer {
  width: 100%;
  height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
}

.special-footer svg {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: 100% 100%;
  z-index: -1;
}

.special-footer .logo-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  margin-bottom: 2rem;
}

.special-footer .logo-container .logo-image {
  width: 100px;
  height: auto;
}

.special-report-wrapper > .contact-us-wrapper {
  width: 100%;
  max-width: 1100px;
  padding: 2rem 3rem;
  background-color: #eaeaea;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.special-report-wrapper > .contact-us-wrapper a {
  color: #9b4242;
  font-weight: 600;
  text-decoration: none;
}

.special-report-wrapper > .special-wave {
  width: 100%;
  max-width: 1100px;
}

@media only screen and (max-width: 1000px) {
  .special-report {
    flex-direction: column;
    height: fit-content;
    gap: 3rem;
  }
  .special-report div:first-of-type,
  .special-report div:last-of-type {
    width: 100%;
  }

  .special-banner {
    height: 600px;
  }

  .special-banner h1 {
    font-size: 2.5rem;
    width: 100%;
    padding: 0 20px;
  }
  .special-banner h2 {
    font-size: 1.1rem;
    width: 100%;
    padding: 0 20px;
  }
}

@media only screen and (max-width: 450px) {
  .special-banner {
    height: 450px;
  }

  .special-banner h1 {
    font-size: 1.2rem;
  }
  .special-banner h2 {
    font-size: 0.8rem;
  }

  .special-report div:first-of-type .report-cta {
    font-size: 1rem;
  }
}
