/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
  --primary-color: #4154f1;
  --secondary-color: #444444;
  --light-color: #f6f9ff;
  --white-color: #fff;
  --black-color: #000;
}

body {
  font-family: "Open Sans", sans-serif;
  background: #f6f9ff;
  color: #444444;
  margin: 0;
}

a {
  color: #4154f1;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  min-height: calc(100vh - 90px);
}

.text-center {
  text-align: center;
}

.section-header h3 {
  margin-bottom: 0px;
  color: var(--primary-color);
}

.item_center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.card {
  width: 300px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 0 10px 3px #dfdfdf;
}
.card h1 {
  color: var(--primary-color);
}
.card .icon {
  font-size: 3rem;
  color: #358c2f;
}

/* Header  */
#header {
  background-color: var(--secondary-color);
}
#header .header_container {
  display: flex;
  justify-content: space-between;
}
#header .header_container .menu_bar {
  display: flex;
  list-style: none;
}
#header .header_container .menu_bar li {
  font-weight: bold;
}

.brand {
  width: 40px;
}
.brand img {
  width: 100%;
}

footer {
  height: 30px;
  padding: 10px;
  text-align: center;
  color: var(--white-color);
  background-color: var(--black-color);
}/*# sourceMappingURL=style.css.map */