@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: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: linear-gradient(#6d440b,#4b2f07, #0b0b0b);*/
     /*background:radial-gradient(#6d440b,#6d440b,#6d440b,#0b0b0b);*/
       background:radial-gradient(#915b11,#915b11,#0b0b0b);

}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 610px;
    width: 350px;
    background-color: #3a3a3c;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 1px 1px 30px #d99c47;
}

.profile-card .logo img {
    width: 205px;
    height: 150px;
    animation: x 2s ease 1;
}

@keyframes x {
    0% {
        opacity: 0;
        translate: 0 -55px;
    }

    100% {
        opacity: 1;
        translate: 0 0;
    }
}

.profile-card .text-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: y 2.5s ease 1;
}

.text-data .name {
    margin-top: 5px;
    font-size: 21px;
    font-weight: 600;
    color: #e0e0e9;
}

.text-data .job {
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 600;
    color: #e0e0e9;
    ;

}

@keyframes y{

    0%{
        opacity: 0;
    }

    100%{
        opacity: 1;
    }
}

.profile-card .line {
    margin: auto;
    background: #d99c47;
    width: 255px;
    height: 1px;
    margin-top: 5px;
    box-shadow: 1px 1px 8px #d99c47;
}


.profile-card .text-data2 .name {
    margin-top:5px;
    color: #fff;
    text-transform: capitalize;
    display: flex;
    flex-direction: column;
    align-items: start;
    font-size: 18px;
    font-weight: 600;
    animation: y 2s ease 1;
}

.icons {
    margin: 5px 0 0 0px;
    background-color: #3a3a3c;
    box-shadow: 1px 1px 25px #0b0b0b;
    height: 220px;
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 295px;
    gap: 25px;
    border-radius: 10px;
}

p {
    display: flex;
    text-transform: capitalize;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 12px;
}

a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
}

a:hover {
    color: #d99c47;
}

p:hover {
    color: #d99c47;
}

.profile-card .icons .item1 {
    margin-right: 25px;
    margin-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: y 3s ease 1;
}

.icons .item1 a i {
    display: flex;
    justify-content: center;
}

.profile-card .icons .item2 {
    margin-left: 40px;
    margin-right: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: y 3s ease 1;
}



.profile-card .icons .item3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: y 3s ease 1;
}

.profile-card .icons .item4 {
    margin-right: 45px;
    margin-left: 45px;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: y 3s ease 1;
}

.profile-card .text .find{
    margin-top:10px;
    color: #fff;
    text-transform: capitalize;
    display: flex;
    flex-direction: column;
    align-items: start;
    font-size: 18px;
    font-weight: 600;
    animation: y 2.5s ease 1;
}

.profile-card .social .facebook,
.insta {
    font-size: 25px;
    border-radius: 10px;
    cursor: pointer;
    border: #d99c47 solid 2px;
    margin-top: 10px;
     animation: y 2.5s ease 1;
}

.social {
     /* margin-top: 5px;  */
    display: flex;
    width: 260px;
    justify-content: space-evenly;
    align-items: center;
    color: #fff;
    margin-bottom: 5px; 
}

.ve {
    display: flex;
    padding: 3px;
}


.profile-card .footer {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    font-size: 12px;
    color: #fff;
    letter-spacing: 1px;
     animation: y 2.5s ease 1;
  

}

.profile-card .footer a {
    color: #fff;
    margin-left: 3px;
}

.profile-card .footer a:hover {
    color: #d99c47;
}