@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;900&family=Poppins:wght@300;400;600&display=swap');
html,body{
    font-family: Lato, sans-serif;
}
.container{
    max-width: 1100px;
}
.top_headline{
    color: #ED1C24;
    font-weight: 900;
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-transform: capitalize;
}
.row  .card_heading{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
}
.row .card_subHeading{
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 11px;
    color: gray;
}
.footer{
    background: #FFF;
    padding: 30px 0;
    margin-top: 90px;
}
.footer p{
    font-size: 12px;
    color: gray;
    margin: 0;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}
.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 10px;
    border: 1px solid #888;
    width: 75%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 1200px) {
    .modal-content {
        margin: 0;
        padding: 10px;
        width: 100%;
        height: 100%;
        box-shadow: none;
    }
}
.modal-content h2 {
    color: #ED1C24;
}
.modal-button {
    background-color: #ED1C24;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
	font-size: 26px;
    font-weight: bold;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
