@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
    html,body{
        margin: 0;
        padding: 0;
        background-color: #111;
    }
    *{
        font-family: 'Poppins', sans-serif;
        color: #fff;
    }
    header{
        background-image: url(../get-header-bg.php?type=desktop);
        background-size: cover;
        background-position-y: bottom;
        background-position-x: center;
        background-repeat: no-repeat;
        height: 350px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header-bg{
        width: 100%;
    }
    .header-logo{
        width: 550px;
        max-width: 100%;
    }
    .container{
        width: 1170px;
        margin: 0 auto;
    }
    .cards{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .card .card-content{
        display: block;
        position: relative;
        display: flex;
    }
    .card .card-content::before{
        content: '';
        height: 100%;
        width: 100%;
        position: absolute;
        background: #000000;
        background: linear-gradient(0deg, rgba(0, 0, 0, 1) 10%, rgba(255, 255, 255, 0) 80%);
        opacity: .6;
        top: 0;
        left: 0;
        transition: all 0.3s;
    }
    .card .card-content:hover::before{
        opacity: .8;
    }
    .card-image{
        width: 100%;
        border-radius: 5px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    }
    .card .card-title{
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        position: absolute;
        bottom: 10%;
        left: 10%;
        width: 80%;
    }
    .card .card-title span{
        font-weight: 500;
    }
    .card .card-title > i.fa{
        background: rgba(255,255,255,1);
        border: 2px solid #fff;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        color: #000;
        position: absolute;
        right: 0;
        font-size: 12px;
        transform: translateY(-50%);
        top: 50%;
        transition: 0.3s all;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .card:hover a > i.fa{
        background: rgba(255,255,255,0);
        color: #fff;
    }
    .copyright{
        font-size: 12px;
        color: #333;
        width: 100%;
        text-align: center;
        padding: 20px 0;
    }
    @media only screen and (max-width: 600px) {
        .container{
            width: 90%;
        }
        .card{
            width: 100%;
            flex-direction: column;
            align-items: center;
        }
        header{
            background-image: url(../get-header-bg.php?type=mobile);
            height: 250px;
        }
        .header-logo{
            width: inherit;
        }
    }