/* 1=#205781
2=#4F959D
3=98D2C0
*/
.contanor{
    flex-direction: column;
    display: flex;
    display: inline-block;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.contanor1{
    flex-direction: row;
    display: flex;
    display: inline-block;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    padding-left: 20px;
}

.card{
    background-color: #4F959D;
    width: 320px;
    border: 2px solid #205781;
    border-radius: 15px;
    text-align: center;
    display: flex;
    padding: 2% 3%;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 0 10px 0 #000000;   
}

.card:hover{
    border: 3px solid #4F959D;
    transition: 0.4s;
    box-shadow: 0 0 15px 0 #000000;   
}

.img{
    width: 300px;
    height: 200px;
    margin-bottom: 3%;
    border-radius: 15px;
}

.img:hover {
    box-shadow: 1px 1px 15px 0 #4F959D;
    border-color: #4F959D;
    transition: 0.4s;
    transform: scale(1.2);
    margin-bottom: 20px;
    width: 300px;
}

.text{
    display: block;
    width: 280px;
    text-align: justify;
    color: black;
}

.ulaline{
    text-align: left;
    display: block; 
    padding-left: 5%;
}

.knowmore{
    color: #000000;
    font-size: 20px;
}

.price{
    color: red;
    font-size: 20px;
}

.trueprice{
    color:#F6F8D5;
    font-size: 20px;
}

.button {
    justify-content: center;
    margin: 60px auto 0 auto;
    background: #98D2C0;
    color:#205781;
    font-weight: bold;
    border: none;
    margin-top: 20px 0  10px 0;
   
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1em;
    transition: 0.3s;
    box-shadow: 0 0 3px 0 black;
    display: flex;
    align-items: center;
}

.button:hover {
    background:#205781;
    color: #98D2C0;
    box-shadow: 0 0 5px 0 black;
}
.text1{
    height: 250px;
}

  @media screen and (max-width: 480px) {
    .card {
        width: 100%;
        padding: 10px;
    }

    .img {
        width: 100%;
        height: auto;
    }

    .button {
        width: 50%;
        padding: 12px;
    }

    .text {
        font-size: 14px;
    }

    .knowmore, .price, .trueprice {
        font-size: 16px;
    }
}