body {
		background: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-style: normal;
		font-weight: 300;
    overflow-x: hidden;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

/*---------------------------------------
    Typography              
-----------------------------------------*/

h1,h4,h5,h6 {
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.5px;
}

h2,h3 {
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0px;
}

b {
  font-weight:600;
}

h1 {
    font-size: 22px;
}

h2 {
  font-size: 16.8px;
}

h2 b {
  font-weight:600;
}

h3 {
  font-size: 15.4px;
}

h4 {
  color: #666;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 2px;
}

h5 {
  font-size: 14px;
  line-height: 20px;
}

h5 b {
  font-weight: 600;
}

h6 {
  font-size: 12px;
}

/*------------
Pages
-------------*/

.page-main {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 10px;
}

.page-intro {
  margin-top: 20px;
  max-width: 800px;
  font-family:"Lucida Sans","Trebuchet MS",sans-serif;
  padding-bottom: 10px;
  text-align:justify;
	font-size:16.8px;
	line-height:1.3em;
}

.page-posts {
  margin-top: 20px;
  max-width: 800px;
  font-family:"Lucida Sans","Trebuchet MS",sans-serif;
  padding-bottom: 10px;
  text-align:justify;
	font-size:16.8px;	
}

.post {
  margin-bottom: 0px;
  line-height: 20px;
  font-size:15.4px;
}

.post-content {
  margin-top:10px;
}

.post-content ul {
  margin-top: 10px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  line-height:20px;
}



/*---------------------------------------
    General               
-----------------------------------------*/



a {
  color: #4d638c; /*-- #4d638c; --*/
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none !important;
}

a:hover, a:active, a:focus {
  color: #4d638c;
  outline: none;
}

* {-webkit-font-smoothing: antialiased;}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*---------------------------------------
    Navbar             
-----------------------------------------*/


.navbar {
    background: #ffffff;
    border: none;
    margin-top: 5px;
    margin-bottom: 0px;
    margin-right: 0px;
    padding-top: 5px;
    padding-right: 0px;
    padding-bottom: 5px;
    text-align: center;
}

.navbar .navbar-brand {
  text-align: center;
  padding-top: 5px;
  padding-left: 20px;
  letter-spacing: 1px;
  font-size: 15px;
  color: #333;
}

.navbar .navbar-brand .fa {
  color: #333;
  font-size: 42px;
}

.navbar .navbar-nav li a {
  color: #777;
  font-size: 15px;
  letter-spacing: 1px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding-right: 0px;
  padding-left: 0px;
}

.navbar .navbar-nav > li a:hover {
  color: #333 ;
}

.navbar .navbar-nav li a:hover,
.navbar .navbar-nav .active > a {
    color: #333;
  }

.navbar-toggler {
  border: none;
  margin-right: -10px;
  padding-right: 0px;
  padding-top: 5px;
  padding-bottom: 5px;
  background: transparent;
}

.no-js .navbar-toggler {
  display: none !important;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0rem;
}

.navbar-toggler:hover {

  outline: 0;
  box-shadow: 0 0 0 0rem;
} 

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='1' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  transition: filter 0.3s ease-in-out;
  width:32px;
}

/* color: #c6c6c6 
  filter: invert(84%) sepia(9%) saturate(3%) hue-rotate(314deg) brightness(97%) contrast(82%);
*/


.navbar-toggler.collapsed .navbar-toggler-icon {
  filter: invert(18%) sepia(6%) saturate(10%) hue-rotate(343deg) brightness(97%) contrast(93%);
}

.navbar-toggler .navbar-toggler-icon {
  filter: invert(84%) sepia(9%) saturate(3%) hue-rotate(314deg) brightness(97%) contrast(82%);

}

@media (hover: hover) {
  .navbar-toggler:hover .navbar-toggler-icon {
    filter: invert(84%) sepia(9%) saturate(3%) hue-rotate(314deg) brightness(97%) contrast(82%);
  }
}


/*---------------------------------------- 
navbar no JS 
-----------------------------------------*/


.navbarnoJS{
  position: sticky;
  top: 0;
  background-color: #ffffff;
  color: #333;
}

.navbarnoJS-inner{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 4%;
}

.navbarnoJS-toggler,
.navbarnoJS-toggler-check{
  display: none;
}

.navbarnoJS-menu{
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.navbarnoJS-link{
  display: block;
  padding: .5rem 1.25rem;
  text-align: center;
  text-decoration: none;
  color: #777;
  transition: color .15s;
}

.navbarnoJS-link:hover{
  color: #333;
}

.navbarnoJS-link-active{
  color: #333;
  pointer-events: none;
}


@media only screen and (max-width:1024px) {
  .navbarnoJS-menu{
     gap: .5rem;
  }

}

@media only screen and (max-width:767px) {
  
  
  .navbarnoJS-menu{
     position: absolute;
     top: -100vh;
     left: 0;
     width: 100%;
     flex-direction: column;
     padding: .5rem 4% 1rem;
     background-color: #ffffff;
     transition: top .5s;
  }

  .navbarnoJS-toggler{
     display: block;
     font-size: 1px;
  }

  .navbarnoJS-toggler-check:checked + .navbarnoJS-menu{
     top: 64px;
  }
}

@media (min-width: 768px) {
  .navbarnoJS {
    display: none;
  }
}

/*---------------------------------------
    Home section              
-----------------------------------------*/

#home {
    background-size: cover;
    background-position: center center;
    display: -webkit-box;
    display: -webkit-flex;
     display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
     align-items: center;
    position: relative;
    text-align: left;
    padding-top: 0px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

/*---------------------------------------
   Other             
-----------------------------------------*/

span.nonne b {
  display: none;
}


.banner {
  position: relative;
  max-width: 800px;
  left: -100px;
  top: 15px;
  z-index:0;
  margin-top: 10px;
}

.banner-noJS {
  z-index: -1;
}

@media (max-width: 991px) {
  .banner {
    left:0px;
  }
}

.ontop {
  position: relative;
  top: -20px;
}

@media (max-width: 575px) {
  .ontop {
    top:0px;
    left:0px;
  }
}


ul {
  padding-inline-start: 40px;
}
  
.img-scale {
  padding-right: 10px;
  padding-bottom: 10px;
  max-width: 300px;
  width: 100%;
  height: auto;
}

/*----------------------
Responsive
----------------------*/


@media (max-width: 767px) {

  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 15.4px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    color: #666;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 2px;
  }

  h5 {
    letter-spacing: 0px;
    font-size: 14px;
  }
  
  h6 {
    font-size: 10px;
  }

  .page-intro {
    font-size: 15px;
  }

  .post {
    font-size: 14px;
    line-height: 16px;
  }

  .post ul {
    line-height: 17.4px;
  }
  
}
