/*############################## General settings ############################## */
body {
  color: rgb(0, 73, 99);
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, sans-serif;
  line-height: 35px;
  -webkit-text-size-adjust: auto;
     -moz-text-size-adjust: auto;
          text-size-adjust: auto;
  margin: 0 auto !important;
  padding: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
  width: 100vw;
}
body * *:after *:before {
  box-sizing: border-box;
}
body a {
  text-decoration: none;
}

strong {
  font-weight: 550;
}

.full_border {
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
  border: 3px solid rgb(0, 73, 99);
}

@media only screen and (max-width: 649px) {
  body {
    font-size: 18px;
  }
}
@media only screen and (min-width: 650px) and (max-width: 999px) {
  body {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1000px) {
  body {
    font-size: 20px;
  }
}
/*############################## Text marker => color ############################## */
::-moz-selection {
  background: rgb(135, 248, 174);
  color: rgb(0, 73, 99);
}

::selection {
  background: rgb(135, 248, 174);
  color: rgb(0, 73, 99);
}

/*############################## Rows and columns ############################## */
.row {
  width: inherit;
  margin: 0px;
  padding: 0px;
}

.row::after {
  content: "";
  clear: both;
  display: flex;
}

.page_title_row {
  padding-top: 10%;
}

.header_row {
  padding-top: 5%;
}

.header_row_small {
  padding-top: 2%;
}

.header_border_row {
  border-top: 2px solid rgb(235, 235, 235);
}

.bottom_space_row_small {
  padding-bottom: 2%;
}

.bottom_space_row {
  padding-bottom: 5%;
}

.bottom_space_row_big {
  padding-bottom: 10%;
}

.bottom_border_row {
  border-bottom: 2px solid rgb(235, 235, 235);
}

.colored_row_first {
  background-color: rgb(0, 121, 120);
}
.colored_row_first a {
  color: rgb(1, 165, 138) !important;
}
.colored_row_first .submit_button {
  background-color: rgb(0, 73, 99) !important;
  border-color: rgb(0, 73, 99) !important;
  font-size: 25px;
  height: 60px;
  width: 140px;
}
.colored_row_first input {
  border-color: rgb(0, 73, 99) !important;
}
.colored_row_first .submit_button:hover {
  background-color: rgb(1, 165, 138) !important;
}
.colored_row_first .submit_button:hover, .colored_row_first input:hover {
  border-color: rgb(1, 165, 138) !important;
}

.grey_row_first {
  background-color: rgb(235, 235, 235);
}
.grey_row_first a {
  color: rgb(1, 165, 138) !important;
}
.grey_row_first .submit_button {
  background-color: rgb(0, 73, 99) !important;
  border-color: rgb(0, 73, 99) !important;
  font-size: 25px;
  height: 60px;
  width: 140px;
}
.grey_row_first input {
  border-color: rgb(0, 73, 99) !important;
}
.grey_row_first .submit_button:hover {
  background-color: rgb(1, 165, 138) !important;
}
.grey_row_first .submit_button:hover, .grey_row_first input:hover {
  border-color: rgb(1, 165, 138) !important;
}

.colored_row_second {
  background-color: rgb(0, 73, 99);
}
.colored_row_second a {
  color: rgb(135, 248, 174) !important;
}
.colored_row_second .submit_button {
  background-color: rgb(1, 165, 138);
  border-color: rgb(1, 165, 138);
}
.colored_row_second input {
  border-color: rgb(1, 165, 138);
}

.two_columns {
  -moz-column-count: 2;
       column-count: 2;
}

.three_columns {
  -moz-column-count: 3;
       column-count: 3;
  padding-inline-start: 10px;
}

main [class*=col-], footer [class*=col-] {
  padding: 0px 20px;
}

@media only screen and (max-width: 649px) {
  .no_mobile {
    display: none;
  }
  main {
    display: block;
  }
  [class*=col-] {
    width: inherit;
  }
}
@media only screen and (min-width: 650px) and (max-width: 999px) {
  .row {
    display: flex;
  }
  .no_tablet {
    display: none;
  }
  .tablet_no_flex {
    display: block;
  }
  .col-s-0 {
    width: 0%;
  }
  .col-s-1 {
    width: 8.33%;
  }
  .col-s-2 {
    width: 16.66%;
  }
  .col-s-3 {
    width: 25%;
  }
  .col-s-4 {
    width: 33.33%;
  }
  .col-s-5 {
    width: 41.66%;
  }
  .col-s-6 {
    width: 50%;
  }
  .col-s-7 {
    width: 58.33%;
  }
  .col-s-8 {
    width: 66.66%;
  }
  .col-s-9 {
    width: 75%;
  }
  .col-s-10 {
    width: 83.33%;
  }
  .col-s-11 {
    width: 91.66%;
  }
  .col-s-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 1000px) {
  .row {
    display: flex;
    max-width: 1500px;
    justify-content: center;
    margin: auto;
  }
  .no_laptop {
    display: none;
  }
  .computer_flex {
    display: flex;
    width: 83.33%;
  }
  .two_columns {
    -moz-column-count: 2;
         column-count: 2;
  }
  .col-1 {
    width: 8.33%;
  }
  .col-2 {
    width: 16.66%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33%;
  }
  .col-11 {
    width: 91.66%;
  }
  .col-12 {
    width: 100%;
  }
}
/*############################## Input Forms ############################## */
main input, main textarea {
  border: 2px solid rgb(1, 165, 138);
  color: rgb(0, 73, 99);
  border-radius: 4px;
  padding: 0px;
  text-align: center;
}
main .input_form {
  text-align: left;
  padding: 0px 5px;
  width: 300px;
}
main .submit_button {
  background-color: rgb(1, 165, 138);
  color: white;
  border: 2px solid rgb(1, 165, 138);
  border-radius: 4px;
}
main .form_wrapper {
  color: rgb(255, 255, 255);
}
main .form_wrapper p {
  margin: 0px 0px 10px 0px;
}
main .form_wrapper_white {
  color: rgb(0, 73, 99);
}
main .form_wrapper_white p {
  margin: 0px 0px 10px 0px;
}
main input:hover, main .submit_button:hover {
  border: 2px solid rgb(0, 121, 120);
}
main .submit_button:hover {
  background-color: rgb(1, 165, 138);
}
main .error-message {
  color: red;
  font-size: 15px;
}

@media only screen and (max-width: 649px) {
  main input {
    height: 35px;
    width: 150px;
  }
  main .submit_button {
    height: 39px;
    width: 90px;
  }
}
@media only screen and (min-width: 650px) and (max-width: 999px) {
  main input {
    height: 35px;
    width: 150px;
  }
  main .submit_button {
    height: 39px;
    width: 90px;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1299px) {
  main input {
    height: 40px;
    width: 200px;
  }
  main .submit_button {
    height: 44px;
    width: 110px;
  }
}
@media only screen and (min-width: 1300px) {
  main input {
    height: 40px;
    width: 250px;
  }
  main .submit_button {
    height: 44px;
    width: 150px;
  }
}
#input_object_size, #input_cons_year, #input_object_quality, #input_post_code, #input_contact_data, #result {
  display: none;
}

.submit_button_big {
  font-size: 23px;
  height: 50px !important;
  width: auto !important;
}

/*############################## Input Forms new ############################## */
.input_form_wrapper {
  width: 80%;
  max-width: 350px;
  max-width: 400px;
  margin: auto;
  padding: 40px 0px;
}

.input_form_wrapper > .submit_button {
  margin-left: 20px;
}

#input_form {
  text-align: center;
  align-content: center;
}

#image_input {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0.2;
  -o-object-fit: cover;
     object-fit: cover;
}

.smallprint {
  margin: 0px;
  padding-top: 8px;
}
.smallprint a {
  line-height: 25px;
  font-size: 15px;
  color: white !important;
}

.input_button {
  display: block;
  border: 2px solid rgb(1, 165, 138);
  height: 40px;
  width: 300px;
  font-size: 20px;
  margin: 20px auto;
  border-radius: 4px;
  color: rgb(255, 255, 255);
  background-color: rgb(1, 165, 138);
  text-align: center;
}

.input_button:hover {
  background-color: rgb(0, 121, 120);
  border: 3px solid rgb(0, 121, 120);
}

.selected {
  opacity: 1;
}

.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: rgb(0, 73, 99);
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 0.8;
}

.step.finish {
  background-color: rgb(1, 165, 138);
  opacity: 1;
}

/*############################## quotes ############################## */
.quote {
  font-style: italic;
  color: rgb(0, 73, 99);
  font-weight: 500;
}

.highlight {
  position: relative;
  z-index: 1;
  color: rgb(255, 255, 255);
}

.highlight ::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -55px;
  right: -25px;
  background-color: rgb(0, 121, 120);
  transform: skew(20deg);
  z-index: -1;
}

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

.ul_list_row .bold {
  color: rgb(1, 165, 138);
  font-weight: 600;
}

.ul_list_row li {
  position: relative;
  padding-bottom: 10px;
}

/*############################## hyperlinks ############################## */
a {
  color: rgb(1, 165, 138);
}

a:hover {
  opacity: 70%;
}

/*############################## Images and Icons ############################## */
.image_frame {
  position: relative;
  margin: 20px 0px;
}

.vertical_align {
  margin: auto;
  vertical-align: middle;
}

img {
  width: 100%;
}

.image {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.post_img {
  padding: 15px 15px 15px 0px;
  float: left;
  width: 100%;
}

@media only screen and (max-width: 649px) {
  .post_img {
    width: 100%;
  }
}
.icon {
  height: 35px;
  width: auto;
}

/*############################## Header ############################## */
h1, h2, h4, h5 {
  color: rgb(0, 73, 99);
}

h3 {
  color: rgb(0, 121, 120);
  margin: 0px;
  font-size: 18px;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

h1 {
  padding: 2% 0% 5% 0%;
}

h4, h5 {
  margin-top: 0px;
}

.highlight_h4 {
  padding-top: 15px;
  font-size: 32px !important;
}

.colored_row_first h1, .colored_row_first h2, .colored_row_first h3, .colored_row_first h4, .colored_row_first h5, .colored_row_first p, .colored_row_second h1, .colored_row_second h2, .colored_row_second h3, .colored_row_second h4, .colored_row_second h5, .colored_row_second p {
  color: rgb(255, 255, 255);
}
.colored_row_first p, .colored_row_second p {
  font-size: 19px;
}
.colored_row_first a, .colored_row_second a {
  color: rgb(40, 134, 62);
}
.colored_row_first .factsheet p, .colored_row_second .factsheet p {
  color: rgb(0, 73, 99);
}

.white_row_first h1, .white_row_first h2, .white_row_first h3, .white_row_first h4, .white_row_first h5, .white_row_first p, .white_row_second h1, .white_row_second h2, .white_row_second h3, .white_row_second h4, .white_row_second h5, .white_row_second p {
  color: rgb(0, 73, 99);
}
.white_row_first p, .white_row_second p {
  font-size: 19px;
}
.white_row_first a, .white_row_second a {
  color: rgb(40, 134, 62);
}
.white_row_first .factsheet p, .white_row_second .factsheet p {
  color: rgb(0, 73, 99);
}

@media only screen and (max-width: 649px) {
  h1, h2 {
    font-size: 25px;
    line-height: 35px;
  }
}
@media only screen and (min-width: 650px) and (max-width: 999px) {
  h1, h2 {
    font-size: 32px;
    line-height: 45px;
  }
}
@media only screen and (min-width: 1000px) {
  h1, h2 {
    font-size: 32px;
    line-height: 45px;
  }
}
/*############################## Style the navigation menu ############################## */
nav img {
  height: 60px;
  padding-left: 10px;
  margin: auto auto auto 0px;
}
nav a {
  text-decoration: none;
}
nav .navbar_logo_container {
  -o-object-fit: cover;
     object-fit: cover;
  width: 350px;
  margin-right: auto;
  padding-right: auto;
}
nav .navbar_logo_container .logo_wrapper {
  height: inheret;
  width: auto;
  vertical-align: middle;
  margin: auto 0px;
}

@media only screen and (max-width: 649px) {
  .laptop-nav-container {
    display: none;
  }
}
@media only screen and (max-width: 999px) {
  .laptop-nav-container {
    display: none;
  }
  .mobile-nav-container {
    box-sizing: border-box;
    width: 100%;
    margin: auto;
  }
  .topnav_mobile {
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    background-color: rgb(0, 73, 99);
    color: rgb(255, 255, 255);
    padding: 0px;
    width: inherit;
  }
  .topnav_mobile a {
    display: block;
    color: rgb(255, 255, 255);
  }
  .topnav_mobile p {
    margin: 0;
  }
  .topnav_mobile h4, .topnav_mobile h5 {
    font-size: 20px;
    margin: 0;
    color: rgb(255, 255, 255);
  }
  .topnav_mobile #myLinks {
    border-top: 1px solid rgb(235, 235, 235);
    display: none;
  }
  .topnav_mobile #myLinks a {
    padding-left: 10px;
  }
  .topnav_mobile a.icon {
    background: rgb(0, 73, 99);
    display: block;
    position: absolute;
    right: 15px;
    top: 17px;
    font-size: 30px;
  }
  .topnav_mobile a:hover, .topnav_mobile a.active {
    color: rgb(135, 248, 174);
  }
}
@media only screen and (min-width: 1000px) {
  .row {
    max-width: 1500px;
  }
  .nav_no_display_laptop {
    display: none;
  }
  .laptop-nav-container {
    display: block;
  }
  .mobile-nav-container {
    display: none;
  }
  .topnav_laptop {
    padding: 0px 30px;
    border-bottom: 2px solid rgb(235, 235, 235);
    display: flex;
  }
  .topnav_laptop h4, .topnav_laptop a {
    font-size: 18px;
    color: rgb(0, 73, 99);
    font-weight: 700;
    height: 24px;
    line-height: 24px;
    padding: 0px;
    margin: 0px;
    vertical-align: middle;
    margin: auto;
  }
  .topnav_laptop h4:hover, .topnav_laptop a:hover {
    color: rgb(1, 165, 138);
  }
  .topnav_laptop input {
    border: 2px solid rgb(0, 73, 99);
    height: 28px;
    border-radius: 4px;
    color: rgb(0, 73, 99);
    text-align: center;
  }
  .topnav_laptop input:hover, .topnav_laptop input:active, .topnav_laptop input:focus-visible {
    border: 2px solid rgb(1, 165, 138);
  }
  .topnav_laptop .nav_bar {
    display: flex;
    justify-content: space-between;
    width: 93%;
  }
  .topnav_laptop .navbar_title {
    vertical-align: middle;
    margin: auto 0px;
  }
  .topnav_laptop .navbar_right, .topnav_laptop input {
    width: inherit;
    vertical-align: middle;
    margin: auto 10px auto auto;
  }
  .topnav_laptop .navbar_right a, .topnav_laptop input a {
    float: right;
    padding: 0px 8px;
  }
  .topnav_laptop .navbar_form {
    width: inherit;
    display: inline-block;
    vertical-align: middle;
    margin-top: auto;
    margin-bottom: auto;
  }
}
/*############################## Style the footer ############################## */
footer {
  background-color: rgb(0, 73, 99);
  padding-top: 15px;
  color: white;
  line-height: 25px;
  font-size: 15px;
  padding-left: 10%;
}
footer ul {
  padding-inline-start: 0px;
}
footer li {
  list-style-type: none;
}
footer .footer_header {
  color: rgb(135, 248, 174);
}
footer a {
  color: rgb(255, 255, 255);
}
footer .row {
  padding: 0px;
}

@media only screen and (max-width: 649px) {
  .footer_row {
    display: block;
  }
}
@media only screen and (min-width: 650px) and (max-width: 999px) {
  .footer_row {
    display: flex;
  }
}
@media only screen and (min-width: 1000px) {
  .footer_row {
    display: flex;
  }
}
/*############################################################################## */
/*############################## Speicific css ############################## */
/*############################################################################## */
/*############################## contact_view ############################## */
.contact_view textarea, .contact_view .input_area {
  font-family: arial;
  resize: none;
  text-align: left;
  padding: 4px;
  margin-top: 25px !important;
}
.contact_view .input_area {
  width: 70%;
}
.contact_view textarea {
  width: 100%;
}
.contact_view .small, .contact_view input {
  margin: 10px, 10px !important;
  height: 35px;
}
.contact_view .large {
  min-height: 120px;
  max-height: 140px;
}
.contact_view .submit_button {
  margin-left: 0px;
  margin-top: 30px;
  margin-bottom: 20px;
}

/*############################## Lables ############################## */
.label_wrapper {
  width: 100%;
  height: 25px;
}

.highlight_label {
  background-color: rgb(1, 165, 138);
  color: rgb(255, 255, 255);
  border: 1px solid rgb(1, 165, 138);
  border-radius: 8px;
  font-size: 16px;
  line-height: 20px;
  float: right;
  padding: 3px 15px 3px 15px;
  margin: 3px 4px 3px 4px;
}

.label_wrapper:hover {
  opacity: 90%;
}

/*############################## Data tables ############################## */
.db_data table, .db_data th, .db_data td {
  border-top: 1px solid rgb(0, 73, 99);
  border-collapse: collapse;
  padding: 0px 10px;
}
.db_data .left_border {
  border-left: 1px solid rgb(0, 73, 99);
}
.db_data th {
  background: rgb(0, 121, 120);
  color: rgb(255, 255, 255);
  font-weight: 400;
}
.db_data tr:hover {
  background: rgb(235, 235, 235);
}
.db_data .index {
  text-align: left;
}
.db_data .value {
  text-align: right;
}
.db_data a {
  color: rgb(0, 73, 99) !important;
}

@media only screen and (max-width: 649px) {
  .db_data table, .db_data th, .db_data td {
    font-size: 12px;
    line-height: 25px;
  }
  .db_data .index {
    min-width: 120px;
  }
  .db_data .value {
    min-width: 30px;
  }
}
@media only screen and (min-width: 650px) and (max-width: 999px) {
  .db_data table, .db_data th, .db_data td {
    font-size: 15px;
    line-height: 25px;
  }
  .db_data .index {
    min-width: 170px;
  }
  .db_data .value {
    min-width: 75px;
  }
}
@media only screen and (min-width: 1000px) {
  .db_data table, .db_data th, .db_data td {
    font-size: 15px;
    line-height: 25px;
  }
  .db_data .index {
    min-width: 170px;
  }
  .db_data .value {
    min-width: 75px;
  }
}
/*############################## Factsheet ############################## */
.fact_sheet_overview {
  height: 100%;
}

.factsheet {
  margin: 0px;
  width: 100%;
  float: left;
  border-radius: 10px;
  padding: 10px;
  background-color: white;
  box-sizing: border-box;
  border: 3px solid rgb(0, 73, 99);
  max-width: 300px;
}
.factsheet p {
  margin: 0px 0px;
  padding: 5px 0px;
}
.factsheet a {
  color: inherit;
}
.factsheet strong {
  font-weight: 650;
}
.factsheet table {
  padding: 10px 0px;
  width: 100%;
}
.factsheet tbody, .factsheet tr {
  margin: 0px;
  width: 100%;
  line-height: 30px;
  border-collapse: collapse;
}
.factsheet tbody .value, .factsheet tr .value {
  text-align: right;
  min-width: 25%;
}
.factsheet tbody .multiplicator, .factsheet tr .multiplicator {
  font-weight: 600;
  color: rgb(1, 165, 138);
}
.factsheet tbody .table_border_top_down, .factsheet tr .table_border_top_down {
  border-top: 2px solid rgb(0, 73, 99);
  padding: 10px 0px;
}
.factsheet .table_details {
  border-top: 2px solid rgb(0, 73, 99);
  font-size: 16px;
  margin-top: 20px;
}
.factsheet .factsheet_kpi {
  margin: 0px auto;
  text-align: center;
  padding-bottom: 10px;
}
.factsheet .factsheet_kpi_highlight {
  font-weight: 550;
  font-size: 22px;
  color: rgb(0, 121, 120);
}

.factsheet_details {
  margin-top: 35px;
  margin-bottom: auto;
}

.factsheet_td_left > img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.factsheet_td_right {
  text-align: left;
}

.factsheet_value {
  font-weight: 700;
}

.factsheet_td_header {
  margin: 10px 0px 0px 0px;
  text-align: center;
}

.fact_table {
  border-top: 2px solid rgb(0, 73, 99);
}

.factsheet:hover {
  border: 3px solid rgb(1, 165, 138);
  background-color: rgb(253, 255, 253);
}
.factsheet:hover .factsheet_kpi_highlight {
  color: rgb(1, 165, 138);
}

@media only screen and (max-width: 649px) {
  .factsheet {
    margin: 7px 0px;
    font-size: 16px;
  }
  .detail_factsheet {
    margin-bottom: 40px;
  }
  .factsheet_td_left {
    margin: 20px auto;
    min-width: 40px;
  }
  .top_table {
    min-height: 150px;
  }
}
@media only screen and (min-width: 650px) and (max-width: 999px) {
  .factsheet {
    font-size: 16px;
  }
  .top_table {
    min-height: 150px;
  }
  .factsheet_td_left {
    margin: 20px auto;
    min-width: 40px;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1300px) {
  .factsheet {
    font-size: 16px;
  }
  .factsheet_td_left {
    margin: 20px auto;
    min-width: 40px;
  }
  .fact_sheet_overview {
    min-width: 230px;
  }
  .top_table {
    min-height: 120px;
  }
}
@media only screen and (min-width: 1300) {
  .top_table {
    min-height: 150px;
  }
  .factsheet {
    font-size: 18px;
  }
  .factsheet_td_left {
    margin: 20px auto;
    min-width: 50px;
  }
}
/*############################## price tag ############################## */
.price_tag {
  margin: 0px;
  width: 100%;
  float: left;
  border-radius: 5px;
  background-color: white;
  box-sizing: border-box;
  border: 3px solid rgb(0, 73, 99);
  max-width: 300px;
  margin-bottom: 10px;
}
.price_tag p {
  margin: 8px;
}

.price_tag_top {
  background-color: rgb(0, 73, 99);
  margin: 0px;
  width: 100%;
  border-radius-top: 5px;
  color: white;
  padding: 15px;
  text-align: center;
}
.price_tag_top .currency {
  font-size: 20px;
  margin: -13px;
  position: absolute;
  font-weight: 600;
}
.price_tag_top input {
  margin-top: 20px;
  width: 175px;
  font-size: 22px;
  font-weight: 550;
}
.price_tag_top input:hover {
  border-color: white;
}

.price_tag_header {
  font-size: 30px;
  font-weight: 600;
}

.price_tag_price {
  font-size: 50px;
  font-weight: 600;
  padding-top: 5px;
  padding-bottom: 5px;
}

.price_tag_bottom {
  padding-top: 7px;
  padding-left: 7px;
  padding-right: 7px;
}
.price_tag_bottom td {
  font-size: 15px;
  line-height: 23px;
}

/*############################## first page style ############################## */
main .first_page {
  background-image: url("images/top_page.jpg");
  background-repeat: no-repeat;
}

@media only screen and (max-width: 649px) {
  main .first_page {
    background-size: 200% 100%;
    background-position: 20% 100%;
  }
  main .light_text {
    color: rgb(255, 255, 255);
    font-weight: 450;
  }
}
@media only screen and (min-width: 650px) and (max-width: 999px) {
  main .first_page {
    background-attachment: fixed;
    background-size: 140% 130%;
  }
  main .light_text {
    color: rgb(255, 255, 255);
    font-weight: 500;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1299px) {
  main .first_page {
    background-attachment: fixed;
    background-size: 140% 130%;
  }
  main .light_text {
    color: rgb(255, 255, 255);
    font-weight: 500;
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1600px) {
  main .first_page {
    background-attachment: fixed;
    background-size: 140% 130%;
    font-weight: 500;
  }
  main .light_text {
    color: rgb(255, 255, 255);
  }
}
@media only screen and (min-width: 1600px) {
  main .first_page {
    background-attachment: fixed;
    background-size: 110% 120%;
    font-weight: 550;
  }
  main .light_text {
    color: rgb(255, 255, 255);
  }
}
/*############################## Test ############################## */
.no_margin {
  margin: 0px;
}

.highlight_p {
  font-style: italic;
  font-weight: 550;
}

@media only screen and (max-width: 649px) {
  .illustration {
    max-width: 250px;
  }
}
.active_chapter_selection {
  border-top: 2px solid rgb(235, 235, 235);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  border-right: 2px solid rgb(235, 235, 235);
  border-left: 2px solid rgb(235, 235, 235);
  border-bottom: 0px solid rgb(235, 235, 235);
  color: rgb(255, 255, 255);
  background-color: rgb(0, 73, 99);
}

.active_chapter {
  display: block;
}

.inactive_chapter {
  display: None;
}

.chapter_selectors {
  text-align: center;
}

.chapter_selectors:hover {
  color: rgb(1, 165, 138);
}

.active_chapter_selection:hover {
  color: rgb(255, 255, 255);
}

.info_top_bar {
  border-top: 2px solid rgb(0, 73, 99);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  border-right: 2px solid rgb(0, 73, 99);
  border-left: 2px solid rgb(0, 73, 99);
  border-bottom: 0px solid rgb(0, 73, 99);
  color: rgb(255, 255, 255);
  background-color: rgb(0, 73, 99);
  padding: 8px 15px;
}

.info_content {
  border-top: 0px solid rgb(0, 73, 99);
  border-right: 2px solid rgb(0, 73, 99);
  border-left: 2px solid rgb(0, 73, 99);
  border-bottom: 2px solid rgb(0, 73, 99);
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 25px 15px 15px 15px;
  background-color: white;
}
.info_content p {
  font-size: 18px;
  margin: 0px;
}
.info_content h4 {
  color: rgb(0, 73, 99);
  font-size: 22px;
}
.info_content a {
  font-size: 18px;
}

.page_content_table {
  background-color: rgba(0, 73, 99, 0.1);
  padding: 15px;
  list-style-position: inside;
}

.content_table_header {
  font-weight: 600;
  padding: 5px 0px;
}

.post_long h3 {
  font-size: 28px;
}

/*############################## Multiple address selection ############################## */
.selection_item_wrapper {
  border: 2px solid rgb(47, 107, 154);
  border-radius: 10px;
  margin: 5px;
  padding: 10px;
  font-size: 15px;
  line-height: 18px;
  color: inherit;
  display: flex;
  box-shadow: 1px 1px 2px rgb(47, 107, 154);
}
.selection_item_wrapper .factsheet_td_left, .selection_item_wrapper .icon, .selection_item_wrapper img {
  line-height: 100%;
  padding: 0px 10px 0px 0px;
}
.selection_item_wrapper p, .selection_item_wrapper td, .selection_item_wrapper tr {
  line-height: 20px;
  margin: 0px;
  padding: 0px;
  line-height: inherit;
  height: 18px;
}

.selection_item_wrapper:hover {
  border: 2px solid rgb(40, 134, 62);
  color: rgb(40, 134, 62);
  background-color: rgb(253, 255, 253);
  box-shadow: 1px 1px 2px rgb(40, 134, 62);
}
.selection_item_wrapper:hover a:hover {
  color: inherit;
  background-color: rgb(253, 255, 253);
}

@media only screen and (max-width: 649px) {
  .selection_wrapper {
    display: grid;
    grid-template-columns: repeat(1, 2fr);
  }
}
@media only screen and (min-width: 650px) and (max-width: 999px) {
  .selection_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
  }
}
@media only screen and (min-width: 1000px) {
  .selection_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
  }
  .selection_item_wrapper {
    min-width: 250px;
    min-width: 280px;
  }
}/*# sourceMappingURL=style.css.map */