/* 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;
}
/* 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 {
  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 {
  font-size: 1rem;
  line-height: 1.25;
  margin: 0;
}

input,
textarea {
  font-size: 16px;
  line-height: 17px;
}

textarea {
  background: var(--color-white);
  appearance: none;
  -webkit-appearance: none;
  padding: 8px 16px;
  margin: 0;
  border-radius: 32px;
}


.bold {
  font-weight: 600;
}


input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-moz-placeholder,
textarea::-moz-placeholder,
input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-moz-placeholder,
textarea:-moz-placeholder,
input::placeholder {
  color: var(--color-black-light);
}

.label,
label {
  font-size: 14px;
  line-height: 15px;
  color: var(--color-black);
}

#header .top-menu a[data-depth='0']:hover,
#header a:hover,
a:hover {
  color: var(--color-secondary);
  background: transparent;
  text-decoration: none !important;
}

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