* {
  box-sizing: border-box;
}

body {
  background-color: #0D0D0D;
  margin: -18px 0 0 0;
}

.accent-red {
  color: #FF0600
}

h2 {
  font-family: 'Sequel Sans Roman Disp';
  letter-spacing: 4px;
  margin-top: 70px;
  text-align: center;
  font-size: 40px;
  color: white;
  margin-bottom: 70px;
}

h2.subpage-header {
  margin: 0;
  font-family: 'Sequel Sans Light Disp';
  font-size: 24px;
  letter-spacing: 4px;
  color: white;
}

.subpage-header-wrapper {
  background-image: url('../images/pricing-header-text.png');
  background-repeat: no-repeat;
  height: 122px;
  max-height: 122px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

/* Containers */
.page-container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  justify-content: space-between;
  min-height: 100vh;
}

.custom-container {
  /* width: 100%; */
  padding: 0 15px;
  display: flex;
  flex-direction: column;
}

/* Button */
[class*=button-] {
  font-family: 'Sequel Sans Semi Bold Body', sans-serif;
  border-radius: 2px;
  border-width: 2px;
  border-style: solid;
  cursor: pointer;
  color: white !important;
  transition-duration: 0.4s;
}

.button-get-malcore {
  width: 100%;
  margin-top: 70px;
  padding: 12px 36px;
  background-color: #F05A46;
  font-size: 20px;
  letter-spacing: 0.5px;
  border-color:#F05A46;
  margin-bottom: 0;
}

.button-get-malcore:hover {
  color: white;
  background-color: #F05A46;
}

.button-get-malcore:active {
  background-color: transparent;
}

.button-red {
  width: fit-content;
  padding: 12px 36px;
  background-color: red;
  font-size: 20px;
  letter-spacing: 0.5px;
  border-color:red;
  margin-bottom: 0;
  font-family: 'Sequel Sans Book Disp', sans-serif;
  letter-spacing: 2px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Media Queries */
@media (min-width: 576px) {
  h2 {
    font-size: 48px;
  }

  h2.subpage-header {
    font-size: 40px;
  }

  .custom-container {
    padding: 0 15px;
  }

  .button-get-malcore {
    width: auto;
    margin-bottom: 200px;
  }
}

@media (min-width: 768px) {}

@media (min-width: 992px) {}

@media (min-width: 1200px) {
  .custom-container {
    padding: 0 150px;
  }
}

@media (min-width: 1400px) {
  .custom-container {
    padding: 0 325px;
  }
}