/*-------------------- CSS --------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none !important;
}

body {
    min-height: 100vh;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    /* background: #1977cc; */
    font-family: "Sora", sans-serif;
}

.container {
    width: 320px;
    height: 600px !important;
    perspective: 1000px;
}

.card {
    border: 10px solid black;
    height: 100%;
    border-radius: 40px;
    /* background-color: #1977cc; */
    background: linear-gradient(#00eeff, #1977cc);
    /* background: linear-gradient(135deg, #000000, #ffffff); */
    /* transition: 0.5s ease-in-out; */
    /* transform-style: preserve-3d; */
    box-shadow:
        #05471100 40px 50px 25px,
        #02140033 0px 25px 25px;
}

.logo-img{
    background-color: white;
    height: 80px;
    border-radius: 30px 30px;
    /* border-top: 4px solid black; */
    margin:10px 7px 7px 7px;
    /* margin-bottom: 15px; */
    text-align: center !important;
    position: relative;
}

.img-main{
    height: 150px;
    background-color: white;
    width: 150px;
    margin: 0 auto;
    border-radius:50%;
    position: absolute;
    top: 100px;
    /* border: 2px solid gray; */
    z-index: 999 !important;
    left: 0px;
    right: 0px;
    background-color: #004aad;
    
}
.img-main img{
    border-radius: 50%;
    height: 150px;
    width: 100%;
    /* border: 4px solid rgba(128, 128, 128, 0.466); */
}

.text-content{
    margin: 7px;
    background-color: white;
    height: 350px;
    border-radius: 30px 30px;
    text-align: center !important;
    position: absolute;
    bottom: 10px;
    padding-top: 50px;
}

.logo-text{
    padding: 25px 0px;
}


.footer {
    transform-style: preserve-3d;
    /* position: absolute; */
    top: 0px;
    bottom: 15px;
    left: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .link {
    transition: 0.2s ease-in-out;
    font-size: 14px;
    color: #000000;
    cursor: pointer;
}


.footer .social {
    transform-style: preserve-3d;
    display: flex;
    gap: 10px;
}

.footer .social .social_icons {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #fff;
    /* color: var(--prime_color); */
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: #05471180 2px 2px 5px;
    transition: 0.5s;
}

@media(min-width:991px) {
    .logo-text h3{
        font-size: 24px;
    }
}