
@import "fonts/fonts.css?v=0.25";
@import "components/button.css?v=0.25";
@import "components/header.css?v=0.25";
@import "components/navigation/navigation.css?v=0.25";
@import "components/footer.css?v=0.25";


/* Generic rules */

:focus {
  outline: none;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  border: 0;
  height: 100%;
}

body {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  font-family: 'Lexend', sans-serif;
  color: #080a0c;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background-color 0.2s ease;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.31;
  color: #080a0c;
  font-weight: normal;
  font-size: 24px;
}

h1 .hlight,
h2 .hlight {
  color: #154dd1;
}

a, a:hover, a:active, a:focus, a:visited {
  color: #154dd1;
  text-decoration: none;
  outline: none;
}

a:hover {
  color: #0038a1;
  text-decoration: underline;
}

input, textarea, select {
  font-family: 'Lexend', sans-serif;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
}

ul {
  list-style: none;
}

strong {
  font-weight: 500;
}

.uppercase {
  text-transform: uppercase !important;
}

.bold {
  font-weight: 500 !important;
}

.txt-normal {
  font-weight: 300 !important;
}

.txt-center {
  text-align: center !important;
}

.txt-green {
  color: #23cd94 !important;
}

a.txt-green:hover {
  color: #259872 !important;
}

.txt-dark {
  color: #323a48 !important;
}

a.txt-dark:hover {
  color: #080a0c !important;
}

.bg-green {
  background-color: #23cd94 !important;
}

.bg-dark {
  background-color: #323a48 !important;
}

.bg-royalblue {
  background-color: #193f9a !important;
}


/* Main */

main.visible {
  display: block;
}

main.hidden {
  display: none;
}

main {
  flex: 1 0 auto;
  min-height: 75vh;
  overflow: hidden;
}

main img {
  max-width: 100%;
  display: block;
}

main .container {
  padding: 0;
}


/* Media queries */

@media screen and (min-width: 769px) {
  
  main .container {
    padding-left: 32px;
    padding-right: 32px;
  }
  
}

@media screen and (min-width: 1280px) {
  
  main .container {
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
  
}


/* IE11/Edge specific rules */

_:-ms-fullscreen, :root body { 
  min-height: 100vh;
}
