@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
.grecaptcha-badge {
  visibility: hidden !important;
}

html,
body {
  height: 100%;
  margin: 0;
}

main {
  flex: 1;
}

body {
  display: flex;
  flex-direction: column;
  background-color: white;
  color: #243f52;
  font-family: "Roboto", Sans-serif;
  font-family: "Work Sans", sans-serif;
}

footer {
  background-color: #243f52;
  width: 100%;
  height: 25px;
  align-items: center;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-weight: 700;
}

table.basic {
  color: black;
  font-weight: bold;
  width: 100%;
}
table.basic th {
  text-align: left;
  background-color: #307da7;
  color: white;
  padding: 10px;
}
table.basic td {
  padding: 5px;
}
table.basic tr:nth-child(even) {
  background-color: #80c4e9;
}
table.basic tr.average {
  background-color: #fbb904;
}

a {
  text-decoration: none;
  color: #243f52;
}
a.header-link {
  color: #243f52;
}
a.header-link.white {
  color: white;
}
a.header-link:hover {
  color: unset;
}
a:hover {
  color: #fbb904;
}

input {
  padding: 10px;
  border-radius: 10px;
  font-size: 22px;
  color: #243f52;
}
input:disabled {
  border-color: gray;
}

select,
option {
  padding: 10px;
  border-radius: 10px;
  font-size: 22px;
  border: 1px solid #243f52;
}

.flex {
  display: flex;
}
.flex.row {
  flex-direction: row;
}
.flex.row-forced {
  flex-direction: row;
}
.flex.column {
  flex-direction: column;
}
.flex.column-forced {
  flex-direction: column;
}
.flex.center {
  align-items: center;
}
.flex.center-forced {
  align-items: center;
}
.flex.justify-content-center {
  justify-content: center;
}
.flex.justify-content-space-between {
  justify-content: space-between;
}
.flex.justify-content-space-around {
  justify-content: space-around;
}
.flex.justify-content-end {
  justify-content: end;
}
.flex.wrap {
  flex-wrap: wrap;
}

.flex-grow-one {
  flex: 1;
}

.flex-grow-two {
  flex: 2;
}

.flex-grow-three {
  flex: 3;
}

.flex-grow-four {
  flex: 4;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-bold {
  font-weight: bold;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-orange {
  color: orange;
}

.text-black {
  color: black;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.height-100 {
  height: 100%;
}

.width-100 {
  width: 100%;
}

.border {
  border: 1px solid;
}
.border.b-main-color {
  border-color: #243f52;
}

.content-container {
  margin: 0 5%;
  min-height: 80vh;
}
.content-container .content-right-image {
  width: 40%;
  height: 40%;
  border-radius: 25px;
}
.content-container .content-teaser {
  min-height: 50vh;
}
.content-container .content-teaser .teaser-form {
  border-radius: 25px;
  min-width: 50vw;
}
.content-container .content-teaser .teaser-form select, .content-container .content-teaser .teaser-form option {
  padding: 10px;
  border-radius: 10px;
  font-size: 22px;
  border: 1px solid #243f52;
}
.content-container .content-teaser .teaser-form input {
  padding: 10px;
  border-radius: 10px;
  font-size: 22px;
}
.content-container .content-teaser .teaser-form input[type=text],
.content-container .content-teaser .teaser-form input[type=date] {
  border-color: #243f52;
  background: none;
}
.content-container .content-teaser .teaser-form input[type=submit] {
  background-color: #fbb904;
  border-color: #fbb904;
  color: #243f52;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.1607843137);
  cursor: pointer;
}
.content-container .content-teaser .teaser-form input[type=submit]:hover {
  background-color: #243f52;
  border-color: #243f52;
  color: white;
}
.content-container .content-teaser .teaser-form input::-moz-placeholder {
  color: #243f52;
}
.content-container .content-teaser .teaser-form input::placeholder {
  color: #243f52;
}
.content-container ul {
  font-size: 24px;
}

.about-us {
  font-size: 1.2em;
  width: 75%;
  color: #243f52;
  margin-top: 50px;
  margin-left: 75px;
}

.topbar {
  background-color: white;
  padding: 0 25px;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.1607843137);
  color: #243f52;
  z-index: 999;
}
.topbar.dashboard-topbar {
  background-color: #243f52;
  color: white;
}
.topbar.dashboard-topbar .menu {
  text-transform: uppercase;
  font-weight: 800;
}
.topbar.dashboard-topbar .menu .current {
  color: white;
  font-size: 18px;
}
.topbar.dashboard-topbar .menu .menu-button {
  color: white;
  border: unset;
}
.topbar.dashboard-topbar .menu .menu-button:hover {
  color: #307da7;
}
.topbar.dashboard-topbar .menu .menu-button:last-child {
  border: unset;
}
.topbar .dropdown {
  position: relative;
  display: inline-block;
}
.topbar .dropdown-content {
  display: none;
  position: absolute;
  min-width: 150px;
  z-index: 1;
  padding-top: 10px;
}
.topbar .dropdown-content a {
  background-color: #fbb904;
  color: #243f52;
  border-radius: 5px;
  padding: 12px 16px;
  text-decoration: none;
  margin-bottom: 5px;
  display: block;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.topbar .dropdown-content a.current {
  font-weight: normal;
  padding: 12px 50px !important;
  background-color: #243f52;
  color: white;
}
.topbar .dropdown-content a:hover {
  background-color: #243f52;
  color: white;
}
.topbar .dropdown:hover .dropdown-content {
  display: block;
}
.topbar .dropdown:hover .dropbtn {
  background-color: #3e8e41;
}
.topbar .menu {
  text-transform: uppercase;
}
.topbar .menu .current {
  color: #243f52;
  font-weight: bold;
  padding: 0 50px !important;
}
.topbar .menu .menu-button {
  border-left: 1px solid black;
  padding: 0 50px;
  text-decoration: none;
}
.topbar .menu .menu-button.orange {
  border-radius: 5px;
  border-left: unset;
  color: white;
  padding: 10px 25px;
  background-color: #fbb904;
}
.topbar .menu .menu-button.orange:hover {
  color: white;
  padding: 10px 25px;
}
.topbar .menu .menu-button:hover {
  color: #243f52;
  font-weight: bold;
  padding: 0 50px;
}
.topbar .menu .menu-button:last-child {
  border-right: 1px solid black;
}

.title-holder-default {
  justify-content: left;
}
.title-holder-default .page-title {
  text-align: left;
  padding-left: 0;
}

.page-title {
  padding: 0 25px;
  color: #243f52;
  width: 70%;
  margin-top: 100px;
}

.content-holder-default {
  align-items: center;
}

.single-page-title {
  color: #243f52;
}

a:hover {
  cursor: pointer;
}
a.button.disabled {
  pointer-events: none;
  cursor: default;
}
a.click-link {
  text-decoration: underline;
}

.button {
  border-radius: 23px;
  font-size: 18px;
  text-decoration: none;
  padding: 12px 30px;
  text-align: center;
  vertical-align: middle;
  overflow-wrap: break-word;
}
.button.square {
  border-radius: 5px;
}
.button.small {
  padding: 6px 30px;
}
.button.big {
  padding: 24px 60px;
  font-size: 32px;
}
.button.main-color {
  background-color: #243f52;
  border-color: #243f52;
  color: white;
}
.button.main-color:hover {
  background-color: #307da7;
  border-color: #307da7;
}
.button.second-color {
  background-color: #307da7;
  border-color: #307da7;
  color: white;
}
.button.second-color:hover {
  background-color: #fbb904;
  border-color: #fbb904;
}
.button.third-color {
  background-color: #fbb904;
  border-color: #fbb904;
  color: white;
}
.button.third-color:hover {
  background-color: #307da7;
  border-color: #307da7;
}
.button.white {
  background-color: white;
  border: 1px solid rgba(22, 52, 178, 0.5019607843);
  box-shadow: 0px 3px 0px rgba(22, 52, 178, 0.5019607843);
}
.button.white:hover {
  background-color: #33658a;
  color: white;
}
.button.orange {
  background-color: #fbb904;
  border: 1px solid #fbb904;
  box-shadow: 0px 3px 0px rgba(22, 52, 178, 0.5019607843);
  color: #243f52;
}
.button.orange:hover {
  background-color: #243f52;
  color: white;
  border-color: #243f52;
}
.button:hover {
  cursor: pointer;
}

.packages .package {
  padding: 0 15px;
  width: 100%;
}
.packages .package p {
  margin: 25px 0;
  font-size: 21px;
}
.packages .package .most-populair {
  width: 100%;
  height: 25px;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  padding: 5px;
}
.packages .package .most-populair.active {
  background-color: #fbb904;
  color: white;
  margin: 0 25px;
}
.packages .package .title {
  width: 100%;
}
.packages .package .title.first {
  background-color: #243f52;
  margin-right: 25px;
}
.packages .package .title.second {
  background-color: #307da7;
}
.packages .package .title.third {
  background-color: #fbb904;
  margin-left: 25px;
}
.packages .package h2 {
  margin-top: 0;
  color: white;
  padding: 25px;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}
.packages .package ul {
  margin-top: 0;
}
.packages .package ul li {
  margin-top: 25px;
  font-size: 24px;
}
.packages .package .button {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 25px;
}

.info-boxes {
  margin-top: 50px;
  margin-bottom: 100px;
}
.info-boxes .box {
  background-color: #307da7;
  color: white;
  padding: 15px;
  border-radius: 15px;
  max-width: 500px;
}
.info-boxes .box p {
  font-size: 18px;
  line-height: 25px;
}
.info-boxes .box .box-button {
  text-align: center;
}

.background-triangle {
  width: 40vw;
  height: 65vh;
  position: absolute;
  z-index: -999;
  right: 0;
  top: 0;
  background: linear-gradient(to top right, #fff 0%, #fff 50%, #243f52 50%, #243f52 100%);
}

.background-triangle-bottom {
  width: 40vw;
  height: 65vh;
  position: absolute;
  z-index: -999;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom right, #fff 0%, #fff 50%, #243f52 50%, #243f52 100%);
}

.review-boxes .review-box {
  width: 45%;
  background-color: #307da7;
  border-radius: 5px;
  margin: 15px;
  padding: 10px;
  color: white;
}

.teaser-overview {
  filter: blur(3.5px);
}

.teaser-button {
  position: absolute;
  bottom: 25%;
  width: 100%;
  height: 20px;
  align-items: center;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-weight: 700;
  z-index: 999;
}
.teaser-button .button {
  width: 25%;
  height: 200%;
  align-items: center;
  justify-content: center;
  font-size: 50px;
}

.typeahead {
  position: absolute;
  text-decoration: none;
  list-style-type: none;
  z-index: 999;
  border: 1px solid #243f52;
  text-align: left;
  padding-left: 5px;
  padding-right: 5px;
  background-color: white;
  top: 395px !important;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 100px;
  width: 50%;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #3f5f74;
  border-radius: 5px;
  font-size: 20px;
  color: #243f52;
}
.contact-form textarea {
  min-height: 100px;
}
.contact-form input[type=submit] {
  text-align: center;
}

#menuItems {
  display: none;
}

.fa-square-xmark.red {
  color: red;
}

.fa-square-check.green {
  color: green;
}

.fa-xmark.red {
  color: red;
}

.fa-check.green {
  color: green;
}

/* The container */
.checkmark-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  /* Hide the browser's default checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create a custom checkbox */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
  /* Create the checkmark/indicator (hidden when not checked) */
}
.checkmark-container label:hover {
  cursor: pointer;
}
.checkmark-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark-container:hover input ~ .checkmark {
  background-color: #ccc;
  cursor: pointer;
}
.checkmark-container input:checked ~ .checkmark {
  background-color: #243f52;
}
.checkmark-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.checkmark-container input:checked ~ .checkmark:after {
  display: block;
}
.checkmark-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.checkmark-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Landscape phones and down */
/* Portrait tablet to landscape */
@media only screen and (min-width: 768px) and (max-width: 1255px) {
  body {
    margin: 0 !important;
    width: 100%;
  }
  body footer {
    font-size: 12px;
  }
  body .page-title {
    width: 100%;
    margin-top: 25px;
  }
  body .background-triangle {
    display: none;
  }
  body .flex .column {
    flex-direction: row;
  }
  body .flex .row {
    flex-direction: column;
  }
  body .flex .center {
    align-items: normal;
  }
  body .button {
    padding: 0;
  }
  body #menuItems {
    position: absolute;
    left: 0;
    top: 50px;
    background: white;
    flex-direction: column;
    width: 100%;
    justify-content: center;
  }
  body #menuItems a {
    padding: 5px 25px;
  }
}
/* Small desktop / laptop */
@media (min-width: 700px) and (max-width: 1600px) {
  body {
    font-size: 14px;
  }
  body p {
    font-size: 14px;
  }
  body h3 {
    font-size: 20px;
  }
  .background-triangle-bottom {
    display: none;
  }
  .topbar.dashboard-topbar .menu .current {
    font-size: 16px;
  }
  .topbar.dashboard-topbar .menu .menu-button {
    padding: 0 15px;
  }
  .topbar.dashboard-topbar .menu .current {
    padding: 0 15px !important;
  }
}
@media only screen and (max-width: 768px) {
  .content-container {
    padding-top: 45px;
  }
  .topbar {
    position: fixed;
    padding: unset;
    width: 100%;
  }
  .topbar div {
    padding: 0 5px;
  }
  .about-us {
    margin: auto;
    text-align: center;
  }
  .background-triangle-bottom {
    display: none;
  }
  .mobile_menu .fa {
    color: #fbb904;
    font-size: 21px;
  }
  .mobile_menu a {
    color: #fbb904;
  }
  footer {
    padding: 10px 5px;
    text-align: center;
    width: unset;
  }
  #menuItems {
    position: absolute;
    left: 0;
    top: 65px;
    background: white;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    padding: 25px;
    z-index: 999;
    border-bottom: 1px solid #243f52;
  }
  #menuItems a {
    padding: 10px 25px;
    font-size: 21px;
  }
  #menuItems a.current {
    font-weight: bold;
  }
  .header-link {
    font-size: 12px;
  }
  h2 {
    margin: 15px 0;
  }
  p {
    margin: 15px 0;
  }
  footer {
    font-size: 12px;
  }
  .page-title {
    width: 100%;
    margin-top: 25px;
  }
  .background-triangle {
    display: none;
  }
  .flex .column {
    flex-direction: row;
  }
  .flex .row {
    flex-direction: column;
  }
  .flex .center {
    align-items: normal;
  }
  .button {
    padding: 10px;
  }
  .button.big {
    padding: 10px;
    font-size: 16px;
  }
  .contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: unset;
    margin: unset;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #3f5f74;
    border-radius: 5px;
    font-size: 20px;
  }
  .contact-form textarea {
    min-height: 100px;
  }
  .contact-form input[type=submit] {
    text-align: center;
  }
}