.result{
    width: 88vw;
    height: 75vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.place{
    width: calc(80vw/3);
    height: 350px;    
    border-radius: 10px;
}

.place .image{
    width: 100%;
    height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.place img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;

}

.place .desc{
    width: 100%;
    height: 15%;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
}


.place .number{
    width: calc(100%/10);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(26, 26, 27);
    border-radius: 20px 0 0 20px;
}


.place .number h6{
    color: rgb(13, 235, 31);
}

.place .detail{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 30px;
    margin: 0;
}

.place .detail .title{
    color: black;
    font-size: 1rem;
    font-weight: 800;
    text-transform: capitalize;
}

.place .detail .name{
    color: rgb(255, 255, 255);
    font-size: .9rem;
    text-transform: capitalize;
    margin: 0;
}

.merits{
    display: flex;
    justify-content: center;
    align-items: center;
}

.merit{
    width: calc(70vw/5);
    height: 200px;
    margin: 20px;
}


.merit .image{
    width: 100%;
    height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.merit img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;

   
   
}

.merit .desc{
    width: 100%;
    height: 15%;
    border-radius: 10px;
    
    margin-top: 15px;
}

.merit .number{
    width: calc(100%/10);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.merit .number h6{
    color: rgb(255, 0, 0);
}

.merit .detail{
    display: flex;    
    align-items: center;
    justify-content: space-around;
    padding: 0 5px;
}

.merit .detail .title{
    color: black;
    font-size: 1rem;
    font-weight: 800;
    text-transform: capitalize;
    margin: 0;
}

.merit .detail .name{
    color: rgb(255, 255, 255);
    font-size: .9rem;
    text-transform: capitalize;
    margin: 0;
}