@charset "utf-8";
/* CSS Document */
/* COVID-19 CUSTOM CSS */
/* Must be loaded after Bootstrap CSS for overrides to work */

/*
CONTENTS
1. RESET
2. FONTS AN TYPOGRAPHY
3. NAVBAR
4. COLORS
5. BUTTONS
6. part WRAPPERS
7. CARDS
8. ACCORDION
9. RESOURCES
10. MEDIA QUERIES
*/

/* RESET */
html,
body {
	scroll-behavior: smooth;
	padding: 0;
	margin: 0;
	font-family: 'Public Sans', sans-serif;
	color: #000000;
	/*Reset base font size*/
	font-size: 16px;
	overflow-x: hidden;
}




/* FONTS AND TYPOGRAPHY */


h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.1;

}

h1 {
	letter-spacing: -0.05rem;
}

.page-title {}

h2 {}

h3 {}

h4 {}

h5 {}

p {
	line-height: 1.5rem;

}

a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:active {
  text-decoration: underline;
}
a {
	color: #1266AC;
	cursor: pointer;
}

.text-white a {
	text-decoration: underline;
	color: #ffffff;
}

.text-white a:hover {
	text-decoration: none;
}

p a:hover {}

ul {
    padding-inline-start: 20px;
}

ul li {
    margin: 0.5rem 0rem;
}

.columncontrol {
	max-width: 1200px;
	margin: auto;
}


.breadcrumb {
	font-size: 0.75rem;
	background: none;
	padding-left: 0;
	padding-right: 0;
	text-align: left;
}

.alert {
	color: #000000;
	padding-top: 2rem;
	background-color: #FFECB3;
	border-left: 10px solid #FBAB18;
}
.alert-blue {
    color: #000;
    padding-top: 2rem;
    background-color: #f1f3f5;
    border-left: 10px solid #1266ac;
}

.alert ol li {
	padding: 0px;
}

.alert a {
	text-decoration: none;
}

.alert a:hover {
	text-decoration: underline;
}

/* NAVBAR */

.navbar {
	-webkit-box-shadow: 0px 3px 60px 0px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: 0px 3px 60px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 3px 60px 0px rgba(0, 0, 0, 0.08);
	padding: 0.25rem 1.5rem;
}

.navbar a {
	color: #000000;
}

.navbar-brand img {
	max-width: 115px;
}

/* COLORS */
.red {
	color: #770D29;
}

.orange {
	color: #CF6023;
}

.yellow {
	color: rgba(248, 163, 27, 1);
}

.green {
	color: #28A745;
}

.blue {
	color: #1266AC;
}

.purple {
	color: #564D65;
}

/* BUTTONS */
.btn {
	padding-right: 1.5rem;
	padding-left: 1.5em;
}

/* Button primary */
.btn-primary {
	background-color: #1266AC;
	border: 3px solid #1266AC;
	color: #fff;
}

.btn-primary:hover {
	color: #fff;
}

/* SPANS FOR COUNTER */

span-number-1 {
  position: relative;
  display: inline-block;
  width: 1em;
  padding: 0.1em 0;
  background: rgb(67,170,139);
  border-radius: 10px;
  font-size: 1.5em;
 font-weight: bold;
  color: white;
  text-align: center;
}
span-number-2 {
  position: relative;
  display: inline-block;
  width: 1em;
  padding: 0.1em 0;
  background-color: rgb(18,102,172);
  border-radius: 10px;
  font-size: 1.5em;
 font-weight: bold;
  color: white;
  text-align: center;
}

span-number::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.2em;
  right: 0.2em;
}

/* DETAILS SUMMARY */

details {
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: .5em .5em 0;
    background-color: #f1f3f5;
    border-left: 10px solid #1266ac;
    margin: 1em 0;
}

summary {
    font-weight: bold;
    margin: -.5em -.5em 0;
    padding: .5em;
}

details[open] {
    padding: .5em;
}

details[open] summary {
    border-bottom: 1px solid #aaa;
    margin-bottom: .5em;
}



/* MEDIA QUERIES */

/* EXTRA SMALL DEVICES */
/*(portrait phones, less than 576px) */
/* No media query since this is the default in Bootstrap */

/* SMALL DEVICES */
/*(landscape phones, 576px and up) */
@media (min-width: 546px) {}

/* MEDIUM DEVICES */
/*(Tablets, 768px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 768px) {

    html, body {
        font-size: 18px;
    }


}

/* LARGE DEVICES */
/*(Desktops, 992px and up) */
@media (min-width: 992px) {
	.page-title {
		font-size: 60px;
	}

	.page-description {
		max-width: 620px;
	}
}

/* XLARGE DEVICES */
/*(Large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* XXLARGE DEVICES */
/*(Large desktops, 1440px and up) */
@media (min-width: 1440px) {}