@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&display=swap");

body {
  font-family: "Inter", sans-serif;
}

.wrapper {
  max-width: 1792px;
  margin: 0 auto;
}

section {
  padding: 64px;
}

section h1,
section h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

section h2 {
  color: #000;
  font-size: 48px;
  line-height: 110%;
}

p:last-of-type {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

a.btn-global {
  font-size: 14px;
  font-weight: bold;
  padding: 18px 32px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  transition: 0.3s;
}

a.btn-yellow {
  color: #000;
  background: #ffc900;
}

a.btn-yellow:hover {
  background: #fff;
}

a.btn-transparent {
  border: 1px solid #fff;
  background: transparent;
}

a.btn-red {
  color: #fff;
  background: #d70527;
}

a.btn-red:hover {
  background: #A1102B;
}

.header p {
  margin-bottom: 12px;
}

.sub-header {
  color: #cf0527;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

@media (max-width: 1199px) {
  section {
    padding-left: 30px;
    padding-right: 30px;
  }

  section h1 {
    font-size: 50px;
  }
  section h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  section {
    padding-left: 20px;
    padding-right: 20px;
  }
  section h1 {
    font-size: 35px;
  }
  section h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  a.btn-global {
    justify-content: center;
  }
}