@font-face {
  font-family: "  ";
  src: url("../assets/fonts/PPEditorialOld-Regular.woff2") format("woff2"),
    url("../assets/fonts/PPEditorialOld-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aspekta";
  src: url("../assets/fonts/Aspekta-500.woff2") format("woff2"),
    url("../assets/fonts/Aspekta-500.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aspekta";
  src: url("../assets/fonts/Aspekta-400.woff2") format("woff2"),
    url("../assets/fonts/Aspekta-400.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aspekta";
  src: url("../assets/fonts/Aspekta-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PPEditorial';
  src: url('../assets/fonts/PPEditorialOld-Regular.woff2') format('woff2'),
      url('../assets/fonts/PPEditorialOld-Regular.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PPEditorial';
  src: url('../assets/fonts/PPEditorialOld-Ultralight.woff2') format('woff2'),
      url('../assets/fonts/PPEditorialOld-Ultralight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  scroll-behavior: smooth;
  font-family: "Aspekta"!important;
  /* background-color: var(--black); */
  /* background-image: url(../assets/images/backgroundImage.avif); */
}
:root {
  --white: rgba(255, 255, 255);
  --black: #111111;
  --red: #d8031d;

  --lightgrey: #000000b3;
  --faqColor: #2d2d2d;
  --lightgreen: #004638;

  /* rgb(248, 247, 242) */
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: var(--white);
}
h1 {
  font-size: 110px;
  line-height: 1em;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0px;
	margin:0px;
}
h2 {
  font-size: 50px;
  line-height: 1em;
  font-weight: 300;
  letter-spacing: 0px;
	margin:0px;
}
h3 {
  font-size: 61px;
  line-height: 120%;
  /* text-transform: uppercase; */
  font-weight: 300;
  letter-spacing: 0px;
	margin:0px;
}
h4 {
  font-size: 55px;
  line-height: 1.2em;
  /* text-transform: uppercase; */
  font-weight: 400;
  letter-spacing: 1px;
	margin:0px;
}
h5 {
  font-size: 16px;
  line-height: 1.2em;
  /* text-transform: uppercase; */
  font-weight: 300;
  letter-spacing: 0px;
	margin:0px;
}
h6 {
  font-size: 22px;
  line-height: 120%;
  /* text-transform: uppercase; */
  font-weight: 400;
  letter-spacing: 0px;
	margin:0px;
}
p {
  font-size: 20px;
  line-height: 1.3em;
  font-weight: 400;
  letter-spacing: 0px;
	margin:0px;
}
.p-sm {
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  letter-spacing: 0px;
}
.container-fluid {
  width: 100%;
}
.container {
  max-width: 1400px;
  width: 100%;
  padding: 0 2%;
  margin: 0 auto;
}
.spacer {
  height: 100px;
  background-color: var(--black);
}
.text-center {
  text-align: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background-color: var(--red);
  color: var(--white);
  font-weight: 500;
  font-size: 17px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background-color: var(--white);
  color: var(--red);
  font-weight: 500;
  font-size: 17px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.btn:hover {
  background-color: #b60016;
  color: var(--white);
}
article h2 {
	font-size: 36px;
}
article h3 {
	font-size: 32px;
}
article h4 {
	font-size: 26px;
}
article h5 {
	font-size: 22px;
}
article h6 {
	font-size: 20px;
}
article p, article li {
	font-size: 18px;
	font-weight: 400;
	line-height: 150%;
}
article ul {
    list-style: disc;
}
article ol {
    list-style: numbers;
}
article a {
    color: var(--theme-text-color);
    transition: .2s easea all;
	text-decoration: underline;
	font-weight: 500;
	cursor: pointer;
}
article a:hover {
    color: var(--red);
}
@media screen and (max-width:499px){
	p{
		font-size:17px;
	}
}

