/* Globals */

    :root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #000000;
    --complimentary: #00276e;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    }

    @font-face 
    {
        font-family: a750SansLight;
        src: url("/fonts/a750-sans-light-regular.ttf");
    }
    @font-face 
    {
        font-family: b820Script;
        src: url("/fonts/b820-script-regular.ttf");
    }
    @font-face 
    {
        font-family: baskerville;
        src: url("/fonts/baskerville-bold.ttf");
    }
    
    html
    {
        overflow-x:hidden;
        scroll-behavior: smooth;
    }

    body
    {
        font-family: a750SansLight, Arial, Helvetica, sans-serif;
        color:black;
        margin-top: 0px;
    }

    footer
    {
        color:white;
    }

    .footer
    {
        background-color: rgba(0, 0, 0, 0.63);
        color:white;
    }

    img 
    {
        image-orientation: from-image;
    }
    

    .img-thumbnail 
    {
        padding: 0px;
        background-color: rgb(0, 0, 0);
        border: 5px solid #ffffff;
        border-radius: 1rem;
        max-width: 100%;
        height: auto;
        box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.644);
    }

    .sectionanimation
    {
        visibility: hidden;

        animation-name: slide;
        animation-duration: 1s;
        animation-fill-mode: forwards;

        -webkit-animation-name: slide;
        -webkit-animation-duration: 1s;
        -webkit-animation-fill-mode: forwards;
    }


    @keyframes slide
    {
        0%
        {
            visibility: visible;
            opacity: 0;
            transform: translateX(-75px);
        }
        100%
        {
            visibility: visible;
            opacity: 100;
            transform: translateX(0);
        }
    }

    @-webkit-keyframes slide
    {
        0%
        {
            visibility: visible;
            opacity: 0;
            transform: translateX(-75px);
        }
        100%
        {
            visibility: visible;
            opacity: 100;
            transform: translateX(0);
        }
    }

    .oppositesectionanimation
    {
        visibility: hidden;

        animation-name: reverseslide;
        animation-duration: 1s;
        animation-fill-mode: forwards;

        -webkit-animation-name: reverseslide;
        -webkit-animation-duration: 1s;
        -webkit-animation-fill-mode: forwards;
    }


    @keyframes reverseslide
    {
        0%
        {
            visibility: visible;
            opacity: 0;
            transform: translateX(75px);
        }
        100%
        {
            visibility: visible;
            opacity: 100;
            transform: translateX(0);
        }
    }

    @-webkit-keyframes reverseslide
    {
        0%
        {
            visibility: visible;
            opacity: 0;
            transform: translateX(75px);
        }
        100%
        {
            visibility: visible;
            opacity: 100;
            transform: translateX(0);
        }
    }

    .headeranimation
    {
        visibility: hidden;

        animation-name: appear;
        animation-duration: 1s;
        animation-fill-mode: forwards;

        -webkit-animation-name: appear;
        -webkit-animation-duration: 1s;
        -webkit-animation-fill-mode: forwards;
    }

    @keyframes appear
    {
        0%
        {
            visibility: visible;
            opacity: 0;
            transform: scale(0.95);
        }
        100%
        {
            visibility: visible;
            opacity: 100;
            transform: scale(1);
        }
    }

    @-webkit-keyframes appear
    {
        0%
        {
            visibility: visible;
            opacity: 0;
            transform: scale(0.95);
        }
        100%
        {
            visibility: visible;
            opacity: 100;
            transform: scale(1);
        }
    }

    .display
    {
        color:white;
    }

    h1
    {
        color: white;
        font-family: b820Script, 'Times New Roman', Times, serif;
        text-shadow: 0px 0px 5px black;
        font-size: 6vw;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0px;
    }


    h2
    {
        font-family: baskerville, 'Times New Roman', Times, serif;
        padding: 0;
        font-size: 3rem;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0px;
    }


    h3
    {
        font-family: baskerville, 'Times New Roman', Times, serif;
        margin: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 2rem;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0px;
    }


    p1
    {
        font-size: 1.4rem;
        font-weight: 400;
    }
    p2
    {
        font-size: 1.2rem;
        font-weight: 400;
    }
    p3
    {
        font-size: 1rem;
        font-weight: 400;
    }

    
    @media screen and (max-width: 576px)
    {
        h1 
        {
            font-size: 9vw;
        }
        h2 
        {
            font-size: 2rem;
            letter-spacing: 0px;
        }
        h3 
        {
            font-size: 1.6rem;
        }
    }

/* Forms */

    .form-control
    {
        color: #000000;
        font-weight: 600;
        background-color: #eeeeee;
        display: block;
        width: 100%;
        height: calc(1.5em + 0.75rem + 2px);
        padding: 0.375rem 0.75rem;
        font-size: 1.2rem;
        font-weight: 6f00;
        line-height: 1.5;
        background-clip: padding-box;
        border: 1px solid var(--primary);
        border-radius: 0.25rem;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }   

    .form-check-label
    {
        padding-bottom: 5px;
    }

/* Profile Cards */

    .profile-pic
    {
        box-shadow: 0px 0px 15px #00000077;
        border: 7px solid #ffffff !important;
    }

/* Primary Color Group */

    .btn-primary 
    {
        color: #fff;
        background-color: #000000;
        border-color: #000000;
        background-color: var(--primary) !important;
        border-radius: .75rem;
        padding: 10px;
    }

    .btn-primary:hover 
    {
        color: #fff;
        background-color: var(--secondary) !important;
        border-color: var(--primary);
    }

    .btn-primary:focus, .btn-primary.focus 
    {
        box-shadow: 0 0 0 0.2rem #1d421f;
    }

    .btn-primary.disabled, .btn-primary:disabled 
    {
        color: #fff;
        background-color: var(--primary) ;
        border-color: var(--primary);
    }

    .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
    .show > .btn-primary.dropdown-toggle 
    {
        color: #fff;
        background-color: var(--primary);
        border-color: var(--primary);
    }

    .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
    .show > .btn-primary.dropdown-toggle:focus 
    {
        box-shadow: 0 0 0 0.2rem #1d421f;
    }

    .bg-primary
    {
        background-color: var(--primary) !important;
        background: linear-gradient(to bottom, var(--primary) ,var(--complimentary)) !important;
    }


/* NavBar */

    .navbar-wrapper
    {
        background-color: rgba(0, 0, 0, 0.521);
        margin: .75rem;
        border-radius: .5rem;
        text-transform: uppercase;
    }

    .navbar a
    {
        font-size: large;
        color:white;
    }

    #navbar
    {
        transition: top 0.5s;
    }

    .nav-link
    {
        
        color: white !important;
        padding: 13px !important;
    }

    .nav-link:hover
    {
        border-radius: .75rem;
        color: black !important;
        background-color: rgba(255, 255, 255, 0.651);

    }

    .navbar-toggler 
    {
        padding: 1rem;
        font-size: 1.25rem;
        line-height: 1;
        border: 0px solid ;
        border-radius: 0.25rem;
        
    }
    
    .navbar-toggler:hover, .navbar-toggler:focus 
    {
        text-decoration: none;
        border-radius: .75rem;
        color: black !important;
        background-color: rgba(255, 255, 255, 0.651);

    }
      
    .navbar-toggler-icon 
    {
        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='3' stroke-linecap='flat' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        display: inline-block;
        width: 1.5em;
        height: 1.5em;
        vertical-align: middle;
        content: "";
        background: no-repeat center center;
        background-size: 100% 100%;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        display: none;
        float: left;
        min-width: 10rem;
        padding: 0.5rem 0;
        margin: 0.125rem 0 0;
        font-size: 1rem;
        color: #212529;
        text-align: left;
        list-style: none;
        background-color: rgba(0, 0, 0, 0.521);
        background-clip: padding-box;
        border: 1px solid rgba(0, 0, 0, 0.15);
        border-radius: 0.25rem;
      }

      .dropdown-item {
        display: block;
        width: 100%;
        padding: 0.25rem 1.5rem;
        clear: both;
        font-weight: 400;
        color: #212529;
        text-align: inherit;
        white-space: nowrap;
        background-color: transparent;
        border: 0;
      }
      
      .dropdown-item:hover, .dropdown-item:focus {
        color: #16181b;
        text-decoration: none;
        background-color: rgba(255, 255, 255, 0.651);
      }
      
      .dropdown-item.active, .dropdown-item:active {
        color: black;
        text-decoration: none;
        background-color: #ffffff;
      }

/* Banners */

    .jumbotron 
    {
        background-size: cover;
        background-color: black;
        background-position: center;
        margin: 0;
        border-radius: 0px;
    }

    .sizeablebanner img
    {
        width: 100%;
        margin: 0px;
        padding: 0px;
    }

/* Carousel */

    .carousel-item
    {
        padding-bottom: 100px;
        padding-left: 10%;
        padding-right: 10%;
    }


    .carousel-control-prev-icon 
    {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%343a40' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
    }

    .carousel-control-next-icon 
    {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%343a40' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
    }

/* Modals */

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1800; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.726); /* Black w/ opacity */
  }
  
  /* Modal Image Content */
  .modal-img-content {
    max-width: 90vw;
    max-height: 90vh;
    height: auto;
    width: auto;
    margin: auto;
    display: block;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
  }
  
  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
  }
  
  @keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
  }
  
  /* The Close Button */
  .close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #c5c5c5;
    text-decoration: none;
    cursor: pointer;
  }
  
  .modal-header {
    padding: 10px 16px;
    color: white;
    width: 100%;
  }
  
  .modal-body
  {
    overflow: auto;
  }
  
  .modal-body h2
  {
      letter-spacing: 0px;
      color: white;
  }
  .modal-body p2
  {
      color: white;
  }
  
  .modal-footer {
    height: 25px;
    background-color: #00326b52;
    color: white;
  }

