.flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    
}
.circle-img{
    width:300px;
    height:300px !important;
    object-fit: cover;
}

.card1 {
    display: flex;
    flex-direction: column;
    width: 312px;
    height: 400px;
    justify-content: space-between;
    background: #fff;
    border-radius: 10px;
    border: 1px solid lightgrey;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}
.card-img{
    width: 100rem;
    height:30rem;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%; /* 40% of 400px */
    object-fit: contain;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card1:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.card-content {
    flex: 1;
    margin-top: 5rem;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.btn {
    align-self: flex-end;
    border-radius: 10px;
    padding: 10px 16px;
    border: 1px solid darkgray;
    background-color: teal;
    color: white;
    cursor: pointer;
}
.btn:hover ::before {
    transform: scaleX(1);
}
@media screen and (max-width: 768px) {
    .circle-img{
        width:250px;
        height:250px;
        object-fit: cover;
    }
}
/*#destination-sec{*/

/*    background-size: cover ;*/
/*}*/
