:root {
  /* Color styles */
  --color-primary: #717171;
  --color-secondary: #A3A3A3;
  --color-tertiary: #CACACA;
  --color-body: #6E6E6E;
  --color-white: #FFFFFF;
  --color-smoke: #F9F9F9;
  --color-red: #EE3228;
  --color-orange: #F26A21;
  --color-yellow: #F5A73A;
  --color-white-yellow: #F9E596;
  --color-blue1: #3B73BA;
  --color-blue2: #2253A4;
  --color-blue3: #204185;
  --color-blue4: #DBE0EE;
  /* Effect styles */
  --box-shadow-blue: 0px 0px 10px rgba(59, 116, 185, 0.5);
}

html, body {
  margin: 0;
  font-family: "Archivo", sans-serif;
  color: var(--color-primary);
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.5;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
}

@media only screen and (max-width: 567px) {
  h1 {
    font-size: 2rem; /* 32px */
  }
  h2 {
    font-size: 1.75rem; /* 28px */
  }
  h3 {
    font-size: 1.5rem; /* 24px */
  }
  h4 {
    font-size: 1.25rem; /* 20px */
  }
  h5 {
    font-size: 1rem; /* 16px */
  }
  h6, p {
    font-size: 0.875rem; /* 14px */
  }
}
a {
  color: unset;
}

.f-primary {
  color: var(--color-primary);
}

.f-blue1 {
  color: var(--color-blue1);
}

.f-blue2 {
  color: var(--color-blue2);
}

.f-blue3 {
  color: var(--color-blue3);
}

.f-blue4 {
  color: var(--color-blue4);
}

.dashed_break_line {
  height: 1px;
  background-image: linear-gradient(to right, var(--color-blue1) 0%, var(--color-blue1) 50%, transparent 50%);
  background-size: 8px 1px;
  background-repeat: repeat-x;
}

.box-shadow-blue {
  box-shadow: var(--box-shadow-blue);
}

.menu-toggle {
  position: relative;
  display: block;
  width: 30px;
  height: 20px;
  background: transparent;
  border-top: 4px solid;
  border-bottom: 4px solid;
  color: #294f80;
  font-size: 0;
  transition: all 0.25s ease-in-out;
}
.menu-toggle:before, .menu-toggle:after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease-in-out;
}

.hamburger_btn:hover {
  color: #3b73ba;
}

.hamburger_btn.is-active {
  border-color: transparent;
}
.hamburger_btn.is-active:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger_btn.is-active:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}/*# sourceMappingURL=style.css.map */