/*   ----- GENERAL -----   */
html {
  position: relative;
  min-height: 100%;
}

body {
  margin: 0px;
  min-width: 300px;
  margin-bottom: 100px;
  font-size: 16px;
}

main {
  font-family: arial;
  word-wrap: break-word;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

hr {
  border: 0;
  border-top: 2px solid #DADADA;
}

h1 {
  font-size: 35px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 22px;
}

.box_center {
  margin-right: auto;
  margin-left: auto;
}

.text_center {
  text-align: center;
}

.text_underline {
  text-decoration: underline;
}

.text_bold {
  font-weight: bold;
}

.text_italic {
  font-style: italic;
}

.panel {
  background-color: #F7F7F7;
}

.m1 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.m2 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.m3 {
  margin-top: 60px;
  margin-bottom: 60px;
}

/*   ----- RESET -----   */
input, button, textarea {
  -webkit-appearance: none !important;
  border-radius: 0 !important;
  outline: 0px;
}

/*   ----- MISCELLANEOUS -----   */
.parent {
  display: flex;
  /*flex-direction:row-reverse;*/
}

.sect_majority {
  /*float:left;*/
}

.sect_leftimg {
  /*float:right;*/
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .parent {
    display: block;
  }
}
/* --- Component - Link */
a.link {
  text-decoration: underline;
  color: #646464;
  cursor: pointer;
}

a.link:hover {
  color: #00A8DB;
}

/* --- Component - Table */
table.table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 20px;
  overflow-x: auto;
  max-width: 100%;
  display: block;
}

table.table th {
  padding: 8px;
  text-align: left;
  border: 1px solid #dfe2e5;
}

table.table tr:nth-child(odd) {
  background-color: #f2f2f2;
}

table.table td {
  padding: 8px;
  padding-right: 30px;
  border: 1px solid #dfe2e5;
}

table.table.noborder td, table.table.noborder th {
  border: 0;
}

table.table.notstriped tr:not(:first-child) {
  background-color: #ffffff;
}

table.table.theme-blue th {
  background-color: #3f75b5;
  border: 1px solid #336290;
  color: white;
}

/* --- Component - Code */
code.code {
  background-color: #f3f3f3;
  border-radius: 3px;
  padding: 5px;
  display: inline-block;
}

pre.code {
  border: 1px solid #dadada;
  padding: 10px;
  display: inline-block;
}

/* --- Component - Form */
/* --- Component - Button */
.button {
  border: 1px solid #D8D8D8;
  background-color: #E6E6E6;
  color: #151515;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  font-size: 18px;
  padding: 4px 10px 4px 10px;
  margin: 2px;
}

.button:hover {
  background-color: #D8D8D8;
}

.button:active {
  color: #515151;
  background-color: #D8D8D8;
  box-shadow: inset 0px 2px 3px 2px #C4C4C4;
}

.button.grand {
  background-color: #86A7D0;
  color: #ffffff;
  font-weight: bold;
  border: 1px solid #1a5992;
  box-shadow: inset 0 1px 1px #D5D8F2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.button.grand:hover {
  background-color: #7FACE4;
}

.button.grand:active {
  background-color: #7A96B7;
  box-shadow: inset 0px 1px 1px 1px #4D6889;
}

.button.grand.theme-grey {
  background-color: #adb0b3;
  box-shadow: inset 0 1px 1px #DEDEE3;
  border-color: #5E5F5F;
}

.button.grand.theme-grey:hover {
  background-color: #b9b8b8;
}

.button.grand.theme-grey:active {
  background-color: #a0a0a0;
  box-shadow: inset 0 1px 1px #424242;
  border-color: #6f6f6f;
}

.button.grand.theme-green {
  background-color: #98c58d;
  box-shadow: inset 0 1px 1px #DEDEE3;
  border-color: #057b47;
}

.button.grand.theme-green:hover {
  background-color: #86c575;
}

.button.grand.theme-green:active {
  background-color: #74ad80;
  box-shadow: inset 0 1px 1px #266530;
  border-color: #6f6f6f;
}

.button.grand.theme-orange {
  background-color: #e8b557;
  box-shadow: inset 0 1px 1px #DEDEE3;
  border-color: #6b6044;
}

.button.grand.theme-orange:hover {
  background-color: #f3bc56;
}

.button.grand.theme-orange:active {
  background-color: #d4a946;
  box-shadow: inset 0 1px 1px #73603a;
  border-color: #735314;
}

.button.small {
  font-size: 14px;
  padding: 4px 8px 4px 8px;
}

.button.medium {
  font-size: 18px;
  padding: 4px 10px 4px 10px;
}

.button.large {
  font-size: 22px;
  padding: 4px 14px 4px 14px;
}

/* --- Component - Textbox */
.textbox {
  background-color: #F5F5F5;
  border: #D8D8D8 1px solid;
  padding-left: 5px;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-right: 5px;
  height: 26px;
  font-size: 16pt;
}

.textbox:focus {
  box-shadow: inset 0px 1px 2px 1px lightgrey;
}

/*   ----- HEADER -----   */
#noscript {
  background-color: #E54F4F;
  font-family: arial;
  padding: 10px;
}

#noscript_title {
  font-size: 1.3em;
  font-weight: bold;
}

#header_title {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  background-color: #E6E6E6;
  border-bottom: 1px solid grey;
  height: 40px;
}

#header_text {
  font-family: Arial;
  font-size: 28px;
  display: inline-block;
  width: calc(100% - 180px);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

#header_logo {
  margin-right: 25px;
  margin-top: 3px;
  float: right;
}

#header_logo img {
  width: 100%;
  max-width: 150px;
}

#header_navigation {
  padding-top: 1px;
  padding-bottom: 1px;
  background-color: #F1F1F1;
  min-height: 33px;
  border-bottom: 1px solid grey;
  overflow: hidden;
}

#header_navigation nav {
  margin: 0px;
}

#header_navigation nav ul {
  margin: 0px;
  padding: 0px;
  overflow: hidden;
}

#header_navigation nav ul li {
  list-style: none;
  float: left;
  color: #5A5A5A;
  font-family: arial;
  text-align: center;
  display: inline-block;
  width: 20%;
  font-size: 16pt;
  height: 33px;
  text-decoration: none;
  outline: 0;
  border: 0;
}

#header nav ul li:hover {
  color: #00A9D3;
  cursor: pointer;
  background-color: #DBDBDB;
}

#header_navigation nav ul li a {
  font-family: arial;
  text-decoration: none;
  color: #5A5A5A;
  display: inline-block;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 4px;
}

#header_navigation nav ul li a:hover {
  color: #00A9D3;
}

#menu_button {
  font-size: 18pt;
  margin-right: 10px;
  width: 25px;
  height: 25px;
  display: none;
  color: black;
  text-decoration: none;
  padding: 5px;
  outline: 0;
  border: 0;
}

#menu_button:hover {
  cursor: pointer;
  color: #00A9D3;
}

.menu-icon {
  margin: 0;
  margin-top: 3px;
  display: inline-block;
  top: 0;
  left: 0;
}

.menu-icon span {
  width: 25px;
  background-color: grey;
  height: 2px;
  display: block;
  margin-bottom: 5px;
}

.menu-icon span:last-child {
  margin-bottom: 0px;
}

.responsive {
  display: block !important;
}

.responsive ul li {
  width: 100% !important;
}

@media screen and (max-width: 600px) {
  #header_navigation nav {
    display: none;
  }

  #menu_button {
    float: right;
    display: block;
  }
}
@media (max-width: 450px) {
  #header_text {
    display: none;
  }
}
/*   ----- FOOTER -----   */
#footer {
  background-color: #E6E6E6;
  border-top: 2px groove #F2F2F2;
  font-family: verdana;
  font-size: 17px;
  padding-bottom: 10px;
  padding-top: 10px;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-width: 300px;
}

#footer_bottom {
  margin-left: 30px;
  margin-right: 30px;
}

#footer_copyright {
  display: inline-block;
}

#footer_links {
  float: right;
  display: inline-block;
  text-align: right;
  word-spacing: 15px;
}

#footer_links a {
  color: black;
  text-decoration: none;
}

#footer_links a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 650px) {
  #footer_copyright {
    text-align: center;
    width: 100%;
  }

  #footer_links {
    margin-top: 10px;
    text-align: center;
    width: 100%;
  }
}
/* --- Framework - Header-Image */
.header-img {
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.header-color {
  height: 400px;
  position: relative;
}

.header-img .hero-text, .header-color .hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  line-height: normal;
}

.header-img .hero-text h1, .header-color .hero-text h1 {
  font-size: 1.8em;
  line-height: normal;
  margin-top: 0px;
  margin-bottom: 0.5em;
}

.header-low {
  height: 250px;
}

@media screen and (max-width: 900px) {
  .header-resize {
    height: 300px;
  }

  .header-resize.header-low {
    height: 225px;
  }

  .header-img .hero-text, .header-color .hero-text {
    width: 90%;
  }
}
@media screen and (max-width: 450px) {
  .header-resize {
    height: 200px;
  }

  .header-resize.header-low {
    height: 200px;
  }

  .header-img .hero-text h1, .header-color .hero-text h1 {
    font-size: 1.6em;
  }

  .header-img .hero-text, .header-color .hero-text {
    font-size: 20px;
  }
}
/* --- Framework - Section */
.dynamic-section {
  max-width: 80%;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.plain-section {
  margin: auto;
  padding: 0px 10px 0px 10px;
  min-width: 280px;
  max-width: 1000px;
}

.section {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 1000px;
}

@media (min-width: 1000px) {
  .section {
    padding-left: calc((100% - 1000px) / 2);
    padding-right: calc((100% - 1000px) / 2);
  }
}
section.p1 {
  padding-top: 20px;
  padding-bottom: 20px;
}

section.p1-top {
  padding-top: 20px;
}

section.p1-bottom {
  padding-bottom: 20px;
}

section.p2 {
  padding-top: 40px;
  padding-bottom: 40px;
}

section.p2-top {
  padding-top: 40px;
}

section.p2-bottom {
  padding-bottom: 40px;
}

section.p3 {
  padding-top: 60px;
  padding-bottom: 60px;
}

section.p3-top {
  padding-top: 60px;
}

section.p3-bottom {
  padding-bottom: 60px;
}

section.theme-white {
  background-color: #ffffff;
}

section.theme-lightgrey {
  background-color: #f3f3f3;
}

section.theme-grey {
  background-color: #dadada;
}

section.theme-darkgrey {
  background-color: #585858;
  color: #ffffff;
}

section.theme-black {
  background-color: #000000;
  color: #ffffff;
}

section.theme-light {
  background-color: #f3f3f3;
}

section.theme-light-2 {
  background-color: #ebecec;
}

section.theme-dark {
  background-color: #283b52;
  color: #ffffff;
}

section.theme-dark-2 {
  background-color: #1d2835;
  color: #ffffff;
}

section.theme-dark-3 {
  background-color: #171c1f;
  color: #ffffff;
}

section.smooth {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* --- Framework - Column */
.column-container {
  display: flex;
  flex-wrap: wrap;
}

.column {
  width: 50%;
  box-sizing: border-box;
}

@media (max-width: 800px) {
  .column-container:not(.small) .column {
    width: 100%;
  }

  .column-container:not(.small).reverse {
    flex-direction: column-reverse;
  }
}
@media (max-width: 600px) {
  .column-container.small .column {
    width: 100%;
  }

  .column-container.small.reverse {
    flex-direction: column-reverse;
  }
}
@media (max-width: 1000px) {
  .column-container.big .column {
    width: 100%;
  }

  .column-container.big.reverse {
    flex-direction: column-reverse;
  }
}
/* --- Framework - Box */
.box {
  margin: 10px;
  padding: 15px;
  border: 1px solid #d1d3d8;
  background-color: #f9f9f9;
}

.box.highlight:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 7px 30px 0px;
}

.box.shadow {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 5px 0px;
}

.box.shadow-soft {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 30px 3px;
}

.box.theme-white {
  background-color: #ffffff;
}

.box.theme-lightgrey {
  background-color: #f3f3f3;
}

.box.theme-grey {
  background-color: #dadada;
  border: 1px solid #c7c9ce;
}

.box.theme-grey:hover:not(.nohighlight):not(.static) {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 30px 0px;
}

.box.theme-darkgrey {
  background-color: #585858;
  color: white;
  border: 1px solid #404042;
}

.box.theme-darkgrey:hover:not(.nohighlight):not(.static) {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 7px 30px 0px;
}
