@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  --main-bg: #020202;
  --page-content-bg: #fff;
  --page-bg: #07250C;
  --footer: #07250C;
  --header: #361F5B;
  --main-font: #fff;
  --page-font: #787780;
  --highlight: #516DFF;
  --title: #285237;
  --btn: #CB1054;
  --btn-hover: #F91C5F;
  --black: #000;
  --white: #fff;
  --error: #ff2e2e;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--main-font);
  background-color: var(--main-bg);
  background-image: url('../images/main-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
footer{
  background: var(--main-bg);
}
a {
  color: var(--main-font);
}
.home-page-cover {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
  padding: 0 0 16.7rem;
}
.main-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.sub-header-container {
  position: relative;
  padding: 2.3rem 1.3rem;
  background-image: url('../images/sub-header.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.sub-header-text {
  width: 100%;
}
.sub-header-container h1 {
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
}
.sub-header-container p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
}
.advertiser-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: .2rem 1.3rem;
  text-align: end;
  background-color: #361F5B;
}
.advertiser-container p {
  font-family: "Montserrat", sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: #ffffff25;
}
.content-container {
  width: 100%;
  padding: 1.3rem;
  background-color: var(--main-bg);
}
.content-container h4 {
  text-transform: uppercase;
  font-weight: 700;
}
.content-container h4,
.content-container ul,
.content-container p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.3rem;
}
.content-container p strong {
  font-weight: 700;
}
.content-container ul {
  list-style-type: disc;
  padding-left: 2.4rem;
}
.adv-footer-container h4 {
  margin-bottom: .5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  text-transform: none;
}
.adv-footer-container p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.3rem;
}

.view-footer-links>a:not(:last-child) {
  font-size: 0.875rem !important;
  padding-right: 5px;
  margin-right: 5px;
  border-right: 1px solid #bcbbb6;
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .main-container {
    max-width: 767px;
  }
  .sub-header-container {
    background-position: 65%;
  }
}
@media (max-width: 767px) {
  body {
    background: none;
  }
  .main-container {
    max-width: inherit;
  }
  .sub-header-container {
    background-image: linear-gradient( rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4) ), url('../images/sub-header-mobile.webp');
    background-size: cover;
    background-position: inherit;
    background-color: var(--header);
  }
  .sub-header-text {
    width: 60%;
  }
}
@media (max-width: 450px) {
  .sub-header-container h1 {
    font-size: 2rem;
  }
  .sub-header-container p {
    font-size: 1rem;
  }
}
