@font-face {
    font-family: primary-font;
    src: url('./fonts/GOTHIC.TTF');
}

@keyframes fadeIn {  

    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
  
} 

:root {
    --green: 0, 68, 56;
    --gold: 212, 175, 55;
    --alpha: 0.97
}

html {
    margin: 0;
    padding: 0;
}

body {
    background: url('./images/passport-bg.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.wrapper {
    overflow: hidden;
}

.content {
    overflow: hidden;
    text-align: center;
    font-family: primary-font;
    text-transform: uppercase;
    font-weight: 900;
}

.content .title {
    margin-top: 7.5rem;
    font-weight: 900;
}

.content .subtitle {
    font-weight: 900;
}

.content .dash-image {
    width: 100%;
    max-width: 200px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.content .note {
    font-weight: 900;
    background-color: white;
    max-height: 200px;
    overflow-y: auto;
}

.side-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 33%;
    height: 100vh;
    background-color: rgba(var(--green), var(--alpha));
    overflow: hidden;
}

.side-bar .title {
    background-color: rgba(var(--green));
    text-align: center;
    color: white;
    width: 100%;
    height: 5rem;
    line-height: 5rem;
    text-transform: capitalize;
}

.side-bar .footer {
    width: 100%;
    height: 4rem;
    position: absolute;
    bottom: 0;
    left: 0;
}

.side-bar .footer a {
    background-color: rgba(var(--green));
    color: white;
    height: 100%;
    padding: 1rem;
    text-align: center;
}

.side-bar .container {
    height: calc(100% - 11rem);
    overflow-y: auto;
}

.pointer {
    cursor: pointer;
}

.accordion-item:hover {
    border-radius: 5px;
    background-color: rgba(var(--green)) !important;
}

.accordion-button {
    font-size: 30px;
    color: white;
}
.accordion-button:not(.collapsed) { 
    color: rgba(var(--gold)) !important;
    box-shadow: none;
}
.accordion-button::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

.list-group-item:hover {
    background-color: rgba(var(--gold), 0.1) !important;
}
.list-group-item,  .list-group-item a {
    color: white !important;
    text-transform: uppercase;
}

.list-group-item a:hover {
    color: rgba(var(--gold)) !important;
}

.image-cont {
    height: 100vh !important;
    width: 100%;
    position: relative;
}

#map-image {
    width: auto;
    max-width: 100%;
    position: absolute;
    top: 0;
    bottom: 3%;
    left: 0;
    right: 0;
    margin: auto;
    animation: fadeIn ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#map-modal .modal-title {
    color: rgba(var(--green)) !important;
}

nav {
    background-color: rgba(var(--green));
}

.mobile-view {
    color: var(--green) !important;
}

.mobile-view .title {
    margin-top: 1rem;
    text-align: center;
    color: var(--green);
    font-size: 50px;
    font-weight: bold;
    font-family: primary-font;
}
#map-modal iframe {
    height: 500px;
}

.mobile-view .main {
    background: url('./images/passport-mobile-bg.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.mobile-view .footer {
    background-color: rgba(var(--green)) !important;
}
.mobile-view .footer a {
    color: white !important;
}

/* Responsiveness */
.mobile-view {
    display: none;
}
.desktop-view {
    display: block;
}
@media screen and (max-width: 992px) {
    body {
        background: white !important;
        overflow: auto;
    }

    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: block;
        color: rgba(var(--green)) !important;
    }

    .accordion-button {
        color: rgba(var(--green));
    }
    .accordion-item:hover {
        border-radius: 5px;
        background-color: transparent!important;
    }
    .list-group-item, .list-group-item a {
        color: rgba(var(--green)) !important;
    }

    #map-modal iframe {
        height: 100%;
    }
    
}