


hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.hidden,
[hidden] {
    display: none !important;
}

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.sr-only.focusable:active,
.sr-only.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}

.invisible {
    visibility: hidden;
}

.clearfix::before,
.clearfix::after {
    content: " ";
    display: table;
}

.clearfix::after {
    clear: both;
}

@media print {
    *,
    *::before,
    *::after {
        background: #fff !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* Calculator Styles */
.calc {
    max-width: 768px;
    padding: 0 6px;
    margin: 6px auto;
}

.calc__desc {
    opacity: 0.7;
}

.question__one {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin: 1em 0;
    transition: display 5s ease;
}

ul ul {
    margin: 0;
    list-style: circle;
}

.button-group-container {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 1em 0;
}

.button-group {
    width: 100%;
    max-width: 400px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -ms-flexbox;
    display: flex;
}

.button-group .button {
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-grow: 1;
    padding: 10px;
    text-align: center;
    transition: all 0.15s ease;
    color: #555;
    border: 1px solid #c0c0c0;
    background-color: #f0f0f0;
    cursor: pointer;
}

.button-group .button:first-child {
    border-radius: 4px 0 0 4px;
}

.button-group .button:not(:last-child) {
    border-right: none;
}

.button-group .button:last-child {
    border-radius: 0 4px 4px 0;
}

.button-group .button:hover {
    background-color: #ddd;
}

.button-group .button.is-selected {
    color: #fff;
    font-weight: 600;
    background-color: #1bb193;
}

.button__points {
    padding-left: 6px;
    opacity: 0.7;
}

.results_second {
    position: relative;
    min-height: 100px;
    padding: 10px 30px;
    margin: 1em auto;
    color: #000;
    background-color: #d2edfd;
    z-index: 1000;
}

.result_second {
    opacity: 1;
    transition: opacity .15s ease;
}

.result_second.hidden {
    display: block !important;
    opacity: 0;
}

.result__title {
    font-size: 1.5em;
    padding: 10px 0;
    margin: 0;
}

.result__desc {
    margin: 0;
    padding: 10px 0;
}

.loader-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.loader {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    border-top: 3px solid #fff;
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.checkbox-list {
    list-style: none;
    padding-left: 0;
}

.checkbox-list__item {
    display: flex;
    padding: 10px 6px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

.checkbox-list__item:first-child {
    border-top: 1px solid #ccc;
}

.checkbox-list__item:hover {
    background-color: #fafafa;
}

.checkbox-list__item .checkbox {
    display: inline-block;
    min-width: 34px;
    min-height: 34px;
    width: 34px;
    height: 34px;
    margin-right: 6px;
    border: 1px solid #bbb;
    border-radius: 2px;
    background-image: url("../img/done-gray.svg");
    background-size: contain;
    background-color: #eee;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.checkbox-list__item:hover .checkbox {
    background-image: url("../img/done-green.svg");
    background-color: #ddd;
}

.checkbox-list__item .checkbox.is-selected {
    background-image: url("../img/done-white.svg");
    background-color: #1bb193;
    border-color: #117d67;
}

.label__wrapper {
    display: flex;
    align-items: center;
}

body {
	font-family: "Open Sans", sans-serif;
	margin: 0;
	padding: 0rem;
}

article {
	max-width: 70rem;
	margin: 0 auto;
	border: 0.05rem solid lightgrey;
	padding: clamp(1rem, 2vw, 3rem);
	border-radius: 0.5rem;
	font-size: 26px;
}

h1, dl {
	margin: 0;
}

article > * + * {
	margin-top: 1rem;
}

dl {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 100rem), 1fr));
	gap: 1rem;
}

dl > div {
	background: antiquewhite;
	padding: 1rem;
}

dl > div:nth-child(4n - 2) {
	background: lavenderblush;
}

dl > div:nth-child(4n - 1) {
	background: azure;
}

dl > div:nth-child(4n) {
	background: lavender;
}

dt {
	font-weight: 700;
	font-size: 1.3rem;
}

dd {
	margin: 0;
	font-size: 1.25rem;
}
		
		.gi-button {
  display: inline-block;
  padding: 15px 70px;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  background-color: #141414;
  border: none;
  border-radius: 4px;
  cursor: pointer;
			margin-left: 14%;
			height:30%;
	width:30%;
			margin-top: 10px;
   
	
			
}

.gi-button:hover {
  background-color: #fff;
	color: #000;
}

.gi-button:active {
  background-color: #fff;
	color: #000;
}

			.result {
  display: inline-block;
  padding: 10px 20px;
  font-size: 26px;
  font-weight: bold;
  color: #000;
  background-color: #d2edfd;
  border: none;
  border-radius: 4px;
  cursor: pointer;
 margin-top: 10px;
			
				
}
				.result1 {
  display: inline-block;
  padding: 10px 20px;
  font-size: 26px;
  font-weight: bold;
  color: #000;
  background-color: #F1F1F1;
  border: none;
  border-radius: 4px;
  cursor: pointer;
 margin-top: 10px;
		}
	

@media only screen and (max-width: 767px) {
  #content {
    font-size: 26px;
	  
  }
}
footer {
  text-align: center;
  padding: 3px;
  background-color: DarkSalmon;
  color: white;
}

		



.header {
  overflow: hidden;
  background-color: #f1f1f1;
  padding: 20px 10px;
}

.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
}

.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

.header a:hover {
  background-color: #ddd;
  color: black;
}

.header a.active {
  background-color: #255daa;
  color: white;
	font-weight: bold;
}

.header-right {
  float: right;
}

@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  
  .header-right {
    float: none;
  }
	.location {
		
	}
	
	
	
	
	}
	

	}
}