*, *::before, *::after {
    box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #222;
	text-align: left;
	background-color: #fff;		
	}
	
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

h1, .h1 {
    font-size: 2.5rem;
}

h2, .h2 {
    font-size: 2rem;
	margin-top: 1.5rem;
}

h3, .h3 {
    font-size: 1.25rem;
	margin-top: 1rem;
}

h1, h2, h3 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    margin-bottom: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.text-i {
    font-style: italic;
}


a {
    color: #2876ba;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
  color: #1F8EF1;
  text-decoration: underline;
}

ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}


.container, .container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
	height: 56px;
}

.fixed-bottom {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1030;
	height: 56px;
}

.navbar{
	display: flex;
    justify-content: flex-start;    
    align-items: center;
	background: #FFF;
}

.footbar{
	display: flex;
    justify-content: flex-end;    
    align-items: center;
	background: #F5F5F5;
}

.text-muted {
    color: #6c757d;
}		
	
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%) !important;
}

.mt-auto {
    margin-top: auto !important;
}

.mt-1-5 {
    margin-top: 1.5rem;
}

.mb-0 {
    margin-bottom: 0;
}

.main {
    padding-top: 56px;
	padding-bottom: 56px;
    margin-bottom: 56px;
}

img {
    vertical-align: middle;
    border-style: none;
}

.logo {
    width: 136px;
}

/* ---------------------- media ------------------------- */	

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }

}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (max-width: 1200px) {
	h1 {
		font-size: calc(1.425rem + 2.1vw);
	}
	h2 {
		font-size: calc(1.325rem + .9vw);
	}
	h3 {
		font-size: calc(1.125rem + .5vw);
	}
}

@media (max-width: 576px) {
	.navbar{
		justify-content: center;  
	}
	.footbar{
		justify-content: center;  
	}
	body {
		line-height: 1.4;	
	}	
}