.biodata-cont {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 25px;
}

.col-card {
    min-height: 50vh;
    max-width: 30%;
    /* background-color: rgba(255, 255, 255, 0.384); */
    backdrop-filter: blur(2px);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 3%;
    padding: 4%;
}

.card-header {
    margin-bottom: 010px;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.rsec-1 {
    min-height: 32vh;
    max-width: 94vw;
    /* background-image:url(../images/s4.jpg); */
    background-color: rgba(0, 0, 0, 0.897);
    background-size: cover;
    margin-left: 3%;
    margin-top: 3%;
    text-align: center;
    padding: 3%;
}

.rsec-1 h1,
.rsec-1 p {
    color: #FFEE5B;
}

.rsec-1 h1,
.sec-2 h1,
.sec-3 h1 {
    line-height: 2;
}

.download-resume {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.download-resume-btn {
    text-decoration: none;
    font-weight: bold;
    color: black;
    background-image: linear-gradient(270DEG, rgb(204, 126, 2), rgb(243, 226, 122));
    width: 170px;
    height: 40px;
    text-align: center;
    padding-top: 10px;
    box-shadow: 1px 1px 10px rgb(0, 0, 0);
    border: 2px solid#FFEE5B;
}

.download-resume-btn:hover {
    box-shadow: 0px 0px 10px #FFEE5B, inset 0px 0px 10px #FFEE5B;
    background-color: black;
    transition: all 100ms ease-out;
    transform: scale(1.1);
    /* text-shadow: 0px 0px 10px rgb(0, 238, 255); */
}

.resume-image {
    width: 30%;
    border-radius: 50%;
    border: 4px solid #FFEE5B;
}

@media screen and (max-width: 500px) {
    .resume-image {
        width: 70%;
    }
    .biodata-cont {
        flex-direction: column;
    }
    .col-card {
        max-width: 100%;
        margin: 4% 0%;
        padding: 10%;
    }
}


/* tablet css */

@media only screen and (min-device-width: 600px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
    .rsec-1 {
        font-size: 120%;
    }
    .resume-image {
        width: 50%;
        border-radius: 50%;
        border: 4px solid #FFEE5B;
    }
    .download-resume-btn {
        width: 200px;
        height: 50px;
    }
    .biodata-cont {
        flex-direction: column;
    }
    .col-card {
        max-width: 100%;
        margin: 4% 0%;
        padding: 10%;
        font-size: 160%;
    }
}