body {
  padding: 0;
  margin: 0;

  font-family: 'Roboto', sans-serif;
  color: #00529C;
}
select {
  font-family: 'Roboto', sans-serif;
}
select:focus {
  outline: none;
}
h2 {
  color: #12477A;
  margin: 0;
  padding: 0;
}
h3 {
  margin: 0;
  padding: 0;
  font-style: oblique;
  font-size: 16px;
  line-height: 1.5em;
}
p {
  font-size: 14px;
  line-height: 1.5em;
}
ul {
  font-size: 14px;
  line-height: 1.5em;
}
/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #00529c #ffffff;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #00529c;
    border-radius: 10px;
    border: 3px solid #ffffff;
  }
.wrapper {
  width: 1200px;
  margin: 0 auto;
  background: white;

  overflow: auto;
  min-height: 100vh;
}
.mobHeader {
  display: none;
}
.mobNavigation {
  display: none;
}
.header {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: auto;
}
.header .logo {
  height: 75px;
  float: left;
}
.header .contact {
  color: #00529C;
  float: right;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  height: 75px;
}
.header .contact .tel {
  font-size: 40px;
  font-weight: bold;
  text-decoration: none;
  color: inherit;
}
.header .contact .email {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  font-size: 22px;
}
.body {
  padding: 40px;
  overflow: auto;
}
.navigation {
  float: left;
  width: 300px;
}
.navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.navigation .nav {
  background: #00529C;
  color: white;
  height: 40px;
  line-height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
  margin-bottom: 5px;
  cursor: pointer;
}
.navigation .nav:hover {
  background: #12477A;
}
.active .nav {
  background: #12477A !important;
}
.navigation a {
  text-decoration: none;
  margin-bottom: 5px;
}
.navigation .selected {
  background: #12477A !important;
}
.content {
  float: right;
  width: calc(100% - 340px);
  overflow: auto;
}
.content .contentLeft {
  width: calc(100% - 340px);
  float: left;
}
.content .contentRight {
  width: 300px;
  float: right;
}
.callBox {
  color: white;
  background: #12477A;
  padding: 20px;
  font-size: 14px;
}
.fullImage {
  width: 100%;
}
.halfImage {
  width: 50%;
}
