@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:  "poppins",sans-serif ;
}

body{
    height: 100vh;
    background:#c83427;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-card{
    height: 660px;
    width: 350px;
    border-radius: 24px;
    box-shadow: 1px 1px 30px black;
    background:#fff;
    border: solid 3px #c83427;

 }

 .profile-card .logo  img {
    margin-top: 10px;
    margin-left: 40px;
    width: 270px;
    height: 90px;
 }

 .profile-card .line {
    margin-top: 10px;
    margin-left: 39px;
    background: #c83427;
    width: 240px;
    height: 1px;
}

.profile-card .text-data .name2 {
    color: #393a39 ;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    margin-left: 5px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
}

.icons {
    margin: 15px 0 0 25px;
    background-color: #fff;
    box-shadow: 1px 1px 15px black;
    height: 220px;
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 300px;
    gap: 25px;
    border-radius: 10px;
    border: solid 2px #393a39;

}

p {
    display: flex;
    text-transform: capitalize;
    color: #393a39;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 15px;
}

a {
    color: #c83427;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
}

a:hover {
    color: #c83427;
}

/*p:hover {*/
/*    color: #c83427;*/
/*}*/

.profile-card .icons .item1 {
    margin-left: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.icons .item1 a i {
    display: flex;
    justify-content: center;
}

.profile-card .icons .item2 {
    margin-left: 50px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.profile-card .icons .item3 {
    margin-right: 17px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.profile-card .icons .item4{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.profile-card .text .find {
    display: flex;
    justify-content: center;
    color: #393a39;
    text-transform: capitalize;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 15px 0 15px;
    margin-left: 5px;
}

.profile-card .social .facebook,
.insta {
    font-size: 30px;
    border-radius: 15px;
    cursor: pointer;
    border: #393a39 solid 2px;
    margin-left: 50px;
    margin-top: 5px;
}

.social {
    margin-top: 5px;
    display: flex;
    width: 300px;
    justify-content: space-evenly;
    align-items: center;
    color: #c83427;
    gap: 10px;
}

.ve {
    display: flex;
    padding: 5px;
}

.profile-card .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    margin-bottom:5px;
    background:#fff;


}

.buttons .button {
    letter-spacing: 1px;
    text-transform: capitalize;
    padding: 5px 16px;
    margin: 15px 15px 0px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 24px;
    border: solid 2px #393a39;
    cursor: pointer;
      box-shadow: 1px 1px 5px #000;
}

.share-btn {
    position: relative;
    border: none;
    background-color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 25px;
    padding-top: 2.5px;
    padding-right: 3px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    justify-content: center;


}

.share-btn a {
    color: #c83427;
}

.share-options {
    position: absolute;
    bottom: 40%;
    left: 53%;
    width: 65px;
    height: 70px;
    transform-origin: bottom right;
    transform: scale(0);
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background: rgba(15, 15, 15, 0.5);
    color: #fff;
    padding: 10px;
    font-family: 'roboto';
    transition: .5s;
    transition-delay: .5s;
    ;
}



.share-options.active {
    transform: scale(1);
    transition-delay: 0s;
}

.share-options.active,
.share-options.active,
.share-options.active {
    opacity: 1;
    transition: .5s;
    transition-delay: .5s;
}


.share{
    display: flex; 
    justify-content: center;
   /*margin-right: 10px;*/
   gap: 30px;
   margin-top: 10px;
  
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

#closePopupButton{       
    font-size:17px;
    margin-top:10px;
    }

    #installPopup {
        display: none;
        padding: 15px  30px;
        width: 80%;
        max-width: 400px;
        border: 1px solid black;
        background: #f9f9f9;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1000;
        text-align: center;
        
    }
    

    /* Install button styling */
    #multiActionButton {
        display:inline;
        padding: 0px 15px;
        font-size: 25px;
        color:#c83427 ;
        background-color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 3px;
    }


.profile-card .footer {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    font-size: 12px;
    color: #393a39;
    letter-spacing: 1px;
     font-weight: 600;

}

.profile-card .footer a {
    color: #000;
    margin-left: 3px;
}

.profile-card .footer a:hover {
    color: #c83427;
}