* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Roboto', sans-serif;
}

a {
    text-decoration: none;
}
#header-section {
    width: 100%;
    margin-top: 30px;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
}
#header-section a {
    text-decoration: none;
    color: #000000;
}

.logo img {
    margin-top: 15px;
    max-width: 200px;
    margin-bottom: 15px;
}

/* Grid */ 
.wrapper {
    width: 100%;
}
.wrapper .cards_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.wrapper .card_item {
    width: 40%;
    padding: 10px;
}
.cards_wrap .card_inner {
    cursor: pointer;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.cards_wrap .card_top {
    width: 100%;
    height: auto;
    padding-bottom: 0;
}
.cards_wrap .card_bottom {
    padding: 25px;
    text-align: center;
    background-color: #000000;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 25px;
}
.card_top img {
    width: 100%;
    height: 100%;
    display: block;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    min-height: 410px;
    max-height: 410px;
}

/* Media Query */

/* Laptop */

@media only screen and (max-width:1024px) {
    #header-section {
        font-size: 18px;
    }
    .wrapper .card_item {
        width: 50%;
    }
    .card_top img {
        min-height: 330px;
    }

}

/* Tablet */
@media only screen and (max-width: 768px) {
    .wrapper .card_item {
        width: 50%;
    }
    .card_top img {
        min-height: 245px;
    }
    .cards_wrap .card_bottom {
        font-size: 20px;
    }
}

/* Phone */
@media only screen and (max-width: 425px) {
    #header-section {
        font-size: 12px;
    }
    .wrapper .card_item {
        width: 100%;
    }
    .card_top img {
        min-height: 200px;
    }
    .cards_wrap .card_bottom {
        font-size: 18px;
    }
    .card_title {
        font-size: 14px;
    }
}