@font-face {
  font-family: 'OPTIHandelGothic';
  font-weight: 900; /* Black */
  font-style: normal;
  src: url('../assets/fonts/Handel_Gothic_D_Bold.otf') format('truetype');
}

@font-face {
  font-family: 'OPTIHandelGothic';
  font-weight: 900; /* Black Italic*/
  font-style: italic;
  src: url('../assets/fonts/Handel_Gothic_D_Bold.otf') format('truetype');
}

@font-face {
  font-family: 'OPTIHandelGothic';
  font-weight: 700; /* Bold */
  font-style: normal;
  src: url('../assets/fonts/Handel_Gothic_D_Bold.otf') format('truetype');
}

@font-face {
  font-family: 'OPTIHandelGothic';
  font-weight: 700; /* Bold Italic*/
  font-style: italic;
  src: url('../assets/fonts/Handel_Gothic_D_Bold.otf') format('truetype');
}

@font-face {
  font-family: 'OPTIHandelGothic';
  font-weight: 500; /* Medium */
  font-style: normal;
  src: url('../assets/fonts/Handel_Gothic_D_Medium.otf') format('truetype');
}

@font-face {
  font-family: 'OPTIHandelGothic', sans-serif;
  font-weight: 500; /* Medium */
  font-style: italic;
  src: url('../assets/fonts/Handel_Gothic_D_Medium.otf') format('truetype');
}

@font-face {
  font-family: 'OPTIHandelGothic';
  font-weight: 400; /* Regular */
  font-style: normal;
  src: url('../assets/fonts/Handel_Gothic_D_Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'OPTIHandelGothic';
  font-weight: 300; /* Light */
  font-style: normal;
  src: url('../assets/fonts/OPTIHandelGothic-Light.otf') format('truetype');
}

@font-face {
  font-family: 'OPTIHandelGothic';
  font-weight: 100; /* Thin */
  font-style: normal;
  src: url('../assets/fonts/OPTIHandelGothic-Light.otf') format('truetype');
}

@font-face {
  font-family: 'OPTIHandelGothic';
  font-weight: 400; /* Regular */
  font-style: italic;
  src: url('../assets/fonts/Handel_Gothic_D_Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'OPTIHandelGothic';
  font-weight: 300; /* Light */
  font-style: italic;
  src: url('../assets/fonts/OPTIHandelGothic-Light.otf') format('truetype');
}

@font-face {
  font-family: 'OPTIHandelGothic';
  font-weight: 100; /* Thin */
  font-style: italic;
  src: url('../assets/fonts/OPTIHandelGothic-Light.otf') format('truetype');
}

/* ############ MAIN CONTENT ###################3*/
  
*, *::before, *::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --bg-primary: #121820;
  --bg-primary-dark: #19222D;
  --bg-primary-light: #ffffff;
  --bg-secondary: #f24637;
  --bg-secondary-dark: #310e0b;
  --bg-secondary-light: #fff3f2;
  --bg-triatary: #6d6e70;

  --text-primary: #c4c4c4;
  --text-primary-light: #eeeeee;
  --text-primary-dark: #13172ed0;
  --text-primary-faded: #adadad;
  --text-secondary: #f24637;
  --text-triatary: #6d6e70;
  /* 2b398b */

  --btn-light-txt: var(--text-primary);
  --btn-light-bg: var(--text-primary);
  --btn-light-border: var(--text-primary);

  --btn-dark-txt: var(--text-triatary);
  --btn-dark-bg: var(--text-triatary);
  --btn-dark-border: var(--text-triatary);

  --accent-1: #E20036;
  --accent-1-faded: #d33847;
  --accent-2: #f24637;
  --accent-2-faded: #ec8a81;
  --accent-3: #6d6e70;
  --accent-3-faded: #9e9ea0;
}


html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1.2rem;
}

h4 {
  font-size: 1.1rem;
}

h5 {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
}

h6 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.3em;
}

@media screen and (min-width: 1080px) {
  h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.6rem;
  }
  
  h4 {
    font-size: 1.3rem;
  }
  
  h5 {
    font-size: 1.2rem;
    line-height: 1.5rem;
    font-weight: 500;
  }
  
  h6 {
    font-size: 1rem;
  }
  
  p {
    font-size: 1rem;
    line-height: 1.3em;
  }
}

h1, h2, h3, h4, h5, h6, p {
  text-align: center;
  color: var(--text-primary);
}


li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--text-primary)
}

img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

hr {
  width: 100%;
  color: var(--text-primary);
  outline: none;
  box-shadow: none;
}

iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

/* ////////////////////////////////////////////////// */

body {
  min-height: 100vh;
  width: 100vw;
  background-color: var(--bg-primary-dark);
  font-family: 'OPTIHandelGothic', sans-serif;
}

.container {
  max-width: 80rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.button {
  outline: none;
  border: .3rem var(--btn-dark-border) solid;
  background-color: transparent;
  color: var(--btn-light-txt);
  border-radius: .3rem;
  font-size: 1.2rem;
  font-weight: 500;
  padding: .5rem 1rem;
  cursor: pointer;
  transition: background-color ease-in-out .1s;
  -webkit-transition: background-color ease-in-out .1s;
  -moz-transition: background-color ease-in-out .1s;
  -ms-transition: background-color ease-in-out .1s;
  -o-transition: background-color ease-in-out .1s;
  -webkit-border-radius: .3rem;
  -moz-border-radius: .3rem;
  -ms-border-radius: .3rem;
  -o-border-radius: .3rem;
}

.button:hover {
  background-color: var(--btn-dark-bg);
  color: var(--btn-light-txt);
  cursor: pointer;
}

.button.green {
  border-color: var(--accent-2)
}

.button.green.filled {
  background-color: var(--accent-2);
  color: var(--text-primary-light)
}

.button.green.filled:hover {
  background-color: transparent;
  color: var(--accent-2);
}

.button.dark {
  border-color: var(--accent-2);
}

.button.dark.filled {
  background-color: transparent;
  color: var(--text-secondary)
}

.button.dark.filled:hover {
  background-color: var(--bg-secondary);
  color: #fff;
}

.section-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-title-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 40rem;
  width: 100%;
}

.section-title-container.dark-text h2, 
.section-title-container.dark-text h5, 
.section-title-container.dark-text p {
  color: var(--text-primary-dark);
}

span.red {
  color: var(--text-accent);
}

.red-bg {
  background-color: var(--accent-1-faded);
}

.dark-bg {
  background-color: var(--bg-secondary);
}

.dark-text h1,
.dark-text h2,
.dark-text h3,
.dark-text h4,
.dark-text h5,
.dark-text h6,
.dark-text p
{
  color: var(--text-primary-dark);
}

.text-left h1,
.text-left h2,
.text-left h3,
.text-left h4,
.text-left h5,
.text-left h6,
.text-left p
{
  text-align: left;
}

.inline-link {
  color: var(--accent-1);
  text-decoration: underline;
}

.small-text {
  font-size: 1rem;
}

.rounded-img img {
  border-radius: .5rem;
  /* border: .15rem var(--accent-2-faded) solid; */
  -webkit-border-radius: .5rem;
  -moz-border-radius: .5rem;
  -ms-border-radius: .5rem;
  -o-border-radius: .5rem;
}

.section-full-width-image-container {
  width: 100%;
  height: 100%;
  max-width: 50rem;
}

.section-full-width-image-container img {
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h4,
.section-light h5,
.section-light h6,
.section-light p {
  color: var(--text-primary-dark);
}

.section-light {
    background-color: var(--bg-secondary-light);
}

section {
  padding: 2rem 2rem;
}

@media screen and (min-width: 1080px) {
  section {
    padding: 4rem 2rem;
  }
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.divider svg {
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .divider svg {
    width: 70%;
  }
}

.divider path {
  stroke: var(--accent-2);
  filter: drop-shadow(0px 0px 2px var(--accent-2));
  -webkit-filter: drop-shadow(0px 0px 2px var(--accent-2));
}

.divider rect {
  stroke: var(--accent-2);
  fill: white;
  filter: drop-shadow(0px 0px 2px var(--accent-2));
  -webkit-filter: drop-shadow(0px 0px 2px var(--accent-2));
}

.divider.dark path {
  stroke: var(--accent-2-faded);
  stroke-width: 3px;
}

.header-divider {
  position: relative;
  width: 100vw;
}

.header-divider svg {
  position: absolute;
  width: 100%;
  margin-top: -5rem;
  height: 10rem;
  left: 0;
}

.header-divider .left {
  fill: var(--bg-secondary)
}

.header-divider .right {
  fill: var(--bg-triatary)
}

.footer-divider {
  position: relative;
  width: 100vw;
}

.footer-divider svg {
  position: absolute;
  width: 100%;
  margin-top: -5.5rem;
  height: 8rem;
  left: 0;
}

.footer-divider .left {
  fill: var(--bg-secondary)
}

.footer-divider .right {
  fill: var(--bg-primary)
}