/* Font */
@font-face {
  font-family: "Comic Neue";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/ComicNeue-Bold.ttf) format("truetype");
}

@font-face {
  font-family: "Comic Neue";
  font-style: italic;
  font-weight: 700;
  src: url(../fonts/ComicNeue-BoldItalic.ttf) format("truetype");
}

@font-face {
  font-family: "Comic Neue";
  font-style: italic;
  font-weight: 400;
  src: url(../fonts/ComicNeue-Italic.ttf) format("truetype");
}

@font-face {
  font-family: "Comic Neue";
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/ComicNeue-Light.ttf) format("truetype");
}

@font-face {
  font-family: "Comic Neue";
  font-style: italic;
  font-weight: 300;
  src: url(../fonts/ComicNeue-LightItalic.ttf) format("truetype");
}

@font-face {
  font-family: "Comic Neue";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/ComicNeue-Regular.ttf) format("truetype");
}



/* Typography */

* {
  font-family: 'Comic Neue', cursive;
}

body,
html {
  font-family: 'Comic Neue', cursive;
  font-size: 16px;
}

body {
  font-family: 'Comic Neue', cursive;
  background-color: var(--color-white);
}

.tooltip {
  font-family: 'Comic Neue', cursive;
}

.popover {
  font-family: 'Comic Neue', cursive;
  background-color: var(--color-white-light);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

body {
  font-family: 'Comic Neue', cursive;
}

h1,
.h1 {
  font-size: 34px;
  line-height: 36px;
  text-transform: unset;
  margin: 0;
}

h2,
.h2 {
  font-size: 27px;
  line-height: 29px;
  /* text-transform: lowercase; */
  text-transform: unset;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 767px) {

  h2,
  .h2 {
    font-size: 24px;
    line-height: 26px;
  }
}

/* h2::first-letter,
.h2::first-letter { 
  text-transform: capitalize;
} */

h3,
.h3 {
  font-size: 22px;
  line-height: 24px;
  text-transform: lowercase;
  margin: 0;
}

h3::first-letter,
.h3::first-letter {
  text-transform: capitalize;
}

h4,
.h4 {
  margin: 0;
  font-size: 17px;
  line-height: 18px;
}

h5,
.h5 {
  margin: 0;
  font-size: 11px;
  line-height: 14px;
  font-weight: 400;
}

.h1,
.h2,
.h3,
.h4,
body {
  color: var(--color-black);
}

p,
address {
  font-size: 1rem;
  line-height: 1.25;
  margin: 0;
}

.bold {
  font-weight: 600;
}

a:hover {
  color: var(--color-secondary);
  background: transparent;
  text-decoration: none !important;
}

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

a:focus,
a:hover {
  color: var(--color-secondary);
  outline: none;
  text-decoration: none !important;
}


/* Labels */
.label,
label {
  font-weight: 600;
  color: var(--color-black);
  font-size: 1rem;
  line-height: 1.25;
  margin: 0;
  text-align: left;
  align-self: flex-start;
}