html,
body {
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    line-height: 23.8px;
    margin: 0;
    overflow-x: hidden;
    padding: 0;
}

a {
    text-decoration: none;
}

.header-wrapper {
    color: #FFF;
    width: 100%;
}

.header-top-wrapper {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 80%;
    padding: 27px 0;
}

.header-logo {
    height: 80px;
    object-fit: cover;
    width: 300px;
}

.header-links {
    display: flex;
    flex-direction: row;
}

.header-links a:first-of-type {
    border-left: none;
}

.header-links * {
    color: #000;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 0 .1em;
}

.header-links a:hover {
    color: #000;
}

.header-links a:visited {
    color: #000;
}

.header-info-wrapper {
    background-color: #EF1529;
    border-bottom: 4px solid #7AB85B;
    padding: 1% 10%;
    text-align: center;
}

.header-info-wrapper span {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto;
    text-shadow: 0em 0em 0.3em rgb(0 0 0 / 40%);
    word-wrap: break-word;
}

.header-title-wrapper {
    background-color: #F27730;
    padding: 2% 10%;
    text-align: center;
}

.header-title-wrapper h1 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 auto;
    word-wrap: break-word;
}

.main-wrapper {
    display: flex;
    flex-flow: row wrap;
    height: auto;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 80%;
}

.card-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
    max-height: 100%;
    width: 22.75%;
}

.card-top {
    position: relative;
}

.card-top img {
    display: block;
    height: auto;
    padding-top: 50px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.card-top-background {
    background-color: #F27730;
    height: 100%;
    left: -100%;
    overflow: visible;
    position: absolute;
    top: 0;
    width: 200vh;
}

.card-content {
    background-color: #FFF;
    border-bottom: 1px solid #f47922;
    border-left: 1px solid #f47922;
    border-right: 1px solid #f47922;
    flex: 1 0 auto;
    padding: 20px;
}

.card-content p {
    margin: 0;
}

.footer-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 80%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 50%;
    padding: 4% 0;
}

.footer-content h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 1em;
}

.footer-content p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.footer-content a {
    color: #F27730;
    font-size: 14px;
    font-weight: 500;
}

.footer-bottom {
    margin: 0 auto;
    max-width: 80%;
}

.footer-bottom p {
    color: #000;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    padding-bottom: 10px;
}

.footer-bottom .footer-tdg-link {
    color: #f47922;
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 980px) {
    .header-info-wrapper,
    .header-title-wrapper {
        padding: 30px 10%;
    }
}

@media (min-width: 768px) and (max-width: 980px) {
    .card-wrapper {
        width: 48%;
    }
}

@media (max-width: 800px) {
    .header-top-wrapper {
        justify-content: space-around;
    }
    .header-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .card-wrapper {
        margin: 0 auto 50px;
        width: 100%;
    }
}