/* Globals */

html {
  height: 100%;
}

body {
  font-size: 16px;
  line-height: 170%;
  min-height: 100%;
  height: 100%;
  color: #333;
  font-family: 'Lato', 'helvetica neue', 'arial', sans-serif;
  font-weight: 400;
  image-rendering: -moz-auto;
  image-rendering: -o-auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  -ms-interpolation-mode: nearest-neighbor;
}

/* Logo */

.logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Global basic component styles */

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Lato', 'helvetica neue', 'arial', sans-serif;
  font-weight: 300;
}

h1 {
  font-size: 28px;
  color: #23928F;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 20px;
}

p {
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a {
  color: #333;
}

a:hover,
a:focus,
a:active {
  color: #333;
  text-decoration: none;
}

.btn {
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 12px 17px 14px;
  font-size: 16px;
  letter-spacing: 0.43px;
  cursor: pointer;
  transition: none;
  font-weight: 400;
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.btn-pill {
  border-radius: 50px;
}

.btn a:focus,
.btn a:active,
.btn a:hover,
.btn:focus,
.btn:active,
.btn:hover {
  color: #fff;
}

.btn svg {
  margin-right: 5px;
  display: inline-block;
}

.btn:not(:hover) {
  transition: 0.2s ease box-shadow;
}

.btn:hover {
  box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.1);
  transition: 0.2s ease box-shadow;
}

.btn:focus,
.btn:active {
  box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.2);
  transition: 0.1s ease all;
}

.btn.btn-default,
.btn.btn-default:hover,
.btn.btn-default:focus,
.btn.btn-default:active {
  color: #555;
  border-color: #ccc;
  border: 1px solid #ccc;
  background-color: #fff;
}

.btn.btn-primary,
.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
  background-color: #1FA2AB;
  border: 1px solid #23928F;
  border-radius: 3px;
}

.btn.btn-secondary,
.btn.btn-secondary:hover,
.btn.btn-secondary:focus,
.btn.btn-secondary:active {
  background-color: #13ADC3;
  border: 1px solid #13ADC3;
}

.btn.btn-success,
.btn.btn-success:hover,
.btn.btn-success:focus,
.btn.btn-success:active {
  background-color: #96b138;
  border: 1px solid #96b138;
}

.btn.btn-warning,
.btn.btn-warning:hover,
.btn.btn-warning:focus,
.btn.btn-warning:active {
  background-color: #f3b611;
  border: 1px solid #f3b611;
}

.btn.btn-danger,
.btn.btn-danger:hover,
.btn.btn-danger:focus,
.btn.btn-danger:active {
  background-color: #a81818;
  border: 1px solid #a81818;
}


/* Global container/grid styles */

.wrapper {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  flex-direction: column;
}

footer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: auto 0 0 0;
  width: 100%;
  flex-direction: column;
}

.footer {
  background-color: #fff;
  color: #333;
  height: 100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 50px 0 0 0;
  width: 100%;
  border-top: 1px solid #ddd;
  text-align: center;
}

footer.dark {
  background-color: #333;
  color: #fff;
  border-top: none;
}

.flex-container {
  display: flex;
  width: 100%;
  position: relative;
  padding: 0 15px;
}

header {
  display: flex;
  flex-direction: column;
  z-index: 99;
}

nav {
  width: 100%;
  background-color: #fff;
  height: 120px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-bottom: 1px solid #ddd;
  color: #333;
}

.nav-fixed-top {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
}

.dark nav {
  background-color: #333;
  color: #fff;
}

/* Responsive utilities */

.dark .menu {
  background-color: rgba(33, 33, 33, 1);
}

.menu {
  font-size: 18px;
  position: fixed;
  background-color: rgba(255, 255, 255, 1);
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  margin: 0;
  padding: 0;
  width: 80vw;
  max-width: 320px;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.2);
  transition: left 0.4s ease;
  z-index: 99;
}

#navigation:not(:checked) ~ header .menu {
  left: -80vw;
  transition: left 0.4s ease;
  box-shadow: none;
}

.menu a {
  color: #333;
  display: block;
  width: 100%;
  padding: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.menu .active a {
  color: #23928F;
}

.menu a:hover {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.1);
}

.dark .menu a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

#navigation:checked ~ header .nav-toggle {
  border-top: 2px solid RGBA(0, 0, 0, 0);
  margin-top: 4px;
}

#navigation:checked ~ header .nav-toggle::after {
  transform: rotate(45deg);
  top: 8px;
  right: 0.5px;
}

#navigation:checked ~ header .nav-toggle::before {
  transform: rotate(-45deg);
  top: 8px;
  left: 0.5px;
}

.nav-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  border-top: 2px solid rgba(0, 0, 0, 1);
  width: 22px;
  height: 30px;
  transition: 0.3s ease all;
  margin-top: 13px;
}

.nav-toggle:after {
  content: "";
  border-top: 2px solid rgba(0, 0, 0, 1);
  position: absolute;
  left: 0;
  bottom: 21px;
  width: 22px;
  transition: 0.3s ease all;
  top: -9px;
}

.nav-toggle:before {
  content: "";
  border-top: 2px solid rgba(0, 0, 0, 1);
  position: absolute;
  left: 0;
  bottom: 14px;
  width: 22px;
  transition: 0.3s ease all;
  top: 5px;
}

#navigation:checked ~ header .dark .nav-toggle {
  border-top: 2px solid RGBA(255, 255, 255, 0);
}

.dark .nav-toggle {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

.dark .nav-toggle:after {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

.dark .nav-toggle:before {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

.hidden-toggle {
  position: fixed;
  right: 0;
  bottom: 0;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  margin: 0;
  cursor: pointer;
  transition: all 0.4s ease;
}

#navigation:not(:checked) ~ header .hidden-toggle {
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.4s ease;
}

.menu li {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
}

.menu li:last-child {
  margin-right: 0;
}

.nav-fixed-top + div {
  margin-top: 170px;
  border: none;
  top: 0;
  left: 0;
  right: 0;
  position: r
}


/* Global advanced component styles */

.modal-header,
.modal-body,
.modal-footer {
  padding: 20px;
}

.modal-footer {
  flex-direction: column;
  align-items: flex-end;
}

.modal-footer > :not(:last-child) {
  margin-bottom: .25rem;
  margin-right: 0;
}


/* Flex container */

@media (min-width: 576px) {
  .flex-container {
    max-width: 540px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .flex-container {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (min-width: 992px) {
  .flex-container {
    max-width: 960px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .flex-container {
    max-width: 1140px;
    margin: 0 auto;
  }
}


/* Media queries */

@media (min-width: 576px) {}

@media (min-width: 768px) {}

@media (min-width: 992px) {
  /* Menu essentials */
  .nav-toggle {
    display: none;
  }
  .hidden-toggle {
    display: none;
  }
  nav .flex-container {
    justify-content: space-between;
  }
  .menu {
    display: flex;
    background-color: transparent;
    box-shadow: none;
    position: static;
    width: auto;
    left: auto;
    right: auto;
    width: auto;
    max-width: none;
    flex-direction: row;
    color: #333;
    align-items: center;
  }
  .navigation.dark .menu {
    display: flex;
    background-color: transparent;
    box-shadow: none;
    position: static;
    width: auto;
    left: auto;
    right: auto;
    width: auto;
    max-width: none;
    flex-direction: row;
  }
  .navigation.dark .menu,
  .navigation.dark .menu a {
    color: #fff
  }
  .menu a {
    display: inline;
    width: auto;
    padding: 0;
    border-bottom: none;
    color: #333;
  }
  .menu a:hover {
    box-shadow: none;
  }
  .dark .menu a {
    display: inline;
    width: auto;
    padding: 0;
    border-bottom: none;
    color: #fff
  }
  .menu li {
    display: flex;
    margin-right: 50px;
    width: auto;
  }
  .menu li svg {
    display: flex;
    line-height: 5px;
    margin-top: 4px;
  }
  .menu li:last-child {
    margin-right: 0;
  }
  /* Global advanced components styles */
  .modal.fade > .modal-dialog,
  .modal.show > .modal-dialog {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .modal-footer {
    flex-direction: row;
    align-items: center;
  }
  .modal-footer > :not(:last-child) {
    margin-bottom: 0;
    margin-right: .25rem;
  }
}

@media (min-width: 1200px) {}