/* Start Choosing */
#product1{text-align:center;}

.pro-container{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    justify-content: space-between;
    padding-top:20px;
}

.pro{
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
    position:relative;
    width: 23%;
    height: 530px;
    padding:10px 25px;
    border: 1px solid #cce7d0;
    cursor:pointer;
    box-shadow:20px rgba(3, 17, 57, 0.1);
    margin: 15px 0;
    transition:0.2s ease;
}

.pro:hover{
    box-shadow: 20px 20px 30px rgba(3, 17, 57, 0.1);
}

.pro img{
    width: 100%;
    height: 60%;
    border-radius:20px;
}

.hover-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color:#115B7B;
    color:white;
    border: 2px solid #465b52;
    padding: 10px 20px;
    font-size: 16px;
    width:200px;
    border-radius: 5px;
    opacity: 0;
    transition: 0.3s ease;
    cursor: pointer;
}

.pro:hover .hover-button {
    opacity: 1;
    box-shadow: 10px 10px 20px rgba(3, 17, 57, 0.1);
}