@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/Poppins-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
:root {
  --primary-color: #154872;
  --on-primary-color: white;
  --secondary-color: #16a7a8;
  --on-secondary-color: white;
  --surface-color: #b9cfe1;
  --on-surface-color: #3a3c3e;
  --background-color: #fefefe;
  --on-background-color: #3a3c3e;
  --primary-font-family: "Poppins", sans-serif;
  --light-text-color: #646668;
  --light-border: #e4e4e4;
  --secondary-shadow-color: #5adddd;
}
html {
  box-sizing: border-box;
}
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
*:not(input) {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  font-family: var(--primary-font-family);
  font-weight: 400;
  background-color: var(--background-color);
  color: var(--on-background-color);
}
::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--placeholder);
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--placeholder);
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--placeholder);
}

.d-flex {
  display: flex;
}
.flex1 {
  flex: 1;
}
.justify-content-center {
  justify-content: center;
}
.align-items-start {
  align-items: flex-start;
}
.align-items-center {
  align-items: center;
}
.flex-direction-column {
  flex-direction: column;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-end {
  justify-content: end;
}
.justify-content-evenly {
  justify-content: space-evenly;
}
header {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 16px 32px;
  z-index: 10;
  opacity: 0.98;
  background-color: #f5f7f77a;
}
header > .show {
  opacity: 1;
}
nav {
  display: flex;
  flex-direction: row;
  width: 45%;
  align-items: center;
  justify-content: flex-end;
}
#menuToggle {
  display: none;
}
nav a {
  font-family: var(--primary-font-family);
  text-decoration: none;
  padding: 10px;
  color: var(--on-background-color);
  width: 40%;
}
nav a:hover {
  opacity: 0.8;
  color: var(--on-background-color);
}
nav a:active {
  opacity: 0.5;
}
nav a.active {
  font-weight: 600;
  color: var(--on-background-color);
}
.container {
  padding: 32px;
  padding-top: 102px;
  display: flex;
}
section {
  margin: 0 auto;
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1200px) {
  .main-container {
    margin: auto;
    /* max-width: 1040px; */
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 992px) {
  .main-container {
    margin: auto;
    max-width: 864px;
  }
  @media (orientation: landscape) {
    .main-container {
      max-width: 100%;
      margin: 0;
    }
  }
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {
  .main-container {
    margin: 0;
  }
  header {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 8px 16px;
  }
  #menuToggle {
    display: flex;
  }
  nav.show {
    display: flex;
  }
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  .container {
    padding: 16px;
    padding-top: 72px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 600px) {
  .main-container {
    margin: 0;
  }
}
