@font-face {
    font-family: irans;
    src: url(Fonts/IRANSansWeb.woff2);
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: irans;
}
.card-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100vw;
    height: 500px;
    & > .box {
        width: 350px;
        box-shadow: 0px 0px 7px 4px #a3a3a3;
        border-radius: 3px;
        position: relative;
        margin: 20px;
        transition: all ease-in-out 0.5s;
        &:hover {
            transform: scale(1.1);
        }
        & > .offer {
            display: inline-block;
            background-color: red;
            position: absolute;
            top: 30px;
            left: 0;
            width: 100px;
            transform: rotate(-45deg);
            font-size: 14px;
            color: white;
        }
        & > .image-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 3px 3px 0px 0px;
        }
    }
}
h2 {
    text-align: center;
    margin: 20px 0px;
}
p {
    text-align: center;
    margin: 10px;
}
h2 + p {
    margin-top: 20px;
    font-weight: 600;
    color: #f11111;
}
button {
    color: white;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5dadec;
    border: 1px solid white;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.4s;
    margin-bottom: 10px;
    font-size: 16px;
    border-radius: 3px;
    &:hover {
        background-color: white;
        color: #5dadec;
        border: 1px solid #5dadec;
    }
}