.btn-team-lisa2 {
    position: fixed;
    bottom:-10px;
    right: 3%;
    height: 55px;
    background-color: #ffffff;
    padding: 10px 30px 10px 25px;
    border: 0 solid #ffffff;
    border-radius: 5px;
    box-shadow: -3px 2px 14px 0 #a5868a;
    color: #333;
    font-family: 'MidnightDrive'; 
    font-size: 1.5rem;
    z-index: 1000;
    text-decoration: none;
}

.btn-team-lisa2:hover {
    color: pink !important;
    text-decoration: none !important;
}

.btn-team-lisa2 a:visited {
    text-decoration: none !important;
}

.btn-team-lisa2 a:active {
    text-decoration: none !important;
}

/*@font-face {
    font-family: "MidnightDrive";
    src: url("font/Midnight_Drive.otf");
}


@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
}

*/

.popup{
    width: 400px;
    background: #fff;
    border-radius: 6px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%) scale(0.1);
    text-align: center;
    padding: 0 30px 30px;
    color: #333;
    visibility: hidden; 
    transition: transform 0.4s, top 0.4s;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2)
}

.open-popup{
    visibility: visible;
    top: 50%;
    transform: translate(-50%,-50%) scale(1);
}

.popup a:link {
    text-decoration: none;
    color: #333333;
}

.popup a:visited {
    text-decoration: none;
    color: #333333;
}

.popup picture img {
    width: 100px;
    margin-top: -50px;
    border-radius: 50%;
    /*   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);  */
    display: inline;
}

.popup h2{
    font-size: 38px;
    font-weight: 500;
    margin: 30px 0 10px;
    font-family: 'MidnightDrive'; 
}
.popup button{
    width: 100%;
    margin-top: 25px;
    padding: 10px 0;
    background: #eccfd2;
    /* 745a64 */
    color: #ffffff;
    font-weight: bold;
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}
.popup p{
    padding-top: 10px;
}

.contact-popup-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 5px 0 5px 10%;
    font-size: 1.5rem;
}

.contact-popup-column {
    flex: 1;
    max-width: 50%;
    text-align: left;
}

#btn-contact-popup-close {
    text-decoration: none;
}

/* For small mobile screens */ 

@media only screen and (max-width: 410px) {
    .popup {
        width: 350px;
    }
  }

@media only screen and (max-width: 360px) {
    .popup {
        width: 300px;
    }
  }

@media only screen and (max-width: 300px) {
    .popup {
        width: 250px;
    }
  }