﻿@charset "utf-8";

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

    .animated.infinite {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite
    }

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@font-face {
    font-family: 'Gotham Book';
    src: url(../fonts/Gotham-Book.woff);
}

@font-face {
    font-family: 'Gotham Medium';
    src: url(../fonts/Gotham-Medium.woff);
}

:root {
    --primary: #001744;
    --secondary: #A29161;
    --white: #fff;
    --black: #000000;
    --font-bold: 'Gotham Medium';
}

html {
    font-size: 62.5%;
}

body,
.form-control,
.form-select,
.input-group-text,
input,
.btn {
    font-family: 'Gotham Book';
    font-size: 1.7rem;
}

@media(max-width: 767px) {

    body,
    .form-control,
    .form-select,
    .input-group-text,
    input,
    .btn {
        font-size: 1.4rem;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .2s ease-in-out;
}

    a:hover {
        color: var(--primary);
    }

body {
    position: relative;
}

#navheader {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.form-control,
.form-select {
    padding: 10px 16px;
    border: 1px solid #2C2C2C;
}

.form-group, .form-check {
    position: relative;
}

label {
    font-family: var(--font-bold);
    display: block;
    margin-bottom: 5px;
}

.form-check .form-check-input {
    border-color: #2C2C2C;
}

section {
    padding: 70px 0;
}

@media(max-width: 767px) {
    section {
        padding: 50px 0;
    }
}

.fa-icon {
    position: relative;
    padding-left: 37px;
}

    .fa-icon > .fa,
    .footer .fa-icon a > .fa {
        position: absolute;
        margin-left: -27px;
        top: 3px;
        color: var(--primary);
    }

    .fa-icon a {
        color: var(--primary);
        white-space: nowrap;
        text-decoration: none;
    }

.logo {
    width: 150px;
    display: inline-block;
}

/* 
.hm-banner{
    background: url(../images/hm-banner.jpg) top center #c1d5ff no-repeat;
    background-size: cover;
    padding: 180px 0;
    position: relative;
}

.hm-banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 0;;
}

.hm-banner *{
    z-index: 9;
    position: relative;
} */

.page-head {
    color: #000;
    font-size: 4.2rem;
    text-align: center;
    font-family: var(--font-bold);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.bg-prime {
    background-color: var(--primary);
}

.section-head {
    font-size: 3rem;
    font-family: var(--font-bold);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    text-align: left;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

    .section-head:after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        right: 0;
        width: 115px;
        height: 3px;
        background-color: var(--secondary);
        /*margin: auto;*/
    }

.input-group-text {
    background: none;
    border-color: #2C2C2C;
}

.btn-secondary,
.btn-primary {
    background-color: var(--secondary);
    padding: 1rem 3.2rem;
    border: 0;
    text-transform: uppercase;
    border-radius: .3rem;
    position: relative;
    font-family: var(--font-bold);
    font-size: 1.5rem;
}

    .btn-secondary::after,
    .btn-primary::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0;
        background: var(--primary);
        transition: all .2s ease-in-out;
    }

    .btn-secondary span,
    .btn-primary span {
        position: relative;
        z-index: 99;
    }

    .btn-secondary:hover:after,
    .btn-primary:hover:after {
        width: 100%;
    }

@media (max-width: 767px) {
    .section-head {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .head {
        font-size: 2rem;
    }

    .bg-intro h3 {
        font-size: 1.2rem;
        line-height: 1.5;
    }
}

.bg-gray {
    background-color: #efefef;
}

.card-event, .card-white {
    padding: 45px 35px;
    border-radius: 12px;
    border: 1px solid #bebebe;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .3);
}

.card-event {
    background-color: var(--primary);
    color: #fff;
    border: 0;
}

.event-title {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--secondary);
    text-transform: uppercase;
    font-family: var(--font-bold);
    font-weight: 600;
    letter-spacing: 1px;
}

.event-head {
    font-size: 36px;
    font-family: var(--font-bold);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.event-desc {
    font-size: 22px;
    font-family: var(--font-bold);
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: var(--primary);
}

.event-info {
    font-size: 24px;
    font-family: var(--font-bold);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3;
    margin-top: 15px;
}

.event-note {
    font-size: 18px;
    color: #7a7a7a;
    font-family: var(--font-bold);
}

span.errorMsg {
    display: none;
}

span.errorMsg {
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    font-size: 12px;
    position: absolute;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    top: 0;
    right: 0;
    z-index: 2;
    height: 25px;
    line-height: 1;
    color: #ff0000;
    font-weight: 400;
    padding: 6px 8px 0 0;
}

.error ~ span.errorMsg:not(.checkboxErr) {
    display: block;
}

.error[type="checkbox"] {
    border-color: #ff0000;
}

.errorMsg.checkboxErr {
    left: 0;
    right: auto;
    top: auto;
    bottom: 0;
}

.footer {
    background-color: var(--primary);
    color: #fff;
    margin: 0;
    padding: 15px 0;
    font-size: 1.2rem;
}

    .footer .ftr-logo {
        max-width: 150px;
    }

.text-red {
    color: #ff0000;
}


@media(max-width:1024px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .logo {
        width: 75px;
    }

    .page-head {
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 40px;
    }

    .section-head {
        margin-left: auto;
        margin-right: auto;
        padding-top: 30px;
    }

    .card-event, .card-white {
        padding: 35px 50px;
    }

    .event-head {
        font-size: 34px;
    }

    .card-event {
        margin-bottom: 15px;
    }

    .event-info {
        font-size: 24px;
    }
}
