@font-face {
  font-family: 'JosefinSans', sans-serif;
  font-weight: 900; /* Black */
  font-style: normal;
  src: url('../assets/fonts/JosefinSans-Black.ttf') format('truetype');
}

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

@font-face {
  font-family: 'JosefinSans';
  font-weight: 800; /* Extra Bold */
  font-style: normal;
  src: url('../assets/fonts/JosefinSans-ExtraBold.ttf') format('truetype');
}

@font-face {
  font-family: 'JosefinSans';
  font-weight: 800; /* Extra Bold Italic*/
  font-style: italic;
  src: url('../assets/fonts/JosefinSans-ExtraBoldItalic.ttf') format('truetype');
}

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

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

@font-face {
  font-family: 'JosefinSans';
  font-weight: 600; /* SBold */
  font-style: normal;
  src: url('../assets/fonts/JosefinSans-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'JosefinSans';
  font-weight: 600; /* SBold Italic*/
  font-style: italic;
  src: url('../assets/fonts/JosefinSans-SemiBoldItalic.ttf') format('truetype');
}


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

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

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

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

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

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

@font-face {
  font-family: 'JosefinSans';
  font-weight: 200; /* ULight */
  font-style: normal;
  src: url('../assets/fonts/JosefinSans-ExtraLight.ttf') format('truetype');
}

@font-face {
  font-family: 'JosefinSans';
  font-weight: 200; /* ULight Italic */
  font-style: italic;
  src: url('../assets/fonts/JosefinSans-ExtraLightItalic.ttf') format('truetype');
}

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

@font-face {
  font-family: 'JosefinSans';
  font-weight: 100; /* Thin Italic */
  font-style: italic;
  src: url('../assets/fonts/JosefinSans-ThinItalic.ttf') format('truetype');
}


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

:root {
  --bg-primary-dark: #19222D;
  --bg-primary-light: #fafcff;
  --bg-primary-grey: rgb(240, 247, 255);
  --bg-secondary: #113B9E;
  --bg-secondary-dark: #081f53;
  --bg-secondary-translucent: hsla(222, 82%, 34%, 0.08);
  --bg-triatary: #19222D;

  --text-primary-light: #eeeeee;
  --text-primary-dark: #13172ed0;
  --text-secondary: #0B38A4;

  --accent-1: hsl(213, 44%, 18%);
  --accent-2: hsl(222, 80.6%, 34.3%);

  --btn-1-bg: hsl(213, 44%, 18%);
  --btn-2-bg: hsl(222, 80.6%,  34.3%);
}


html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.3rem;
}

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

h6 {
  font-size: 1rem;
}

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

p {
  font-size: 1rem;
  line-height: 1.3em;
  color: var(--text-primary-dark);
  text-align: left;
  margin-bottom: 1rem;
}

span {
  color: var(--text-primary-dark);
}

li {
  list-style: none;
}

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

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

hr {
  width: 100%;
  color: var(--text-primary-light);
  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-light);
  font-family: 'JosefinSans', sans-serif;
}

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

/* BUTTTONS START */

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

.button {
  outline: none;
  background-color: transparent;
  color: var(--text-primary-light);
  font-size: 1.05rem;
  font-weight: 500;
  padding: .5rem 1.2rem;
  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;
}

.button:hover {
  opacity: .8;
}

.button.accent-1 {
  background-color: var(--btn-1-bg);
}
.button.accent-2 {
  background-color: var(--btn-2-bg);
}
/* BUTTTONS END */

.section-content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

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

.section-title-content p {
  font-size: 1.3rem;
}

.section-body-content {
  margin: 1rem 0;
}

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

.align-left {
  align-items: start;
}

.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: 25rem;
}

.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-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h4,
.section-dark h5,
.section-dark h6,
.section-dark p {
  color: var(--text-primary-dark);
}

.section-dark {
  background-color: var(--bg-primary-grey);
}

section {
  padding: 2rem 2rem;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: .5rem 0 2rem;
}

.divider svg {
  width: 100%;
  fill: var(--bg-primary-dark)
}

.section-divider {
  width: 100vw;
}

.section-divider svg {
  width: 100%;
  height: 100%;
}

.section-divider path {
  fill: var(--bg-primary-light);
}

@media screen and (min-width: 1080px) {
  .divider svg {
    width: 30rem;
    margin: 1.5rem 0 2rem;
  }

  section {
    padding: 4rem 2rem;
  }
}