@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* { 
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -khtml-box-sizing: border-box;
    box-sizing: border-box;
}

html, body { 
    height: 100% !important; 
    width: 100% !important; 
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    min-width: 300px;
    background-color: #666;
    display: block;
}

img {
    align-items: center;
    vertical-align: center;
}@media (min-width:1441px) {
    .navBar {
        display: block;
        width: 100%;
        border-bottom: 1px solid #000;
        box-shadow: 0 0 2px #000;
        background: #730027;
        background: linear-gradient(to top, #730027, #360012);
    }
    
    .navBarLogo {
        height: 30px;
        margin: 10px 40px;
        float: left;
    }
    
    a.navBarLink {
        color: #d8d8d8;
        display: inline-block;
        margin: 12px 5px;
        text-decoration: none;
        font-size: 13px;
        text-transform: uppercase;
        border: 1px solid transparent;
        padding: 2px 10px;
    }
    
    a.navBarLink:hover {
        color: #fff;
    }
    
    a.navBarLink.active {
        border: 1px solid #fff;
        border-radius: 4px;
        color: #fff;
        background-color: rgba(0, 0, 0, .3);
        box-shadow: 0 0 5px #000;
    }
    
    a.navBarLinkRight {
        float: right;
        color:#d8d8d8;
        margin: 10px;
        text-decoration: none;
        font-size: 13px;
        text-transform: uppercase;
        padding: 2px 10px;
        border: 1px solid #fff;
        border-radius: 4px;
        background-color: rgba(0, 0, 0, .3);
        font-weight: bold;
    }
    
    a.navBarLinkRight:hover {
        background-color: rgba(0, 0, 0, .6);
        color: #fff;
    }
    
    .navBarLinkRight img {
        height: 22px;
        vertical-align: middle;
        margin-right: 10px;
    }
    
    .navBarRight {
        float: right;
        margin: 14px 40px;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        text-align: center;
    }

    .navBarToggle {
        display: none;
    }
}

@media (max-width:1440px) {
    .navBar {
        display: block;
        width: 100%;
        border-bottom: 1px solid #000;
        box-shadow: 0 0 2px #000;
        background: #730027;
        background: linear-gradient(to top, #730027, #360012);
    }
    
    .navBarLogo {
        width: 250px;
        margin: 0 auto;
        padding: 10px;
        margin-bottom: -8px;
    }
    
    a.navBarLink {
        color: #d8d8d8;
        display: block;
        margin: 12px 5px;
        text-decoration: none;
        font-size: 13px;
        text-transform: uppercase;
        border: 1px solid transparent;
        padding: 2px 10px;
    }
    
    a.navBarLink:hover {
        color: #fff;
    }
    
    a.navBarLink.active {
        border: 1px solid #fff;
        border-radius: 4px;
        color: #fff;
        background-color:rgba(0, 0, 0, .3);
        box-shadow: inset 0 0 2px #000;
    }
    
    a.navBarLinkRight {
        color: #d8d8d8;
        margin: 10px;
        text-decoration: none;
        font-size: 13px;
        text-transform: uppercase;
        padding: 2px 10px;
        font-weight: bold;
        display: block;
    }
    
    a.navBarLinkRight:hover {
        background-color: rgba(0, 0, 0, .6);
        color: #fff;
    }
    
    .navBarLinkRight img {
        height: 22px;
        vertical-align: middle;
        margin-right: 10px;
    }
    
    .navBarRight {
        margin: 4px 10px;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        text-align: center;
        display: block;
        float: right;
        margin-top: -30px;
        margin-right: 20px;
    }

    .navBarLinks {
        display: none;
        border-top: 1px solid #fff;
    }

    .navBarToggle {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        width: 25px;
        height: 25px;
        background-size: 100% 100%;
        float: right;
        margin: 10px;
    }
}@media (min-width:1401px) {
    .spacer {
        padding: 20px;
    }
    
    .homepageContentContainer {
        display: inline-block;
        width: calc(50% - 22px);
        padding: 10px 20px;
        vertical-align: top;
    }
    
    .homepageContentContainerLink {
        display: inline-block;
        width: calc(50% - 22px);
        padding: 10px 20px;
        color: #000;
        text-decoration: none;
        vertical-align: top;
        margin-bottom: 10px;
    }
    
    .homepageContentContainerLink:hover {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 3px;
        border: 1px solid #000;
        padding: 9px 19px;
    }
    
    .mainContainer {
        margin-top: 40px;
    }
    
    .contentTitle {
        font-size: 24px;
        font-weight: bold;
    }
    
    .contentIcon {
        float: left;
        height: 70px;
        margin-right: 30px;
    }
    
    .contentContainer {
        display: flow-root;
    }
}

@media (max-width:1400px) {
    .spacer {
        padding: 20px;
    }
    
    .homepageContentContainer {
        display: block;
        padding: 10px 20px;
        clear: both;
        margin: 10px;
    }
    
    .homepageContentContainerLink {
        display: block;
        padding: 10px 20px;
        color: #000;
        text-decoration: none;
        margin: 10px;
    }
    
    .homepageContentContainerLink:hover {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 3px;
        border: 1px solid #000;
        padding: 9px 19px;
    }
    
    .mainContainer {
        margin-top: 40px;
    }
    
    .contentTitle {
        font-size: 24px;
        font-weight: bold;
    }
    
    .contentIcon {
        display: none;
    }
    
    .contentContainer {
        display: flow-root;
    }
}@media (min-width: 1401px) {
    .homePageHeaderContainer {
        background-color: #730027;
        height: 500px;
    }

    .homePageHeader {
        width: 1200px;
        margin: 0 auto;
    }

    .homePageHeaderContent {
        position: relative;
        color: #d8d8d8;
        z-index: 1000;
    }

    .homePageHeaderTitle {
        text-align: center;
        font-size: 50px;
        font-weight: bold;
        padding: 40px;
        color: #fff;
        margin: 0;
    }

    .homePageHeaderContent img {
        height: 500px;
        position: absolute;
        right: 0;
    }

    .homePageHeaderText {
        position: absolute;
        font-size: 18px;
        width: 600px;
    }

    .homePageHeaderAlert {
        margin-top: 40px;
        border: 1px solid #000;
        padding: 10px;
        width: 600px;
        background-color: #fff;
        color: #000;
        border-radius: 10px;
        box-shadow: 0 0 4px #000;
    }

    .homePageHeaderAlertMessage {
        margin-bottom: 10px;
        padding: 0 10px;
    }

    .homePageHeaderAlertButton {
        border: 1px solid #000;
        padding: 2px;
        text-align: center;
        font-size: 16px;
        background: #007300;
        background: linear-gradient(to top, #007300, #00AD00);
        border-radius: 4px;
        color: #fff;
        display: block;
        text-decoration: none;
    }

    .homePageHeaderAlertButton:hover {
        background: #007300;
        cursor: pointer;
    }

    .homepageHeaderWave {
        min-width: 1998px;
        margin-top: -180px;
        margin-bottom: -88px;
    }

    .pageContentContainer {
        color: #000;
        border: 1px solid #000;
        box-shadow: 0 0 2px #000;
        border-radius: 3px;
        background-color: #fff;
        min-height: calc(100% - 218px);
        display: block;
        overflow: hidden;
        width: 1380px;
        margin: 10px auto;
    }
}

@media (max-width: 1400px) {
    .homePageHeaderContainer {
        background: #730027;
        color: #fff;
        padding: 10px;
    }

    .homePageHeaderTitle {
        font-size: 18px;
        font-weight: bold;
    }

    .homePageHeaderContent img {
        display: none;
    }

    .homepageHeaderWave {
        display: none;
    }

    .homePageHeaderAlert {
        margin-top: 20px;
        border: 1px solid #000;
        padding: 10px;
        background-color: #fff;
        color: #000;
        border-radius: 10px;
        box-shadow: inset 0 0 6px #000;
    }

    .homePageHeaderAlertMessage {
        margin-bottom: 10px;
        padding: 0 10px;
    }

    .homePageHeaderAlertButton {
        border: 1px solid #000;
        padding: 2px;
        text-align: center;
        font-size: 16px;
        background: #007300;
        background: linear-gradient(to top, #007300, #00AD00);
        border-radius: 4px;
        color: #fff;
        display: block;
        text-decoration: none;
    }

    .homePageHeaderAlertButton:hover {
        background: #007300;
        cursor: pointer;
    }

    .pageContentContainer {
        color: #000;
        border: 1px solid #000;
        box-shadow: 0 0 2px #000;
        margin: 10px;
        border-radius: 3px;
        background-color: #fff;
        min-height: calc(100% - 218px);
        display: block;
        overflow: hidden;
    }

    .mainContainer {
        padding: 10px;
    }
}.footerSubContainer {
    display: block;
    box-shadow: 0 0 2px #000;
    background: #000;
    background: linear-gradient(#730027, #000);
    border-top: 1px solid #000;
    overflow: hidden;
}

.footerTitle {
    font-size: 18px;
    display: block;
    font-weight: bold;
    color: #fff;
    margin-left: 16px;
    margin-top: 10px;
}

.footerContent {
    color: #d8d8d8;
    padding: 4px 10px;
    margin: 0 10px;
    margin-bottom: 10px;
}

.footerContent a {
    color: #fff;
    text-decoration: none;
}

.footerLogo {
    width: 100%;
    margin-top: 16px;
}

@media (min-width:1401px) {
    .footerCopywrite {
        text-align: center;
        color: #fff;
    }

    .footerCenterCol {
        width: 350px !important;
    }

    .footerContainer {
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        width: 1000px;
        margin: -1px auto;
        padding-left: 120px;
    }
}

@media (max-width:1400px) {
    .footerContainer {
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        position: relative;
        padding-bottom: 120px;
    }

    .footerCopywrite {
        text-align: center;
        color: #fff;
        padding: 10px;
    }

    .footerCol {
        margin: 0 auto;
        width: 100%;
    }

    .footerCenterCol {
        margin: 0 auto;
        position: absolute;
        bottom: 0;
    }

    .footerCenterCol img {
        width: 300px;
        margin: 0 auto;
        display: block;
    }
}