:root {
  --jumbotron-padding-y: 3rem;
}

.responsive-iframe {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 300px;
}

.jumbotron {
  padding-top: var(--jumbotron-padding-y);
  padding-bottom: var(--jumbotron-padding-y);
  margin-bottom: 0;
  background-color: #fff;
}
@media (min-width: 768px) {
  .jumbotron {
    padding-top: calc(var(--jumbotron-padding-y) * 2);
    padding-bottom: calc(var(--jumbotron-padding-y) * 2);
  }
}

.jumbotron p:last-child {
  margin-bottom: 0;
}

.jumbotron-heading {
  font-weight: 300;
}

.jumbotron .container {
  max-width: 40rem;
}

footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

footer p {
  margin-bottom: .25rem;
}

.pad-top-5 {
    padding-top: 5px;
    margin-bottom: 0;
}

.pad-bottom-5 {
    padding-bottom: 5px;
    margin-bottom: 0;
}

.pad-top-10 {
    padding-top: 10px;
    margin-bottom: 0;
}

.pad-bottom-5 {
    padding-bottom: 5px;
    margin-bottom: 0;
}

.pad-relative-3 {
    padding-top: 1.2rem !important;
    padding-bottom: 3rem !important;
}

.traveller-img {
    position: relative;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background-position: center;
    opacity: .7
}

.card-background {
    background-color: #5d5d5d;
    border: 1px solid darkgray;
    border-radius: 0.25rem;
}

.card-alt-background {
    background-color: #6b7164;
    border: 1px solid darkgray;
    border-radius: 0.25rem;
}

.card-alt2-background {
    background-color: #46494c;
    border: 1px solid darkgray;
    border-radius: 0.25rem;
}

.card-title-num {
    font-family: 'Papyrus', 'Shadows Into Light', 'Cabin', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 800;
    color: linen;
}

.card-title-num-sm {
    font-family: 'Papyrus', 'Shadows Into Light', 'Cabin', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 800;
    color: linen;
}

.card-title {
    font-family: 'Papyrus','Shadows Into Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: linen;
}

.card-title-sm {
    font-family: 'Papyrus','Shadows Into Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: linen;
    font-size: 1.5em;
}

.card-content {
    font-family: 'Papyrus', 'Shadows Into Light', Candara, Helvetica, Arial, sans-serif;
    margin-bottom: 0;
    color: lightgray;
}

.card-content-sm {
    font-family: 'Papyrus', 'Shadows Into Light', Candara, Helvetica, Arial, sans-serif;
    margin-bottom: 0;
    color: lightgray;
    font-size: 1.5em;
}

.card-thumbnail {
    padding: 0.15rem;
    background-color: darkgray;
    border: 1px solid darkgray;
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto;
}

.card-thumbnail-selected {
    padding: 0.15rem;
    background-color: #FF9600;
    border: 1px solid #FF9600;
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto;
}

.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }

/*Zoom In*/
.hover-zoom {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

.hover-zoom:hover {
        -webkit-filter: sepia(100%);
        filter: sepia(100%);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

@keyframes bloom {
    0% {
        filter: grayscale(.8);
    }

    60% {
        filter: grayscale(.5);
    }

    100% {
        filter: grayscale(0);
    }
}

@keyframes circle {
    0% {
        opacity: .5;
        background: rgba(213,156,34,.2);
    }

    40% {
        opacity: 1;
        background: rgba(213,34,160,.2);
    }

    100% {
        opacity: 0;
    }
}

ul.hnav {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 36px;
    line-height: 36px;
    background: #46494c; /* you can change the backgorund color here. */
    font-family: 'Papyrus', 'Shadows Into Light', Candara, Helvetica, Arial, sans-serif;
    font-size: 16px;
}

ul.hnav li {
    border-right: 1px solid lightgray; /* you can change the border color matching to your background color */
    float: left;
}

ul.hnav a {
    display: block;
    padding: 0 28px;
    color: linen;
    text-decoration: none;
}

ul.hnav a:hover,
ul.hnav li.current a {
    background: #5d5d5d;
}

