body{
    font-family: 'iransans';
}
.box{
    display: flex;
    flex-direction: column;
    margin: 100px auto;
    width: 70%;
}
.box .title h1{
    font-size: 27px;
    font-weight: bold;
    color: #3b82f6;
    text-align: center;
    margin-bottom: 0px;
}
.box .title span{
    font-size: 16px;
    color: #656565;
    text-align: center;
    display: block;
}
.box .btn{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.box .btn a:first-child{
    margin-left: 30px;
    margin-bottom: 0;
}
.box .btn button{
    background-color: #3b82f6;
    color: white;
    border: none;
    outline: none;
    padding: 12px 30px;
    font-family: "iransans";
    max-width: 300px;
    width: 100%;
    transition: all 0.3s;
    white-space: normal;
    border-radius: 5px;
    box-shadow: 0 10px 10px 0 #3f87fb5a;
    cursor: pointer;
    font-size: 14px;
}
.box .btn button:hover{
    transform: translateY(3px);
}
.imgs{
    margin-top: 50px;
    height: 300px;
    display: flex;
    justify-content: center;
}
.image-box{
    width: calc(100% / 2);
    max-width: 220px;
    padding: 15px;
}
.image-box:first-child{
    margin-right: 10px;
}
.image-box img{
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 15px 11px 0 #a6a6a6;
    border: 7px solid #000;
    border-radius: 15px;
    height: auto;
}

@media (max-width: 600px){
    .btn{
        flex-wrap: wrap;
    }
    .btn button:first-child{
        margin-left: 0 !important;
        margin-bottom: 30px !important;
    }
    .imgs{
        flex-wrap: wrap;
    }
    .image-box {
        width: 100% !important;
    }
    .image-box:last-child{
        margin-right: 10px;
    }
}
