.cards{
    width: 95vw;
    min-height: 60vh;
    /* border: 2px solid black; */
    margin: auto;
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
    gap: 35px;
    position: relative;
}
.card{
    width: 350px;
    height: 395px;
    border-radius: 20px;
    background: #fff;
    padding-left: 7px;
    padding-top: 7px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: none;
}

.image{
    margin: 7px;
    display: flex;
    border-radius: 10px;
    width: 320px;
    height: 200px;
    overflow: hidden;
}
img{
    border-radius: 6px;
    transition: transform 1.1s;
}
.image img:hover{
    transform: scale(1.1);
}
.text{
    display: flex;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
}
.text span{
    width: 300px;
    margin-top: 10px;
    font-size: 12px;
}
.text h3{
    font-size: 23px;
}
.button{
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.duration{
    font-weight: bold;
    font-size: small;
    color: black;
    width: 135px;
    display: flex;
    justify-content: center;
    align-items: center;
    position:absolute;
    top: 15px;
    right: 20px;
    border-radius: 7px;
    background-color: rgb(22, 207, 231 , 0.5);
    height: 25px;
}
.duration img{
    position: relative;
    height: 17px;
    width: 17px;
    margin-right: 2px;
}
.intern-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.con-btn{
    color: white;
    width: 260px;
    border: 1px solid white;
    border-radius: 100px;
    height: 45px;
    display: flex;
    margin-top: 2px;
    justify-content: center;
    align-items: center;
}
.con-btn:hover{
    background-color: white;
    color: #3CB2F6;
}
@media (max-width: 600px) {
    .internship-card {
        width: 45%; /* Two cards per row */
    }
    .duration{
        width: 125px;
        font-size: 12px;
    }
    
}

@media (max-width: 767px) {
    .con-btn{
        color: white;
        background-color: #3CB2F6;
        width: 260px;
        margin-top: 2px;
        border: 1px solid white;
        border-radius: 100px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
@media (max-width:600px) {
    .con-btn{
        color: white;
        background-color: #3CB2F6;
        width: 100%;
        margin-top: 2px;
    }
}
@media (max-width: 400px) {
    .con-btn{
        color: white;
        background-color: #3CB2F6;
        width: 100%;
        /* margin-left: 30px; */
        margin-top: 2px;
    }
}

