﻿/***********************************
    GLOBAL
************************************/
body {
}

h1, h2 {
    text-align: center;
}

table, form {
    margin: 0;
}

/***********************************
    TOOLS
************************************/
.sticky-top {
    top: 4em;
}

.container {
    max-width: 80%;
}

/***********************************
    HEADER
************************************/
header {
    position: relative;
}

    header .logo {
        display: block;
        position: absolute;
        z-index: 999;
        top: -90px;
        left: 50%;
        transform: translate(-50%, 0);
        width: 200px;
    }

        header .logo.tiny {
            position: fixed;
            top: 2px;
            width: 60px;
            transition: all 0.4s ease-in-out 0s;
        }

.heading {
    padding: 110px 30px 15px 30px;
    background: rgba(111,135,163,0.75);
    border: 2px solid #6f87a3;
    border-bottom: 0;
    font-size: 20px;
}

    .heading h1 {
        color: #091C2A;
        font-weight: 600;
        text-transform: uppercase;
        text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    }

    .heading .lead {
        font-size: 1.7rem;
        font-style: italic;
    }

/***********************************
    NAV
************************************/
.navbar {
    background: #051c2c;
}

/***********************************
    MAIN
************************************/
#content-wrapper {
    padding-top: 100px;
}

main {
    padding: 30px;
}

.frame {
    width: 50%;
    margin: 0 auto 15px auto;
    padding: 15px 15px 0 15px;
    border: 1px solid #ccc;
    text-align: center;
}

    .frame .portrait {
        display: block;
        width: 100%;
        border: 1px solid #ccc;
    }

/***********************************
    FOOTER
************************************/
.footer {
    padding: 30px;
    background: #051c2c; /*Dark*/
    color: #9eadc1; /*Light*/
}

    .footer h4 {
        width: 100%;
        text-transform: uppercase;
        border-bottom: 1px solid #E74f3d; /*Accent*/
    }

    .footer hr {
        border-top: 1px solid #000; /*Darker*/
    }

    .footer a:not(.btn) {
        color: #fff;
    }

        .footer a:not(.btn):hover {
            color: #fff;
            text-decoration: underline;
        }

#back-to-top {
    position: fixed;
    bottom: 79px;
    right: 15px;
    display: none;
    z-index: 99;
}

/***********************************
    RESPONSIVE
************************************/
/*Extra large devices (large desktops, 1200px and up)*/
@media (max-width: 1200px) {
    header .logo {
        top: -50px;
        width: 100px;
    }

        header .logo.tiny {
            display: none;
        }

    .heading {
        padding-top: 55px;
    }
}
/*Large devices (desktops, 992px and up)*/
@media (max-width: 992px) {
}

/*Medium devices (tablets, 768px and up)*/
@media (max-width: 768px) {
    #content-wrapper {
        padding-top: 60px;
    }

    .sticky-top {
        top: 0;
    }

    .navbar-nav .nav-link {
        text-align: center;
    }

    .navbar .form-inline .input-group {
        margin: 0 auto;
    }

    #back-to-top {
        bottom: 15px;
    }
}

/*Small devices (landscape phones, 576px and up)*/
@media (max-width: 576px) {
}
