.bullet-points li:before {
    position: relative;
    top: 0;
    float: left;
    display: inline-block;
    margin-right: 8px;
    color: #b33a3a;
    content: "\e64d";
    font-family: themify;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 28px;
    font-size: 13px
}

.bullet-points p {
    padding-left: 22px;
    position: relative;
    margin-bottom: 2px;
    line-height: 28px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 50;
}

.bullet-points-small li:before {
    position: relative;
    top: 0;
    float: left;
    display: inline-block;
    margin-right: 8px;
    color: #000000;
    content: "\e64d";
    font-family: themify;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 28px;
    font-size: 13px
}

.bullet-points-small p {
    padding-left: 22px;
    position: relative;
    margin-bottom: 2px;
    line-height: 28px;
    font-size: 16px;
}

.align-middle {
    vertical-align: middle;
}

.p16 {
    padding: 16px;
}
.p32 {
    padding: 32px;
}

.pl8 {
    padding-left: 8px;
}
.pl16 {
    padding-left: 16px;
}

.mr32 {
    margin-right: 32px;
}

.card {
    width: 240px;
    height: 400px;
    padding: 0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 14px 26px rgba(1, 0, 0, 0.08);
    transition: all 0.3s ease-out;
    text-decoration: none;
    cursor: pointer;
}


.card-img-container {
    width: 100%;
    height: 70%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-content {
    height: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-content h4 {
    margin-bottom: 0;
    font-weight: 600;
}

.card:hover {
box-shadow: 0 14px 26px rgba(1, 0, 0, 0.13);
}

.bolder {
    font-weight: 700;
}

.border-bottom-primary {
  border-bottom: solid 3px var(--primary-color);
  padding: 0 16px;
  width: auto;
  padding-bottom: 6px;
}
.border-bottom-secondary {
  border-bottom: solid 3px var(--orange-color);
  padding: 0 16px;
  width: auto;
  padding-bottom: 6px;
}


@media (max-width: 767px) {
    .image-small-container > img {
    width: 100px;
    }
}

.box-shadow {
   box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.color-box {
    background-color: var(--orange-color);
    color: white;
    padding: 13px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    font-weight: bold;
    font-size: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-left: -32px;
    margin-right: -32px;
}



/* change only numbers; nothing else */
:root{
    --smartphone-width: 370px;
    --smartphone-height: 810px;
  }
  
  /* **************************** */
  /* not needed for demonstration */
  html{
    background-color: darkgray;
  }
  .device-container {
      display: flex;
      justify-content: space-around;
      align-content: stretch;
      flex-direction: row;
      flex-wrap: wrap;
      flex-grow: 1;
      align-items: center;
      max-height:max-content;
  }
  
  .mySmartphone{
    position: relative;
    width: var(--smartphone-width); /* 360px */
    height: var(--smartphone-height); /* 640px */
    margin: auto;
    border: 16px #161616 solid;
    border-top-width: 30px;
    --border-top-width: 30px;
    border-bottom-width: 80px;
    border-radius: 40px;
    background-color: black;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
  }
  
  /* Lautsprecher */
  .mySmartphone::before{
    content: '';
    display: block;
    width: calc(var(--smartphone-height) / 3.5);
    height: 5px;
    position: absolute;
    top: calc((var(--border-top-width) / 2) * -1);
    left: 50%;
    transform: translate(-50%, -50%);
    background: #333;
    border-radius: 10px;
  }
  
  /* Button */
  .mySmartphone::after{
    content: '';
    display: block;
    width: 58px;
    height: 38px;
    position: absolute;
    left: 50%;
    bottom: calc((var(--smartphone-height) - var(--smartphone-height) * 1.105));
    transform: translate(-50%, -50%);
    background: #333;
    border: 1px solid grey;
    border-radius: 20%;
    -webkit-border-radius: 20%;
    -moz-border-radius: 20%;
    -ms-border-radius: 20%;
    -o-border-radius: 20%;
  }
  
  /* Zurück */
  .mySmartphone .arrow-left {
    width: 0;
    height: 0;
    position: absolute;
    left: 15%;
    bottom: calc((var(--smartphone-height) - var(--smartphone-height) * 1.07));
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid rgb(88, 88, 88);
    border-radius: 5px 5px 5px 5px;
  }
  
  .hamburger {
    position: absolute; 
    left: 80%;
    bottom: calc((var(--smartphone-height) - var(--smartphone-height) * 1.06));
    width: 1.25em;
    height: 0.8em;
    margin-right: 0.3em;
    border-top: 0.2em solid #636262;
    border-bottom: 0.2em solid #696767;
  }
  
  .hamburger::before {
    content: "";
    position: absolute;
    top: 0.3em;
    left: 0px;
    width: 100%;
    border-top: 0.2em solid #696969;
  }
  
  /* Bildschirm */
  .mySmartphone .content{
    width: var(--smartphone-width);
    height: var(--smartphone-height);
    background: white;
    border-radius: 40px;
    background-position: center center;
    background-size: cover;
    object-fit: cover;
    position: relative;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
  }
  
  /* An/Aus Knopf */
  .mySmartphone .myPower{
    background: #161616;
    height: 80px;
    position: absolute;
    right: -20px;
    top: calc(var(--smartphone-height) / 15);
    width: 15px;
    border-radius: 15%;
  }
  
  /* Lauter */
  .mySmartphone .myPower::before{
    content: "";
    display: block;
    background: #161616;
    height: 60px;
    position: absolute;
    top: 130px;
    width: 15px;
    border-radius: 25%;
  }
  
  /* Leiser */
  .mySmartphone .myPower::after{
    content: "";
    display: block;
    background: #161616;
    height: 60px;
    position: absolute;
    top: 199px;
    width: 15px;
    border-radius: 25%;
  }
  
  .mySmartphone .nook{
    /* TODO */
  
  }

  .orange-page-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--orange-color);
  }

  .image-preview-blog {
    width: 200px;
    height: 200px;
  }

  .image-preview-blog > img {
    width: 100%;
    height: 100%;
    padding: 24px;
    object-fit: cover;
  }

  .column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .blog-card {
    max-height: 476px;
    height: 476px;
  }
  
  .title-preview-blog {
    color: var(--primary-color);
    font-weight: 600;
  }

  .primary-color {
    color: var(--primary-color);
  }

  .secondary-color {
    color:var(--orange-color);
  }

  .cursor-pointer {
    cursor: pointer;
  }

  .text-decoration-none {
    text-decoration: none;
    color: #666;
  }

  .text-decoration-none:hover {
    color: #666;
  }

  .height-496 {
    max-height: 476px;
    height: 476px;
  }

  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .ft-24 {
    font-size: 24px;
  }
  .ft-28 {
    font-size: 28px;
  }
  .ft-32 {
    font-size: 32px;
  }

  .blockquote {
    margin-top: 32px;
    border: solid 1px var(--primary-color);
    border-radius: 8px;
    padding: 24px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  }

  .blockquote > p {
    font-size: 16px;
  }

  .post-snippet > p {
    margin-bottom: 12px;
  }

  .mds-social {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 20px;
    transform: translate(-50%, -50%);
    top: 50%;
    z-index: 999;
  }

  .mds-social > a{
    opacity: 0.6;
  }

  .mds-social > a:hover{
    opacity: 1;
  }
  div.mds-social i {
    pointer-events: auto;
  }

  .mds-social-icon {
    display: block;
    font-size: 32px;
    padding: 8px;
    cursor: pointer;
    z-index: 999;
    color: black;
  }


  .mds-large-social-icon {
    font-size: 55px;
    padding: 8px;
    cursor: pointer;
    z-index: 999;
    color: black;
    opacity: 0.6;
  }

  a:hover > .mds-large-social-icon {
    opacity: 1;;
  }

  .floating-div-icon{
    margin: 5px;
    opacity: 0.6;
  }
  .floating-div-icon > img{
    max-width: 50px;
  }

  .floating-div-icon:hover{
    opacity: 1;
  }
  
  .floating-div-icon-container{
    display: flex;
    flex-direction: column;
  }

  .floating-div-container{
    z-index: 999;
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 50px;
  }

  .floating-div {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .floating-div-text{
    width: 0;
    font-weight: bold;
    overflow: hidden;
    transition: width 0.3s ease;
    max-height: 50px;
  }

  .floating-div-text.visible {
    width: 110px;
  }

  @media (max-width: 992px) {
    .hide-sm {
        display: none;
    }
}

.popup {
  display: none;
  justify-content: center; /* Centre horizontalement */
  align-items: center; /* Centre verticalement */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
  z-index: 1000;
  overflow-y: auto; /* Permettre le défilement si le contenu est trop grand */
  padding: 20px; /* Ajoute du padding pour éviter que le contenu touche les bords */
}

.popup-content {
  display: flex;
  flex-direction: row;
  align-items: center; /* Centrer verticalement les éléments (image + texte) */
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  max-width: 600px; /* Largeur maximale du pop-up */
  max-height: 80vh; /* Hauteur maximale pour éviter que le contenu dépasse trop */
  overflow-y: auto; /* Permettre le défilement si nécessaire */
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  position: relative;
}

.popup-image {
  flex: 1;
  margin-right: 20px;
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.popup-image img {
  width: 100%; /* L'image prend toute la largeur du conteneur */
  height: 100%; /* L'image prend toute la hauteur du conteneur */
  object-fit: cover; /* Remplit le conteneur tout en maintenant les proportions */
  border-radius: 10px;
}

.popup-text {
  flex: 2; /* Prend 2/3 de la largeur totale */
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #052149;
  cursor: pointer;
}

.popup h2 {
  margin-top: 0;
  color: #052149; /* Couleur du texte personnalisable */
}

.popup p {
  font-size: 16px;
  color: #052149; /* Couleur du texte personnalisable */
}

.popup-button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  background-color: #E67D08; /* Couleur du bouton */
  color: white;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

.popup-button:hover {
  background-color: #E67D08; /* Couleur du bouton au survol */
}

/* Positionne le bouton de connexion à droite */
.menu {
    width: 100%;
    list-style-type: none;
}

.login-button {
    float: right;
    margin-left: auto;
}

.testimonial {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: auto;
}

.quote {
    color: #ef7f1b;
    font-size: 24px;
    font-weight: bold;
}

.text {
    font-style: italic;
    color: #555;
}

.author {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

.profile {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-top: 10px;
}
