@charset "UTF-8";
/*############################## General settings ############################## */
body {
  color: #000000;
  font-family: "Open Sans", "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  -webkit-text-size-adjust: auto;
     -moz-text-size-adjust: auto;
          text-size-adjust: auto;
  min-width: 350px;
  margin: 0 auto !important;
  padding: 0px;
  width: 100vw;
  box-sizing: border-box;
  scroll-behavior: smooth;
  background: linear-gradient(0deg, #d0f2ff 0%, #ffffff 90%);
}
body a:hover, body a.active {
  color: #007978;
}
body a {
  text-decoration: none;
}
body .brand_color {
  color: #E03035;
}
body .brand_color_two {
  color: #87F8AE;
}
body strong {
  font-weight: 600;
}
body .bold {
  font-weight: 550;
}
body .vert_align {
  margin: auto 0px;
  vertical-align: middle;
}
body button {
  font-family: "Open Sans", "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
body .font_color_one {
  color: #1a1a1a;
}
body .font_color_two {
  color: #E03035;
}
body .font_color_three {
  color: #F1F3F4;
}
body .font_color_four {
  color: #007978;
}
body .font_color_five {
  color: #87F8AE;
}

@media only screen and (max-width: 649px) {
  body {
    font-size: 14px;
    line-height: 25px;
  }
  .list_item {
    font-size: 16px;
  }
}
@media only screen and (min-width: 650px) and (max-width: 999px) {
  body {
    font-size: 18px;
    line-height: 35px;
  }
  .list_item {
    font-size: 21px;
  }
}
@media only screen and (min-width: 1000px) {
  body {
    font-size: 20px;
    line-height: 35px;
  }
  .list_item {
    font-size: 23px;
  }
}
/*############################## Animation ############################## */
@keyframes fadeinright {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeinright {
  animation: fadeinright 2s ease 0s 1 normal forwards;
}

/*############################## Text marker => color ############################## */
::-moz-selection {
  background: #87F8AE;
  color: #1a1a1a;
}

::selection {
  background: #87F8AE;
  color: #1a1a1a;
}

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

.text_centered {
  text-align: center;
}

@media only screen and (max-width: 649px) {
  .text_centered_mobile {
    text-align: center;
  }
}
.colored_row_one {
  background-color: #007978;
}

.colored_row_two {
  background-color: #1a1a1a;
  color: #F1F3F4;
}
.colored_row_two strong {
  color: #87F8AE;
}

@media only screen and (max-width: 649px) {
  .no_mobile {
    display: none;
  }
  main {
    display: block;
  }
  [class*=col-] {
    width: inherit;
    padding: 0px 15px;
  }
}
@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;
    justify-content: center;
    margin: auto;
  }
  .no_laptop {
    display: none;
  }
  .col-1 {
    width: 8.33%;
    max-width: 100px;
  }
  .col-2 {
    width: 16.66%;
    max-width: 200px;
  }
  .col-3 {
    width: 25%;
    max-width: 300px;
  }
  .col-4 {
    width: 33.33%;
    max-width: 400px;
  }
  .col-5 {
    width: 41.66%;
    max-width: 500px;
  }
  .col-6 {
    width: 50%;
    max-width: 600px;
  }
  .col-7 {
    width: 58.33%;
    max-width: 700px;
  }
  .col-8 {
    width: 66.66%;
    max-width: 800px;
  }
  .col-9 {
    width: 75%;
    max-width: 900px;
  }
  .col-10 {
    width: 83.33%;
    max-width: 1000px;
  }
  .col-11 {
    width: 91.66%;
    max-width: 1100px;
  }
  .col-12 {
    width: 100%;
    max-width: 1200px;
  }
}
/*############################## Header ############################## */
h1, h2, h3, h4 {
  font-weight: 700;
}

.header_row {
  padding-top: 5%;
}

.header_row_large {
  padding-top: 10%;
}

.header_row_small {
  padding-top: 2%;
}

.bottom_space_row_small {
  padding-bottom: 2%;
}

.bottom_space_row {
  padding-bottom: 5%;
}

.bottom_space_row_big {
  padding-bottom: 10%;
}

@media only screen and (max-width: 649px) {
  h1 {
    font-size: 30px;
    line-height: 35px;
    padding-top: 10%;
  }
  h2 {
    font-size: 23px;
    line-height: 27px;
    padding-top: 5%;
  }
  .subtitle {
    font-size: 16px;
    line-height: 21px;
    padding-top: 5%;
  }
}
@media only screen and (min-width: 650px) and (max-width: 999px) {
  h1 {
    font-size: 45px;
    line-height: 50px;
    padding-top: 10%;
  }
  h2 {
    font-size: 38px;
    line-height: 42px;
    padding-top: 5%;
  }
  .subtitle {
    font-size: 18px;
    line-height: 30px;
    padding-top: 5%;
  }
}
@media only screen and (min-width: 1000px) {
  h1 {
    font-size: 50px;
    line-height: 55px;
    padding-top: 10%;
  }
  h2 {
    font-size: 40px;
    line-height: 45px;
    padding-top: 5%;
  }
  .subtitle {
    font-size: 21px;
    line-height: 30px;
    padding-top: 5%;
  }
}
.no_space_top {
  padding-top: 0% !important;
  margin-top: 0%;
}

.no_space_bottom {
  margin-bottom: 2%;
}

/*############################## Input Forms ############################## */
.submit_button_CTA, .submit_button_CTA_large, .input_area {
  width: auto;
  padding-right: 3%;
  padding-left: 3%;
  box-sizing: border-box;
}

.submit_button_CTA_normal {
  background-color: #E03035;
  color: #F1F3F4;
  border: 2px solid #E03035;
  border-radius: 4px;
}

.submit_button_CTA_normal:hover {
  background-color: #F1F3F4;
  color: #E03035;
}

.submit_button_CTA_invert {
  background-color: #F1F3F4;
  color: #E03035;
  border: 2px solid #E03035;
  border-radius: 4px;
}

.submit_button_CTA_invert:hover {
  background-color: #E03035;
  color: #F1F3F4;
}

@media only screen and (max-width: 649px) {
  .submit_button_CTA {
    margin: 10px 0px;
    height: 30px;
    font-size: 14px;
    font-weight: 600;
  }
  .submit_button_CTA_large {
    margin: 10px 0px;
    height: 35px;
    font-size: 15px;
    font-weight: 700;
  }
  .input_area {
    margin: 10px 0px;
    height: 35px;
  }
}
@media only screen and (min-width: 650px) and (max-width: 999px) {
  .submit_button_CTA {
    margin: 10px 0px;
    height: 45px;
    font-size: 14px;
    font-weight: 600;
  }
  .submit_button_CTA_large {
    margin: 10px 0px;
    height: 50px;
    font-size: 23px;
    font-weight: 700;
  }
  .input_area {
    margin: 10px 0px;
    height: 45px;
  }
}
@media only screen and (min-width: 1000px) {
  .submit_button_CTA {
    margin: 10px 0px;
    height: 45px;
    font-size: 15px;
    font-weight: 600;
  }
  .submit_button_CTA_large {
    margin: 10px 0px;
    height: 50px;
    font-size: 23px;
    font-weight: 700;
  }
  .input_area {
    margin: 10px 0px;
    height: 45px;
  }
}
/*############################## boxes ############################## */
.box_wrapper {
  border: 1px solid #1a1a1a;
  background: #1a1a1a;
  color: #F1F3F4;
  border-radius: 8px;
  text-align: center;
  margin: 5px;
  padding: 5px;
  height: 100%;
}
.box_wrapper strong {
  color: #F1F3F4;
}

.box_wrapper:hover {
  border: 1px solid #E03035;
  background: #E03035;
}

@media only screen and (max-width: 649px) {
  .box_wrapper {
    font-size: 12px;
    line-height: 18px;
    width: 70%;
  }
  .box_wrapper strong {
    font-size: 18px;
    line-height: 25px;
  }
}
@media only screen and (min-width: 650px) and (max-width: 999px) {
  .box_wrapper {
    font-size: 12px;
    line-height: 20px;
  }
  .box_wrapper strong {
    font-size: 18px;
    line-height: 30px;
  }
}
@media only screen and (min-width: 1000px) {
  .box_wrapper {
    font-size: 13px;
    line-height: 20px;
  }
  .box_wrapper strong {
    font-size: 23px;
    line-height: 40px;
  }
}
/*############################## price tag ############################## */
.price_tag {
  margin: 0px;
  width: 100%;
  float: left;
  border-radius: 5px;
  background-color: white;
  box-sizing: border-box;
  border: 3px solid #1a1a1a;
  max-width: 300px;
  margin-bottom: 10px;
}
.price_tag p {
  margin: 8px;
}

.price_box {
  padding: 0px 20px;
}

.price_tag_top {
  background-color: #1a1a1a;
  margin: 0px;
  width: inherit;
  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;
}
.price_tag_bottom a {
  color: #000000;
}

@media only screen and (max-width: 649px) {
  .price_tag {
    display: grid;
    margin: 20px;
  }
}
/*############################## 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 #1a1a1a;
  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: #1a1a1a;
}
.factsheet tbody .table_border_top_down, .factsheet tr .table_border_top_down {
  border-top: 2px solid #1a1a1a;
  padding: 10px 0px;
}
.factsheet .table_details {
  border-top: 2px solid #1a1a1a;
  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: #1a1a1a;
}

.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 #1a1a1a;
}

.factsheet:hover {
  border: 3px solid #1a1a1a;
  background-color: #1a1a1a;
}
.factsheet:hover .factsheet_kpi_highlight {
  color: #1a1a1a;
}

@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;
  }
}
/*############################## quotes ############################## */
.quote {
  font-style: italic;
  font-weight: 450;
  text-align: center;
  color: #007978;
}

/*############################## Newsletter ############################## */
/* Container: Zentriert, mit angenehmem Hintergrund, Schatten und abgerundeten Ecken */
.newsletter-container {
  max-width: 500px;
  margin: 20px auto 20px 0px;
  padding: 40px 0px;
  text-align: center;
  border-radius: 10px;
}

.newsletter_form {
  min-height: 80vh;
}

@media only screen and (max-width: 649px) {
  .newsletter-container {
    margin: 20px auto 20px auto;
    max-width: 300px;
  }
}
@media only screen and (min-width: 650px) and (max-width: 999px) {
  .newsletter-container {
    max-width: 500px;
  }
}
@media only screen and (min-width: 1000px) {
  .newsletter-container {
    max-width: 500px;
  }
}
/* Das Formular: Vertikal bzw horizontal gestapelt */
.newsletter-form {
  display: flex;
  background-color: #1a1a1a;
}

@media only screen and (max-width: 649px) {
  .newsletter-form {
    flex-direction: column;
  }
}
@media only screen and (min-width: 650px) and (max-width: 999px) {
  .newsletter-form {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 1000px) {
  .newsletter-form {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
/* Input-Feld: Großzügig, mit klaren Linien und Abständen */
.newsletter-input {
  background-color: #1a1a1a;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  height: 50px;
}

.newsletter-input:focus {
  border: 1px solid #87F8AE;
  outline: none;
}

.newsletter-input_wrapper {
  width: 100%;
  margin: 0px;
}

/* Button: Auffällig, modern mit Hover-Effekt */
.newsletter-button {
  padding: 15px;
  font-size: 16px;
  border: none;
  color: #000000;
  border-radius: 5px;
  cursor: pointer;
  background-color: #87F8AE;
  transition: background-color 0.5s ease;
  font-weight: 800;
  height: 50px;
}

.newsletter-button:hover {
  background-color: #1a1a1a;
  color: #87F8AE;
  border: 1px solid #87F8AE;
}

/* Checkbox-Bereich: Standardmäßig versteckt, klein und linksbündig */
.checkbox-container {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 14px;
  color: #666;
  text-align: left;
}
.checkbox-container a {
  font-weight: 800;
  color: #888;
}

/*############################## images ############################## */
img {
  width: 100%;
}

.img_wrapper_top_right {
  position: relative;
  width: 100%;
  height: auto;
}

.img_top_right {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  background: red;
}

@media only screen and (max-width: 649px) {
  main img {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
/*############################## navbar ############################## */
.navbar {
  background-color: #1a1a1a;
}

nav {
  height: 60px;
  min-width: 350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid grey;
  width: 100%;
}
nav .logo_container a {
  display: flex;
  align-items: center;
}
nav .logo_container .logo {
  position: relative;
  width: auto;
}
nav .link_container {
  display: flex;
  justify-content: flex-end;
  padding-right: 2%;
}
nav .link_container a {
  font-size: 18px;
  font-weight: 700;
  color: #F1F3F4;
}
nav .link_container a:hover {
  color: #87F8AE;
}
nav .burger {
  display: none;
  cursor: pointer;
  padding-right: 20px;
}
nav .burger div {
  width: 25px;
  height: 3px;
  background-color: #F1F3F4;
  margin: 5px 0;
  transition: 0.3s;
}

@media only screen and (max-width: 649px) {
  .navbar [class*=col-] {
    width: inherit;
    padding: 0px 0px !important;
  }
  nav .burger {
    display: block;
  }
  nav .link_container {
    display: none;
  }
  nav .logo {
    height: 40px;
    left: 15px;
  }
  .mobile-menu {
    display: none;
    background-color: #1a1a1a;
    color: #F1F3F4;
  }
  .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-block-end: 0px;
  }
  .mobile-menu ul li {
    display: flex;
  }
  .mobile-menu ul li a {
    height: 25px;
    display: block;
    padding: 5px 30px;
    font-weight: 550;
    text-decoration: none;
    margin: auto;
    margin-left: 0px;
    color: #F1F3F4;
  }
}
.mobile-menu.active {
  display: block;
}

@media only screen and (min-width: 650px) and (max-width: 999px) {
  .mobile-menu {
    display: none;
  }
  .logo {
    height: 40px;
    left: 15px;
  }
  .link_container a {
    padding: 0 3%;
  }
}
@media only screen and (min-width: 1000px) {
  .mobile-menu {
    display: none;
  }
  .logo {
    height: 50px;
    left: 30px;
  }
  .link_container a {
    padding: 0 10%;
  }
}
/*############################## Style the footer ############################## */
footer {
  background-color: #1a1a1a;
  padding-top: 15px;
  padding-bottom: 10px;
  color: white;
  line-height: 25px;
  font-size: 15px;
}
footer a:hover {
  color: #87F8AE;
}
footer ul {
  padding-inline-start: 0px;
}
footer li {
  list-style-type: none;
}
footer .footer_header {
  color: #87F8AE;
}
footer a {
  color: #F1F3F4;
}
footer .row {
  padding: 0px;
}
footer img {
  height: 25px;
  width: auto;
  margin-left: -8px;
}

@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;
  }
}/*# sourceMappingURL=style_imvestcampus.css.map */