@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

/* ANIMATE.CSS */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
    
/* STYLES */

body {
    margin-top: 25px;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
}

p {
    line-height: 1.65em;
}

a {
    color: #6b1827;
    font-weight: bold;
}

a:hover {
    color: #6b1827;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.my-auto p {
    margin: 0;
}

.menu-bar {
    background: #6b1827;
    margin-top: 25px;
    font-size: 0.9em;
}

.menu-bar a {
    color: #fff;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 1px;
}

.hero {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #111 !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.hero-bar {
    background: #d9a94e;
    color: #fff;
    text-align: center;
}

.hero-bar p {
    margin: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-size: 1.2em;
}

.main-content {
    margin-top: 40px;
}

h1 {
    color: #fff;
    font-size: 2.6em;
    text-align: center;
    margin: 0;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

h2 {
    font-size: 1.8em;
    color: #6b1827;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

h3, h4, h5 {
    color: #6b1827;
}

p.intro {
    font-size: 1.2em;
    color: #888;
}

footer {
    margin-top: 40px;
    border-top: 1px solid #ddd;
    padding-top: 25px;
    text-align: center;
}

footer img {
    margin-bottom: 15px;
}

footer p.credit {
    font-size: 0.8em;
    color: #999;
    margin-top: -10px;
}

.alert-danger {
    background: rgba(107,24,39,0.1);
    border-color: rgba(107,24,39,0.35);
    color: #6b1827;
    margin-top: 25px;
    padding: 20px 20px 5px 20px;
}

.alert-warning {
    background: rgba(217,169,78,0.1);
    border-color: rgba(217,169,78,0.35);
    color: #b48327;
    margin-top: 25px;
    padding: 20px 20px 5px 20px;
    margin-top: 35px;
    margin-bottom: 35px;
}

.main-content img {
    border: 2px solid #fff;
    margin: 10px 35px 35px 0px;
}

img.image-mobile-resize {
    width: 45%;
    float: left;
}

@media screen and (max-width: 767px) {
    img.image-mobile-resize {
        width: 100% !important;
        margin: 10px 0px 25px 0px !important;
    }
}

table {
    margin-top: 25px;
    font-size: 0.9em;
}

.table th, .table td {
    border-color: #ddd !important;
}

.table thead th {
    border: none;
    background: #6b1827;
    color: #fff;
}

.table small {
    color: #999;
}

.table span {
    color: #d9a94e;
    font-weight: bold;
}

.table tr:first-child th, .table tr:first-child td {
    border-top: none;
}

tbody tr:hover {
    background: rgba(0,0,0,0.02);
}

form {
    border: 1px solid #ddd;
    margin-top: 25px;
    padding: 25px;
}

.btn-primary {
    background: #6b1827;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
}

.btn-primary:hover {
    background: #a8253d;
}

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

.btn-primary:focus {
    background-color: #a8253d;
}

.btn .fa {
    padding-left: 10px;
}

/* RESPONSIVE CSS */

@media screen and (max-width: 767px) {
    .header, .header .text-right {
        text-align: center !important;
    }
    
    .header img {
        width: 75% !important;
    }
    
    .hero {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
}
    
@media screen and (min-width: 992px) {
    a.navbar-brand {
        display: none !important;
        font-weight: bold;
    }
}

@media screen and (min-width: 576px) and (max-width: 991px) {
    .col-sm-7.hidden-sidebar {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.8rem !important;
        padding-left: 0.8rem !important;
    }
}