@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}
body{
    font-family: 'Roboto', sans-serif;
    width: 100%;
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: url("img/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
.row{
    padding: 6rem 0;
    width: 90%;
    max-width: 1170px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 45px 20px;
    flex-wrap: wrap;
}
.row .card{
    width: 300px;
    background: #fff;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 50px -20px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}
.row .card:hover{
    transform: translateY(-25px);
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.7);
}
.row .card .imgWrapper{
    width: 100%;
    height: 280px;
    position: relative;
}
.row .card .imgWrapper img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}
.row .card .imgWrapper img:nth-child(1){
    opacity: 0.5;
    clip-path: circle(100% at 35% 0);
}
.row .card .imgWrapper img:nth-child(2){
    opacity: 1;
    clip-path: circle(95% at 25% 0);
}
.row .card .content{
    padding: 20px;
    padding-bottom: 30px;
    text-align: center;
}
.row .card .content h3{
    font-size: 22px;
    line-height: 30px;
    padding-bottom: 15px;
    color: #2d3436;
}
.row .card .content a{
    display: inline-block;
    text-decoration: none;
    padding: 15px 30px;
    color: #fff;
    background: #ee7e2c;
    user-select: none;
    border-radius: 50rem;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}