@font-face {
    font-family: "Museo";
    src: url("/assets/fonts/Museo_Slab_3.otf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100vh;
    width: 100vw;
}

body {
    color: #333;
}

.btn-primary {
    background-color: #a7414e;
    border-color: #a7414e;
}

.btn-primary:hover {
    background-color: #8b3341;
    border-color: #8b3341;

}

.text-grey {
    color: #F6F6F6 !important;
}

.text-primary {
    color: #A5414D !important;
}

.text-secondary {
    color: #;
}

.text-tertiary {
    color: #F4ADB5 !important;
}

/* Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    z-index:999999;
}
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    transition: transform 0.5s ease-in-out;
}
.popup.show {
    visibility: visible;
    opacity: 1;
}
.popup.show .popup-content {
    transform: scale(1);
}
.close-btn {
    cursor: pointer;
    background: #a7414e;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

/* Sections */

.intro-section {
    border-left: 5px solid #A5414D;
}

.title {
    color: #A5414D;
    font-weight: 600;
}

.title-liste {
    font-weight: 600;
    color: #A5414D;
}

.subtitle {}

.elevated-img {
    filter: drop-shadow(-15px 15px 15px rgba(0, 0, 0, 0.3));

}

.elevated-1 {
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.5);
}

/* Header */

.hero-header {
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(45deg, #933C47 25%, #B7515E 75%, #A7414E 100%);
}

.nav-item a {
    border-right: 2px solid #F6F6F687;
    padding: 0.5rem 2rem;
    display: flex;
    font-size: 1.2rem;
    text-decoration: none aliceblue;
    color: #F6F6F6;
  }

.nav-item:last-child a {
    border-right: none !important;
}

/* Under hero */

.under-hero {
    margin-top: -16vh;
    background-image: linear-gradient(#F6F6F6, white);
    padding: 7vh 0 5vh 0;
}

/* Sections */

.card-sub {
    background-image: linear-gradient(45deg, #fff 10%, #f6f6f6 50%, #fff 90%);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 16px 32px #00000036;
    height: 100%;
  }

.label {
    font-size: 0.8rem;
    margin: 0;
}

.card li {}

.card-sub li {
    background: url(/assets/images/check-round.svg);
      background-position-x: 0%;
      background-position-y: 0%;
      background-repeat: repeat;
    background-repeat: no-repeat;
    list-style: none;
    padding-inline-start: 2rem;
    background-position: 0 0.3rem;
    line-height: 1.8rem;
  }

  .elfsight-app-2e6ba4ae-6824-4dcb-b65d-987d6d25f769 {
    background-image: linear-gradient(45deg, #fff 10%, #f6f6f6 50%, #fff 90%);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 16px 32px #00000036;
    height: 100%;
    width: 100%;
  }

  .ButtonBase__ButtonContainer-sc-p43e7i-3.euBiGU {
    background-image: linear-gradient(45deg, #933C47,#B7515E,#A7414E) !important;
  }

.footer-logo {
    height: 80px;
    /*     margin-bottom: 1rem;
 */
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d8a1a7;
}

.image img {
    max-width: 100%;
    height: auto;
}

.loader {
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #A6414D;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.text {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
}

/* => SM 
  */
@media (max-width: 768px) {

    .under-hero {
        margin-top: 0;
        padding: 3vh 0 3vh 0;
    }

    .hero-header {
        width: 100vw;
        height: 100vh;
        background-image: linear-gradient(45deg, #933C47 25%, #B7515E 75%, #A7414E 100%);
    }

}

/* MD strict
  */
@media (min-width: 769px) and (max-width: 992px) {}

/* => MD 
*/
@media (max-width: 992px) {}

/* LG strict
  */
@media (min-width: 993px) and (max-width: 1200px) {
    body {
        /*         font-size: 17px;
 */
    }



}

/* XXL strict
  */
@media (min-width: 1201px) {
    body {
        /*         font-size: 18px;
 */
    }

}