﻿:root {
  --primary-color: #007c80;
  --secondary-color: #e79e34;
  --light-grey: #858585;
}

* {
  box-sizing: border-box;
}


.one-line-ellipssis {
  display: -webkit-box;
  /* Needed for multiline truncation */
  -webkit-line-clamp: 1;
  /* Number of lines to show */
  -webkit-box-orient: vertical;
  /* Vertical orientation for the box */
  overflow: hidden;
  /* Hide overflowing text */
  text-overflow: ellipsis;

  /* Set a line-height that suits your design */
  max-height: 2.4em;
  /* line-height * 2 lines = 2.4em */
  width: 100%;
}

.notification-bell {
  -webkit-animation: ring 4s .7s ease-in-out infinite;
  -webkit-transform-origin: 50% 4px;
  -moz-animation: ring 4s .7s ease-in-out infinite;
  -moz-transform-origin: 50% 4px;
  animation: ring 4s .7s ease-in-out infinite;
  transform-origin: 50% 4px;
}

@-webkit-keyframes ring {
  0% {
    -webkit-transform: rotateZ(0);
  }

  1% {
    -webkit-transform: rotateZ(30deg);
  }

  3% {
    -webkit-transform: rotateZ(-28deg);
  }

  5% {
    -webkit-transform: rotateZ(34deg);
  }

  7% {
    -webkit-transform: rotateZ(-32deg);
  }

  9% {
    -webkit-transform: rotateZ(30deg);
  }

  11% {
    -webkit-transform: rotateZ(-28deg);
  }

  13% {
    -webkit-transform: rotateZ(26deg);
  }

  15% {
    -webkit-transform: rotateZ(-24deg);
  }

  17% {
    -webkit-transform: rotateZ(22deg);
  }

  19% {
    -webkit-transform: rotateZ(-20deg);
  }

  21% {
    -webkit-transform: rotateZ(18deg);
  }

  23% {
    -webkit-transform: rotateZ(-16deg);
  }

  25% {
    -webkit-transform: rotateZ(14deg);
  }

  27% {
    -webkit-transform: rotateZ(-12deg);
  }

  29% {
    -webkit-transform: rotateZ(10deg);
  }

  31% {
    -webkit-transform: rotateZ(-8deg);
  }

  33% {
    -webkit-transform: rotateZ(6deg);
  }

  35% {
    -webkit-transform: rotateZ(-4deg);
  }

  37% {
    -webkit-transform: rotateZ(2deg);
  }

  39% {
    -webkit-transform: rotateZ(-1deg);
  }

  41% {
    -webkit-transform: rotateZ(1deg);
  }

  43% {
    -webkit-transform: rotateZ(0);
  }

  100% {
    -webkit-transform: rotateZ(0);
  }
}

@-moz-keyframes ring {
  0% {
    -moz-transform: rotate(0);
  }

  1% {
    -moz-transform: rotate(30deg);
  }

  3% {
    -moz-transform: rotate(-28deg);
  }

  5% {
    -moz-transform: rotate(34deg);
  }

  7% {
    -moz-transform: rotate(-32deg);
  }

  9% {
    -moz-transform: rotate(30deg);
  }

  11% {
    -moz-transform: rotate(-28deg);
  }

  13% {
    -moz-transform: rotate(26deg);
  }

  15% {
    -moz-transform: rotate(-24deg);
  }

  17% {
    -moz-transform: rotate(22deg);
  }

  19% {
    -moz-transform: rotate(-20deg);
  }

  21% {
    -moz-transform: rotate(18deg);
  }

  23% {
    -moz-transform: rotate(-16deg);
  }

  25% {
    -moz-transform: rotate(14deg);
  }

  27% {
    -moz-transform: rotate(-12deg);
  }

  29% {
    -moz-transform: rotate(10deg);
  }

  31% {
    -moz-transform: rotate(-8deg);
  }

  33% {
    -moz-transform: rotate(6deg);
  }

  35% {
    -moz-transform: rotate(-4deg);
  }

  37% {
    -moz-transform: rotate(2deg);
  }

  39% {
    -moz-transform: rotate(-1deg);
  }

  41% {
    -moz-transform: rotate(1deg);
  }

  43% {
    -moz-transform: rotate(0);
  }

  100% {
    -moz-transform: rotate(0);
  }
}

@keyframes ring {
  0% {
    transform: rotate(0);
  }

  1% {
    transform: rotate(30deg);
  }

  3% {
    transform: rotate(-28deg);
  }

  5% {
    transform: rotate(34deg);
  }

  7% {
    transform: rotate(-32deg);
  }

  9% {
    transform: rotate(30deg);
  }

  11% {
    transform: rotate(-28deg);
  }

  13% {
    transform: rotate(26deg);
  }

  15% {
    transform: rotate(-24deg);
  }

  17% {
    transform: rotate(22deg);
  }

  19% {
    transform: rotate(-20deg);
  }

  21% {
    transform: rotate(18deg);
  }

  23% {
    transform: rotate(-16deg);
  }

  25% {
    transform: rotate(14deg);
  }

  27% {
    transform: rotate(-12deg);
  }

  29% {
    transform: rotate(10deg);
  }

  31% {
    transform: rotate(-8deg);
  }

  33% {
    transform: rotate(6deg);
  }

  35% {
    transform: rotate(-4deg);
  }

  37% {
    transform: rotate(2deg);
  }

  39% {
    transform: rotate(-1deg);
  }

  41% {
    transform: rotate(1deg);
  }

  43% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(0);
  }
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

/*button, a {
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}
*/
.d-flex {
  display: flex;
}

.mobile-only {
  display: none;
}

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

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

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

.color-light-grey {
  color: var(--light-grey) !important;
}

.color-secondary {
  color: var(--secondary-color) !important;
}

.color-primary {
  color: var(--secondary-color) !important;
}

.text-normal {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}

.text-small {
  font-size: 12px;
  line-height: 14px;
}

.text-light {
  font-weight: 300;
}

.size-20 {
  font-size: 20px;
}

.d-inline-block {
  display: inline-block;
}

.section__content {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.half-width {
  width: 50%;
}

.full-width {
  width: 100%;
}


.width-10 {
  width: 10%;
}

.width-20 {
  width: 20%;
}

.width-30 {
  width: 30%;
}

.width-40 {
  width: 40%;
}

.width-50 {
  width: 50%;
}

.width-60 {
  width: 60%;
}

.width-70 {
  width: 70%;
}

.width-80 {
  width: 80%;
}

/*@font-face {
  font-family: 'Modern Love Regular Slanted';
  src: url('../fonts/FontsFree-Net-Modern1.ttf') format('truetype');*/
/*font-weight: normal;
  font-style: normal;*/
/*}*/
body,
html {
  /*font-family: Calibri;*/
  /*font-family: 'Modern Love Regular Slanted';*/
  /*font-family: 'Roboto', sans-serif;*/
  /*font-family: 'Architects Daughter', cursive;*/
  font-family: 'Heebo', sans-serif;
  font-size: 15px;
  padding: 0px;
  margin: 0;
  letter-spacing: 0.5px;
  position: relative;
  min-height: 90vh;
  background-color: #F8F7F2;
}

body {
  /*padding:20px;*/
}

content {
  clear: both;
  display: block;
}

a,
button {
  transition: opacity 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

a:hover,
button:hover {
  text-decoration: none;
  opacity: 0.75;
}

.btn {
  background-color: #e79e34;
  color: #fff !important;
  padding: 3px 30px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
}

.btn.btn-small {
  display: inline-block;
  text-transform: none;
  padding: 3px 10px;
  font-weight: 300;
}

.btn.btn-medium {
  display: inline-block;
  padding: 5px 15px;
  font-size: 16px;
  line-height: 20px;
  text-transform: none;
}

.btn.flat {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

.float--right {
  float: right;
}

input[type=text],
input[type=email],
input[type=password],
textarea {
  border-radius: 0;
  color: #999;
  padding: 7px 1%;
  border: none;
  border: solid 1px transparent;
  border-bottom: solid 1px #35689a;
  outline: none;
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border: solid 1px #35689a;
}

/* Menu */


header {
  position: fixed;
  top: 0px;
  z-index: 999;
  width: 100%;
  text-align: center;
  background-color: #fff;
  box-shadow: #00000029 0 3px 6px;
  padding: 22px 0;
}

#logo__item img {
  height: 73px;
}

#navigation {
  list-style-type: none;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

#navigation li {
  margin-right: 15px;
  padding-right: 73px;
}

#navigation li:not(#logo__item) {
  margin-top: 24px;
}

#navigation li a {
  font-size: 16px;
  color: #858585;
  font-weight: 400;
  text-transform: uppercase;
  display: inline-block;
}

#navigation li a.active {
  font-weight: 700;
  color: #E7B35F;
}

#navigation li a.btn {
  padding: 7px 20px;
}

#login__actions {
  position: absolute;
  top: 43px;
  right: 25px;
}

#login__actions #logged__in {
  padding-right: 10px;
  color: #858585;
}

a.btn,
button.btn {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 7px 35px;
  border-radius: 5px;
  box-shadow: #00000029 0px 3px 6px;
}

/* Home */
#image__container {
  position: relative;
  /*max-height: 1050px;*/
  overflow-y: hidden;
}

#image__container img:not(.border--image) {
  /*margin-top: -7%;*/
  position: relative;
  top: 0;
}

#image__container img {
  width: 100%;
}

#image__container .border--image {
  position: absolute;
  left: 0;
  bottom: 0;
}

#image__container .blue--filter {
  position: absolute;
  width: 100%;
  height: 100%;
  /*background-color: rgba(36, 91, 140, 0.35);*/
  left: 0;
  top: 0;
}

#home__info {
  position: absolute;
  left: 0;
  right: 0;
  top: 35%;
  text-align: center;
  color: #fff;
  font-size: 47px;
  color: #007c80;
}

#image__container h1 {
  /*font-family: 'Modern Love Regular Slanted';*/
  font-size: 50px;
  margin-bottom: 10px;
  color: #007c80;
  position: absolute;
  top: 130px;
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-family: 'Architects Daughter', cursive;
}

#image__container img#second__logo {
  max-width: 528px;
  position: absolute;
  bottom: 20px;
  right: 50px;
  top: unset;
}

@media only screen and (max-width: 500px) {
  #image__container #stamp {
    margin-top: 245px !important;
    margin-left: 25px !important;
    left: 0 !important;
    width: 30% !important;
    height: auto !important;
  }
}

@media only screen and (min-width: 501px) and (max-width: 680px) {
  #image__container #stamp {
    margin-top: 200px !important;
    margin-left: 25px !important;
    left: 0 !important;
    width: 30% !important;
    height: auto !important;
  }
}

#image__container #stamp {
  width: 250px;
  height: 200px;
  position: absolute;
  margin-top: 20%;
  margin-left: 120px;
  left: 0;
}

#home__info a {
  display: block;
  width: 100px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -20px;
}

#home__header {
  color: #007C80;
  font-family: 'Architects Daughter', cursive;
  font-size: 50px;
  margin-top: 150px;
  margin-bottom: 45px;
  font-weight: 400;
  margin-left: 15%;
}

#home__cards {
  color: #999;
  display: flex;
  flex-direction: row;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  align-content: space-evenly;
  justify-content: space-evenly;
  margin-top: 80px;
}

.card {
  background-color: #F8F7F1 !important;
  border: none;
  width: 30%;
  margin-bottom: 60px;
  padding: 1%;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-top: 0;
}

.card .card--content {
  /*padding-left: 20px;*/
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.card .card--content h3 {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #007c80;
}

.card .card--content p {
  letter-spacing: 0.8px;
  line-height: 24px;
  color: #858585;
  font-size: 16px;
  font-weight: 300;
  padding-bottom: 15px;
}

.card .icon img {
  max-width: 130px;
}

.card .icon.icon-small img {
  max-width: 140px;
}

#home__testimonials__wrapper {
  background-color: #e79e34;
}

#home__testimonials {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  padding: 35px 0;
  color: #fff;
}

#home__testimonials h3 {
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
}

#home__testimonials div {
  font-size: 20px;
  line-height: 32px;
  text-align: center;
}

#home__testimonials p {
  font-weight: bold;
  margin-bottom: -10px;
}

#home__testimonials small {
  font-size: 14px;
}

.slick-prev {
  display: none !important;
}

.slick-next:before {
  content: '';
  opacity: 1;
  color: transparent;
}

.slick-next,
.slick-next:focus,
.slick-next:visited {
  width: 50px;
  height: 50px;
  background: url(../images/next.png) no-repeat left top;
  right: -100px;
  transition: opacity 0.25s ease;
}

.slick-next:hover {
  background: url(../images/next.png) no-repeat left top;
  opacity: 0.75;
}

#contact__us {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  padding: 35px 0;
  text-align: center;
  color: #35689a;
}

#contact__us h3 {
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
}

#contact__us div {
  padding-bottom: 25px;
}

#contact__us div input,
#contact__us div textarea {
  width: 98%;
  font-family: Calibri;
  font-size: 14px;
}

#contact__us div.two--cols {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
}

#contact__us div.two--cols input {
  width: 46% !important;
  display: block;
}

#contact__us button {
  border: none;
}

footer {
  background-color: #F5F5F5;
  /*background-color: #f4f9ff;*/
  /*border-top: solid 1px #999;*/
  /*color: #35689a;
  text-align: center;
  padding: 50px 0 0px 0;
  width: 100%;
  position: absolute;
  bottom: -150px;
  height: 100px;*/
  padding: 100px 0 15px 0;
  text-align: center;
}

/*footer div {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px;
  }

    footer div img {
      cursor: pointer;
      color: #35689a;
    }*/

footer a {
  font-weight: 700;
  font-size: 22px;
  color: #007C80;
}

/* Login */
#login__wrapper {
  position: absolute;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}

#login__wrapper .container {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10%;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: #00000029 0px 2px 6px;
}

#login__wrapper #form__container {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 30px;
}

#login__wrapper .container input[type=text],
#login__wrapper .container input[type=email],
#login__wrapper .container input[type=password] {
  width: 100%;
  margin-bottom: 15px;
  border: solid 1px #D3D3D3;
  background-color: #F4F4F4;
  border-radius: 5px;
  padding: 11px;
  color: #898989;
  font-size: 20px;
  box-sizing: border-box;
}

#login__wrapper .container button {
  border: none;
  width: 100%;
  margin-top: 25px;
  font-size: 26px;
}

#login__wrapper .container #forgot-password {
  color: #35689a;
}

#login__wrapper .container h1 {
  font-size: 50px;
  /*color: #35689a;*/
  color: #007C80;
  margin-bottom: 40px;
  font-weight: 400;
  text-align: center;
  font-family: 'Architects Daughter', cursive;
}

#logo {
  padding-left: 20px;
  padding-top: 15px;
  padding-bottom: 10px;
  display: inline-block;
}

#logo img {
  width: 70px;
}

#login__info {
  text-align: center;
  padding-top: 12px;
  font-size: 16px;
  color: #000;
}

#login__info a {
  color: #004EFF;
  font-weight: 700;
}


.middle-section {
  min-height: 39vw;
  background: url(/images/home-middle.png) no-repeat left top;
  background-size: contain;
  margin-top: 50px;
}

.simple__content.middle-section {
  margin-top: 0;
}

.simple__content h4 {
  color: #e79e34;
  font-size: 20px;
  font-weight: 400;
}

.simple__content a {
  color: #e79e34;
}

.simple__content h5 {
  color: #e79e34;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.section__title {
  font-family: 'Architects Daughter', cursive;
  color: var(--secondary-color);
  font-size: 50px;
  line-height: 80px;
}

.section__subtitle {
  display: block;
  color: var(--primary-color);
  font-size: 25px;
  line-height: 35px;
}

.section__contact {
  display: flex;
  justify-content: space-between;
  background: white;
  background: url(/images/contact-bkg.png) no-repeat left top;
  background-size: cover;
  /*-webkit-box-shadow: 5px 5px 22px 5px rgba(166,166,166,0.56);
  box-shadow: 5px 5px 22px 5px rgba(166,166,166,0.56);*/
  border-radius: 5px;
}


.input-group .input-group-field,
.textarea-group-field {
  margin-bottom: 20px;
  padding: 8px 15px;
  font-size: 16px;
  line-height: 22px;
  width: 100%;
  background: #F8F8F8;
  border: 0.5px solid #D3D3D3;
  color: #898989;
}

.textarea-group-field {
  height: 185px;
}


@media only screen and (min-width: 650px) {
  .section__footer {
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    margin-left: 160px;
  }
}

.section__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.no-dots {
  list-style-type: none;
  /* Remove bullets */
  padding: 0;
  /* Remove padding */
  margin: 0;
}


.section__footer a {
  color: var(--light-grey);
}

.section__footer li {
  margin-bottom: 30px;
}

.section__footer li a.active {
  color: var(--secondary-color);
}

.copyright {
  margin-top: 130px;
  font-size: 12px;
  text-align: center;
  color: var(--light-grey);
}

.app-images {
  position: relative;
  height: 730px;
}

.app-images .tablet-img {
  width: 70%;
  position: absolute;
  left: 135px;
}

.app-images .mobile-img {
  position: absolute;
  top: 200px;
  right: 65px;
  width: 45%;
}

.contact-form {
  margin-top: 65px;
  padding: 0 10%;
}

#price__cta {
  width: 420px;
  height: 420px;
  min-width: 300px;
  background-color: #F3DEBE;
  color: #218484;
  text-align: center;
  border-radius: 50%;
  margin: 40px;
  padding: 20px 0;
}

#price__cta div p {
  margin: 0;
  font-size: 13px;
}

#price__cta div small {
  font-size: 9px;
}

#price__cta div b {
  font-size: 36px;
}

#price__cta ul {
  list-style: none;
}

#price__info {
  width: 350px;
  color: #848484;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

#price__info tr td {
  padding-bottom: 3px;
}

#price__info tr td b {
  color: #218484;
}

#price__info ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

#price__info ul li img {
  padding-right: 10px;
}

#price__info .col-md-4 {
  width: 33%;
}

#price__info .section__subtitle {
  text-align: left;
  padding-left: 30px;
}

#price__info .bkg-white {
  background: white;
  padding: 20px;
  border-radius: 10px;
}

.price-bottom-logo {
  width: auto;
  max-width: 100%;
}

#custom__cta h1 {
  font-size: 25px;
  margin-top: 0;
  line-height: 25px;
  margin-bottom: 35px;
}

#custom__cta h2 {
  font-size: 16px;
  margin-top: 0;
  line-height: 16px;
  color: #858585;
  font-weight: 200;
}

#login__cancel {
  background-color: #007c80;
  width: 100%;
  text-align: center;
  font-size: 24px;
}

@media only screen and (max-width: 1130px) {
  .mobile-only {
    display: block;
  }

  header {
    height: 0;
    padding: 0;
  }

  #logo__item {
    display: none;
  }

  #navigation {
    height: 0;
    overflow: hidden;
    display: block;
  }

  #navigation.open {
    padding: 60px 0 35px;
    height: auto;
    background: white;
  }

  #navigation li:not(#logo__item) {
    margin-top: 0;
  }

  #navigation.open li {
    text-align: left;
    margin: 0 30px;
    padding: 15px 0;
    border-bottom: 1px solid #BFBFBF;
  }

  #navigation.open li:first-child {
    margin-top: 20px;
  }

  #navigation.open li:last-child {
    border: none;
  }


  #login__actions {
    display: none;
  }

  .toggle {
    position: absolute;
    top: 30px;
    right: 30px;
    -webkit-transform: translateY(-40%);
    -ms-transform: translateY(-40%);
    transform: translateY(-40%);
  }

  .toggle .cross {
    transition-duration: 0s;
    transition-delay: .1s;
  }

  .toggle .cross span:before {
    margin-top: -10px;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-duration: .1s;
    transition-delay: .1s, 0;
  }

  .toggle span:before,
  .toggle span:after {
    position: absolute;
    content: '';
    width: 35px;
    height: 4px;
    background-color: var(--secondary-color);
    display: block;
  }

  .toggle .cross span:after {
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-duration: .1s;
    transition-delay: .1s, 0;
  }

  .toggle span:after {
    margin-top: 10px;
  }

  .toggle span {
    margin: 0 auto;
    position: relative;
    z-index: 999;
    top: 12px;
    width: 35px;
    height: 4px;
    background-color: var(--secondary-color);
    display: block;
  }

  .toggle .cross.open span {
    background-color: transparent;
    transition-delay: .1s;
  }

  .toggle .cross.open span:before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition-delay: 0, .1s;
    background-color: #c6c5cd;
  }

  .toggle .cross.open span:after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition-delay: 0, .1s;
    background-color: #c6c5cd;
  }

  #price__info .col-md-4 {
    width: 100%;
  }

  #image__container h1 {
    top: 30px;
    font-size: 24px;
  }

  #image__container img#second__logo {
    right: 30px;
    max-width: 225px;
  }

  .card {
    width: 40%;
  }


  #home__cards,
  .section__content {
    width: 95%;
  }

  .middle-section {
    margin-bottom: 50px;
  }

  .section__title {
    font-size: 30px;
    /*line-height: 36px;*/
  }

  .section__subtitle {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 30px;
  }

  .footer-links {
    margin-top: 50px;
    flex-basis: 100%;
    justify-content: center;
  }

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

  .copyright {
    margin-top: 50px;
  }

  .app-images .tablet-img {
    width: 100%;
    left: 0;
  }

  #login__wrapper .container {
    padding: 20px;
    max-width: 100%;
  }
}

@media only screen and (min-width: 350px) and (max-width: 650px) {
  #cookieNotice {
    font-family: 'Heebo';
    font-size: 16px;
    color: #858585;
    background: white !important;
    background-clip: border-box;
    padding: 10px;
    width: 93% !important;
    border-top: 1px solid#ddd;
    z-index: 99999;
    height: 37vh !important;
    line-height: 34px;
    margin: 10px;
    border: 1px solid #858585;
    border-radius: 5px;
    box-shadow: 0px 3px 15px -6px #000000;
    justify-content: center;
  }

  #cookieNotice button {
    height: 45px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 768px) {
  .full-content {
    flex-direction: column;
    align-items: center;
  }

  .width-60 {
    width: 80%;
  }

  .width-20 {
    width: 80%;
  }

  .width-30 {
    width: 80%;
  }

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

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

  .mobile-title {
    font-size: 35px !important;
  }

  .app-images {
    height: 600px;
  }

  #cookieNotice {
    font-family: 'Heebo';
    font-size: 16px;
    color: #858585;
    background: white !important;
    background-clip: border-box;
    padding: 10px;
    width: 92% !important;
    border-top: 1px solid#ddd;
    z-index: 99999;
    height: 40vh !important;
    line-height: 25px;
    margin: 10px;
    border: 1px solid #858585;
    border-radius: 5px;
    box-shadow: 0px 3px 15px -6px #000000;
    justify-content: center;
  }

  #cookieNotice button {
    height: 35px;
    font-size: 12px;
  }

  .supp {
    margin-top: 150px !important;
  }

  .faq-heading {
    text-indent: 0 !important;
  }

  .faq label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 60px;
  }

  .faq-text {
    font-family: 'Heebo';
    font-weight: 400;
    color: #919191;
    width: 95%;
    padding-left: 20px;
    margin-top: 50px;
  }

  .faq input[type="checkbox"]:checked+label {
    background-color: #ECECEC;
    display: block;
    background: rgba(255, 255, 255, 255) !important;
    color: #4f7351;
    height: 355px !important;
    transition: height 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .faq input[type='checkbox']:not(:checked)+label {
    display: block;
    transition: height 0.8s;
    height: 100px !important;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
}

@media only screen and (max-width: 768px) {
  .home__logo {
    height: 345px;
    object-fit: cover;
  }

  #image__container img#second__logo {
    max-width: 170px;
  }

  .card {
    width: 100%;
  }

  .middle-section {
    background-size: cover;
  }

  .section__title {
    font-size: 24px;
    line-height: 35px;
  }

  .section__subtitle {
    margin-top: 10px;
    margin-bottom: 10px;
    /*font-size: 13px;*/
    font-size: 24px;
    line-height: 30px;
  }

  .section__contact {
    flex-wrap: wrap;
    background: url(/images/contact-bkg-mobile.png) no-repeat center;
  }

  .section__contact .half-width {
    width: 100%;
  }

  .section__footer .width-30 {
    padding-left: 30px;
    text-align: left;
    width: 100%;
  }

  .section__footer #second__logo {
    max-width: 170px;
  }

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

  .footer-links {
    margin-top: 10px;
    display: block;
  }

  .section__footer li {
    margin-bottom: 10px;
  }

  .page__die-app .width-20 {
    width: 100%;
  }

  .page__die-app .width-30,
  .page__die-app .width-40 {
    width: 100%;
  }

  .page__die-app .width-60 {
    width: 100%;
  }

  .page__die-app .text-right,
  .page__die-app .text-left {
    text-align: center;
  }


  .page__die-app img {
    margin-top: 10px;
    margin-bottom: 10px;

  }

  .page__die-app .app-images {
    height: 530px;
  }

  .page__die-app .width-10 {
    display: none;
  }

  .contact-form {
    padding: 0;
  }

}

@media only screen and (max-width: 600px) {
  .video-section {

    align-self: center;
    text-align: center;
    width: 90% !important;
    height: 250px !important;
  }
}

@media only screen and (min-width:600px) and (max-width: 1300px) {
  .video-section {

    align-self: center;
    text-align: center;
    width: 70% !important;
    height: 450px !important;
  }
}


#cookieNotice {
  position: fixed;
  bottom: 0;
  right: 0;
  color: #858585;
  display: block;
  background: url('../images/Bild 60.png') no-repeat -10px;
  background-size: 110%;
  padding: 10px;
  width: 664px;
  text-align: center;
  border-top: 1px solid#ddd;
  z-index: 99999;
  height: 228px;
  margin: 20px;
  border: 1px solid #858585;
  border-radius: 5px;
  box-shadow: 0px 3px 15px -6px #000000;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
}

#cookieNotice p {
  padding: 30px;
  font-family: 'Heebo';
  text-align: left;
}

#cookieNotice button {
  width: 90% !important;
}

#cookieNotice a {
  font-weight: bold;
}

.faq-heading {
  font-family: 'Heebo';
  font-weight: 400;
  font-size: 19px;
  -webkit-transition: text-indent 0.2s;
  text-indent: 20px;
  color: #333;
}

.faq-text {
  font-family: 'Heebo';
  font-weight: 400;
  color: #919191;
  width: 95%;
  padding-left: 20px;
  margin-bottom: 30px;
}

.faq {
  height: auto;
  border-radius: 4px;
  position: relative;
}

.faq label {
  background-color: #ECECEC !important;
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 6px;
  background-color: #FAFAFA;
  border-bottom: 1px solid #E1E1E1;
  padding: 20px;
  margin: 10px;
  border-radius: 5px;
}

.faq input[type="checkbox"] {
  display: none;
}

.faq .faq-arrow {
  width: 5px;
  height: 5px;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 2px solid rgba(0, 0, 0, 0.33);
  border-right: 2px solid rgba(0, 0, 0, 0.33);
  float: right;
  position: relative;
  top: -30px;
  right: 27px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.faq input[type="checkbox"]:checked+label>.faq-arrow {
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.faq input[type="checkbox"]:checked+label {
  background-color: #ECECEC;
  display: block;
  background: rgba(255, 255, 255, 255) !important;
  color: #4f7351;
  height: 175px;
  transition: height 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.faq input[type='checkbox']:not(:checked)+label {
  display: block;
  transition: height 0.8s;
  height: 60px;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

::-webkit-scrollbar {
  display: none;
}

@media only screen and (max-width: 500px) {
  .preiseMobile {
    display: flex !important;
    flex-direction: column !important;
  }

  .preisePrices {
    width: 80% !important;
    margin-top: 20px;
  }

  .preisePrices h1 {
    font-size: 24px !important;
    font-weight: 500;
  }

  .preisePrices div {
    font-size: 12px !important;
  }

  #price__cta {
    width: 380px;
    min-width: 380px;
    max-width: 380px;
    height: 380px;
    text-align: center;
    border-radius: 50%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 1100px) {
  .funktionenMobile {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center;
    margin: 0 !important;
  }

  .funktionenMobile img {
    margin-top: 40px;
    width: 100%;
  }

  .funktionenMobileContact {
    margin-top: 68vh !important;
    height: 400px;
  }

  .funktionenMobileList {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    margin: 0 !important;
  }

  .funktionenMobileContainer {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    margin: 0 !important;
  }

  .funktionenMobileContainer2 {
    margin-top: 0 !important;
    margin-left: 30px !important;
  }
}