@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

html {
  height: 100%;
}

body {
  margin: 0;
  background-image: url("../img/bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
  background-color: white;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

p {
  font-size: 14px;
  text-align: justify;
}

a {
  font-size: 14px;
}

a.underlined {
  text-decoration: underline;
  font-weight: bold;
}

h3:not(.left) {
  text-align: center;
}

h3.left {
  margin-bottom: 0;
}

h3 a {
  font-size: unset;;
}

.card-pf {
  background: #fff;
  padding: 20px;
  margin-right: 10px;
  border: 2px solid #ccc;
  border-radius: 7px;
  text-align: left;
  max-width: 500px;
}

.centered {
  margin: 3em auto;
}

.h-l {
	min-height: 320px;
	min-width:  290px;
	overflow: hidden;
}

.img-title {
  margin: 10px 0;
}

img.doc-img {
  width: auto;
  height: 31px;
  margin-right: 10px; 
  vertical-align: middle;
}

.topnav {
  overflow: hidden;
  background-color: #fff;
  padding: 10px;
}

.topnav a {
  float: left;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  outline: none;
}

.topnav a:hover {
  cursor: pointer;
}

.topnav a.orange-txt {
  color: #f16e00;
}

.topnav-right {
  float: right;
}

h1 {
  font-size: 24px;
  margin-top: 0;
}

h2 {
  margin-top: 2em;;
  text-align: center;
}

h4 {
  text-align: left;
  font-weight: 550;
  margin: 10px 0;
  font-size: 15px;
}

.pinline {
  display: inline;
}

table {
  margin-left: auto;
  margin-right: auto;
  background-color: white;
}

td {
  text-align: center;
  font-size: 13.33px;
  border-bottom: 1px lightgrey solid;
  padding: 14px 16px;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  color: #f16e00;
}

/* a:active {
  background-color: #f16e00;
} */

a:visited{
	color: black;
}

a.inactive2 {
	color: #BFBFBF;
}

td:hover {
  background-color: #f16e00;
}

td:hover a {
  color: white;
}

.rightDiv {        
  float: right;
}

.leftDiv {     
  float: left;
}

#other {
  max-width: 350px;
 
  padding: 20px;
  border-radius: 1px;
 
  vertical-align: top;
}

.container {
  text-align: center;
  padding: 1px; 
  /* border-style: solid;
  border-width: 1px;
  border-color: red; */
}

.left-div {
  display: inline-block;
  float: center;
  /* border-style: solid;
  border-width: 1px;
  border-color: #ddd; */
  /* background-color: #ddd; */
  margin: 10px;
  margin-top: 3em;
  vertical-align: top;
}

.right-div {
  display: inline-block;
  float: center;
  /* background-color: #ddd; */
  margin: 10px;
  margin-top: 3em;
  /* border-style: solid;
  border-width: 1px;
  border-color: #ddd; */
}


.left-text, .right-text {
	color: #333;
}

.tab {
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  float: center;
  background-color: #ffffff
}

.tab button {
  background-color: inherit;
  float: center;
  border: none;
  margin: 0 0px;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  color: #000000
}

.tab button:hover {
  background-color: #ff822f;
  color: #fff;
  border-radius: 0px;
}

.tab button.active {
  background-color: #f60;
  color: #fff;
  border-radius: 0px;
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 0;
  border-top: none
}

nav.vertical {
  position: relative;
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 13.33px;
}

nav.vertical ul {
  list-style: none;
}

nav.vertical li {
  position: relative;
  border: 1px #ccc solid;
  border-radius: 5px;
  margin-bottom: 5px;
  font-weight: bold;
}

nav.vertical a, 
nav.vertical span {
  display: block;
  color: #000;
  text-decoration: none;
  padding: 12px 14px;
  transition: 0.2s;
  font-size: 14px;
}

nav.vertical li:hover {
  border-color: #ff7900;
}

nav.vertical li:hover > a {
  cursor: pointer;
}

nav.vertical li:hover > span {
  cursor: default;
}

nav.vertical ul {
  padding: 0;
}

nav.vertical ul ul {
  /* background: #fff; */
  transition: max-height 0.2s ease-out;
  max-height: 0;
  overflow: hidden;
}

nav.vertical li:hover > ul {
  max-height: 500px;
  transition: max-height 0.25s ease-in;
}

hr {
  border: 1px solid #eee;
  margin: 20px 0;
}

.orange-bg {
  background: #f16e00;
  color: #fff !important;
}

nav.vertical li:has(.orange-bg) {
  border-color: #f16e00;
}

nav.vertical li:has(.orange-bg):hover {
  border-color: #ff7900;
}

.orange-bg:hover {
  background: #ff7900;
}

ul.dots { /* the custom styled bullets */
	list-style-type: none;
  margin: 0;
  padding: 0;
}

ul.dots li:before { /* the custom styled bullets */
	background-color: #ff7900;
	border-radius: 50%;
	content: "";
	display: block;
	height: 7px;
	width: 7px;
  position: relative;
  top: 22px;
}

ul.dots li h4:first-of-type,
ul.dots li:not(:has(h4)) p:first-of-type {
  padding-left: 20px;
}

.contains-img {
  border: 2px solid #ccc;
  border-radius: 7px;
}

.contains-img img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(90vw - 70px);
}

.mt-10 {
  margin-top: 10px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-10 {
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .left-div, .right-div {
    max-width: 100%;
  }
}

@media (max-width: 767px){
  body {
    background-color: #fff;
    background-image: none;
  }

  nav.vertical ul ul {
    position: relative;
  }

  .card-pf:not(.h-l) {
    border: 0;
    max-width: unset;
  }

  .right-div,
  .left-div {
    margin-top: 10px;
  }

  .centered {
    margin: 0 auto;
  }
}