@font-face {
  font-family: Helvetica;
  src: url(./HelveticaNeueRoman.otf);
  font-weight: 400;
}
@font-face {
  font-family: Helvetica;
  src: url(./HelveticaNeueBold.otf);
  font-weight: bold;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica;
}

main {
  font-family: "futura-pt", sans-serif;
  color: black;
}

.MainContent {
  background-image: url("/assets/images/Group 8.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 100vh;
}
@media (max-width: 767px) {
  .MainContent {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.Container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.MainContent .Container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

h1 {
  font-weight: bold;
  margin-bottom: 64px;
}

h1,
h2 {
  font-size: clamp(1.5rem, 1.175rem + 1.625vw, 3.125rem);
}

h2 {
  margin-bottom: 24px;
}

p {
  font-size: 20px;
}
p .red {
  font-weight: bold;
}

a {
  margin-top: 48px;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  gap: 16px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  color: black;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  border: 1px solid #d3000e;
  padding: 16px 24px;
  background-color: white;
  box-shadow: 0px 3px 30px 0px rgba(211, 0, 14, 0.29);
  text-transform: uppercase;
}
a svg path {
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: white;
  background-color: #d3000e;
}
a:hover svg path {
  fill: white;
}

.logo {
  max-width: 313px;
  width: 100%;
}

.MainContent__data {
  margin-top: 150px;
  max-width: 620px;
  padding-left: 16px;
}
@media (max-width: 767px) {
  .MainContent__data {
    margin-top: 100px;
    padding-left: 0;
  }
}

p {
  margin-top: 32px;
  font-size: 22px;
  font-weight: 500;
}

.red {
  color: #d3000e;
}/*# sourceMappingURL=index.css.map */