<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,800);
*,
*:after,
*::before {
    box-sizing: border-box;
}
/* General styles and layout */

body {
    background: white;
    color: black;
    font-family: 'Open Sans', Arial, sans-serif;
    max-width: 100%;
}

.container {
    overflow: hidden;
    /* we don't want the pseudo-elements sticking out */
    
    max-width: 960px;
}

.container svg {
    display: block;
}

section {
    position: relative;
    background: #333;
    color: #000;
    text-align: center;
}
/*** Individual section styles and separators ***/
/* Common style for pseudo-elements */

section::before,
section::after {
    position: absolute;
    content: '';
    pointer-events: none;
}

header section {
    min-height: 250px;
}

header h1 {
    margin-bottom: 0px;
}

header i.fa {
    font-size: 2em;
    color: : rga(1, 1, 1) !important;
}

header h2 {
    font-family: 'Open Sans';
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 36px;
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 1);
}

header p {
    font-family: 'Open Sans';
    font-size: 18px;
    text-transform: capitalize;
    color: white;
}

.color {
    background-color: #7a020f
}

.ss-style-doublediagonal {
    z-index: 1;
    padding-top: 2em;
    background: white;
}

.ss-style-doublediagonal::before,
.ss-style-doublediagonal::after {
    top: 0;
    left: -25%;
    z-index: -1;
    width: 150%;
    height: 75%;
    background: white;
    -webkit-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    transform: rotate(-2deg);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
}

.ss-style-doublediagonal::before {
    height: 50%;
    background: white;
    -webkit-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    transform: rotate(-2deg);
    -webkit-transform-origin: 3% 0;
    -ms-transform-origin: 3% 0;
    transform-origin: 3% 0;
}

section.main-content p {
    color: #565656;
    max-width: 70%;
    margin: 0 auto;
	background-image: url("\images\1.JPG");
}

section.main-content .input-group {
    max-width: 50%;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    section.main-content .input-group {
        max-width: 90%;
        margin: 0 auto;
    }
}

section.main-content .btn-danger {
    background-color: #7a020f;
    min-width: 69px;
    font-size: 23px;
    padding: 0;
    border-color: #7a020f;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

section.main-content .btn-danger:hover {
    background-color: #464646;
    border-color: #464646;
    color: #7a020f;
}

section.main-content .form-control {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

section.main-content .form-control:focus {
    border-color: #FF0000;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 0, 0, 0.2);
}

section.main-content ul li {
    margin-right: 4%;
}

section.main-content ul li a {
    color: black;
    font-size: 18px;
}

section.main-content ul li a:hover {
    color: dimgray;
    font-size: 18px;
}

section.footer p {
    margin-bottom: 0;
}

section.footer p a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.footer {
    z-index: 1;
    margin-top: 10%;
    padding-top: 5px;
    background: #7a020f;
    color: white;
    padding-bottom: 10px;
}

.footer::before,
.footer::after {
    top: 0;
    left: -25%;
    z-index: -1;
    width: 125%;
    height: 105%;
    background: #7a020f;
    -webkit-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    transform: rotate(-2deg);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
}

.footer::before {
    height: 50%;
    background: #7a020f;
    -webkit-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    transform: rotate(-2deg);
    -webkit-transform-origin: 3% 0;
    -ms-transform-origin: 3% 0;
    transform-origin: 3% 0;
}</pre></body></html>