*,
html {
  box-sizing: border-box;
}

:root {
  /* Brand Colors */
  --primary-color: #0A5C36;
  --primary-color-hover: #117D4A;
  --secondary-color: #E6B058;
  --secondary-color-hover: #F1C57E;

  /* Neutral Colors */
  --color-black: #000000;
  --color-white: #fdfdfd;
  --color-white-hover: #ffffff;
  --color-grey: #9A9A9A;
  --color-inactive-form: #999999;
  /* Fonts */
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Font Sizes */
  --font-size-header: 32px;
  --font-size-subheader: 24px;
  --font-size-text: 18px;
  --font-size-small: 14px;
}

body {
  margin: 0;
}

.title,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  font-family: var(--font-heading) !important;
  font-weight: bold;
  line-height: 1.625;
  text-transform: uppercase;
}

.d-none {
  display: none;
}

div,
p,
ul,
li,
a,
span {
  font-family: var(--font-body);
  font-weight: 400;
}

ul {
  padding-left: 0;
}

.contextual {
  ul.contextual-links {
    display: none;
  }
}

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

.card {
  border-radius: 8px;
  background-color: var(--color-white);
}

.views-element-container .section {
  padding-top: 20px;
}

.micon:hover {
  color: var(--secondary-color);
  transition: 0.3s;
  cursor: pointer;
}

a,
button,
input[type="submit"] {
  cursor: pointer;
}