/*
	Theme Name: flexacco
	Theme URI: https://flexacco.dk
	Description: 
	Version: 1.0
	Author: Daniel Prip Pedersen (dp@voke.dk)
	Author URI: https://voke.dk
*/

/* XS */ 
body {border-top:10px solid grey;}
/* SM */
@media only screen and (min-width: 576px) { body {border-top:10px solid red;} }
/* MD */
@media only screen and (min-width: 768px) { body {border-top:10px solid orange;} }
/* LG */
@media only screen and (min-width: 992px) { body {border-top:10px solid green;} }
/* XL */
@media only screen and (min-width: 1200px) { body {border-top:10px solid yellow;} }
/* XXL */
@media only screen and (min-width: 1400px) { body {border-top:10px solid purple;} }

/* START */


* {font-family: 'Gilroy', sans-serif !important;}
h1, h2, h3, h4, h5 {font-weight: 900 !important;}

header .navbar {
    font-weight: 900;
    font-size: 1.25rem;
}






/* HR DIVIDER */
div.ruler {
  overflow: hidden;
  text-align: center;
}

div.ruler::before,
div.ruler::after {
  background-color: #dd9418;
  content: "";
  display: inline-block;
  height: 1px;
  position: relative;
  vertical-align: middle;
  width: 50%;
}

div.ruler::before {
  margin-left: -50%;
}

div.ruler::after {
  margin-right: -50%;
}