<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    margin: 0;
}

.wrapper {
    background-image: url('../img/landing_bg.jpg');
    min-height: 100vh;
    background-position: bottom center;
    font-family: Montserrat,Helvetica Neue,Bitstream Vera Sans,Arial, sans-serif;
    background-size: cover;
}

.header {
    display: flex;
    box-sizing: border-box;
    padding: 30px;
    background: white;
    justify-content: center;
    height: 130px;
}
.logo {
    display: inline-flex;
    width: 200px;
    height: 70px;
    background-image: url('../img/Airservices_Master_Logo_DigitalRGBscaled.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
.body-container {
    /* min-height: calc(100vh - 185px); */
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.display-card {
    display: inline-block;
    margin: 10px;
    color: #003a5d;
    text-decoration: none;
    font-weight: 600;
    flex-basis: 280px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.display-card:hover, .display-card:focus {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.card-image {
    width: 100%;
    display: block;
}
.card-title {
    display: block;
    padding: 20px 10px;
    border-bottom: 4px solid #f58220;
    background: white;
    font-size: 14px;
    text-align: center;
}

.footer {
    background: #003a5d;
    padding: 20px;
    color: white;
    width: 100%;
    box-sizing: border-box;
    font-size: 12px;
    height: 55px;
}
</pre></body></html>