.full-card {
    background-color: #474747;
    border-bottom: 4px solid rgba(188, 188, 188, 0.634);
    padding-bottom: 15px;
}

.tag-info-bar {
    display: flex;

    padding-top: 27px;
    padding-bottom: 12px;
    padding-left: 25px;
    padding-right: 25px;
}

.style-line {
    display: inline;
    background-color: #00ff80;
    border: 2px solid #00ff80;
    border-radius: 10px;

    padding: 25px 1px;
}

.card-tagline {
    font-size: 40px;
    font-weight: bold;
    color: white;

    margin-left: 10px;
    margin-top: 0;
    margin-bottom: 0;
}

.card-desc {
    font-size: 20px;
    color: rgb(169, 169, 169);

    margin-left: 10px;
    margin-top: 0;
    margin-bottom: 4px;
}

.larger-view-container {
    border: 5px solid rgb(131, 131, 131);

    margin-left: 25px;
    margin-right: 25px;
    margin-top: 5px;
    margin-bottom: 20px;
}

.larger-view {
    font-size: 20px;
    color: rgb(181, 181, 181);
    text-align: center;
    font-weight: 100;

    margin-top: 15px;
    margin-bottom: 15px;
}

.mega-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 25px;
    row-gap: 25px;

    margin-top: 10px;
    margin-left: 25px;
    margin-right: 25px;
}

@media screen and (max-width: 900px) {
    .mega-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 500px) {
    .mega-gallery {
        grid-template-columns: 1fr;
    }
}

.mega-gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 5px solid rgba(188, 188, 188, 0.634);
    border-radius: 3px;
    box-sizing: border-box;
}

.img-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.imgpop-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 100%;
}

.popup-img {
    border: 5px solid rgba(188, 188, 188, 0.634);
    border-radius: 3px;
    box-sizing: border-box;
    object-fit: cover;

    max-width: 90%;
    max-height: 90%;
}




/* Header Start */

p {
    font-family: Roboto, Arial;
}

body {
    margin: 0;
    background-color: rgb(48, 48, 48);;
}

.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: rgb(48, 48, 48);
    border-bottom: 4px solid rgba(188, 188, 188, 0.634);
}

.header-icon {
    height: 70px;
    padding: 6px;
    filter: invert(1) brightness(2);
}

.major-tagline {
    color: white;
    font-weight: bold;
    font-size: 30px;

    margin-top: 16px;
    margin-bottom: 0;
    margin-left: 4px;
}

.minor-tagline {
    color: white;

    margin-top: 0;
    margin-left: 4px;
}

.tagline-wrapper {
    display: inline-block;
    align-content: center;
}

.icon-tagline-wrapper {
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    margin-right: 14px;
    margin-left: 14px;
}

.hamburger-button-container {
    display: none;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.hamburger-button {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 4px;

    color: white;
    font-weight: bold;
    font-size: 40px;
    cursor: pointer;
    position: relative;
}

@media screen and (max-width: 790px) {
    .navbar {
        display: none;
    }

    .hamburger-button-container {
        display: flex;
    }
}

.hamburger-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.hb-content-wrapper {
    position: absolute;
    top: 16%;
    bottom: 16%;
    left: 10%;
    right: 10%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hb-header {
    height: auto;

    position: relative;
    border: 4px solid rgb(84, 84, 84);
    border-radius: 6px;
    background-color: rgb(41, 41, 41);
}

.hb-x-icon {
    position: absolute;
    top: 1%;
    right: 2%;

    font-family: Roboto, Arial;
    color: rgb(171, 171, 171);
    font-size: 25px;
    cursor: pointer;
}

.hb-head-tag {
    text-align: center;
    color: rgb(165, 165, 165);
    text-decoration: none;
    font-family: Roboto, Arial;
    font-weight: bold;
    font-size: 27px;

    margin-top: 15px;
    margin-bottom: 15px;
}

.hb-popup-content {
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: rgb(49, 49, 49);
    border: 6px solid rgb(96, 96, 96);
    border-radius: 30px;
    overflow: auto;

    margin-top: 10px;
}

.hb-links {
    width: 90%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.hb-link-button {
    display: block;
    border: 3px solid rgb(84, 84, 84);
    border-radius: 7px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-family: Roboto, Arial;
    color: rgb(142, 142, 142);
    background-color: rgb(41, 41, 41);

    margin-top: 6px;
    margin-bottom: 6px;
    
    padding-top: 5px;
    padding-bottom: 5px;
}

.nav-buttons,
.nav-buttons-l,
.nav-buttons-r {
    border-top: 2px solid white;
    border-bottom: 2px solid white;

    background-color: rgb(48, 48, 48);
    color: white;
    padding: 8px 10px;
    font-size: 14px;
    text-decoration: none; 
    font-family: Roboto, Arial;

    cursor: pointer;
    
    transition: color .1s;
}

.nav-buttons:hover,
.nav-buttons-l:hover,
.nav-buttons-r:hover {
    color: rgba(255, 255, 255, 0.5);
}

.nav-buttons {
    border-left: none;
    border-right: none;
}

.nav-buttons-l {
    border-left: 2px solid white;
    border-right: none;

    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.nav-buttons-r {
    border-left: none;
    border-right: 2px solid white;

    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Header End */


/* Footer Start */

.footer {
    background-color: rgb(40, 40, 40);
    padding-bottom: 20px;
}

.sitemap {
    display: flex;
    flex-wrap: wrap;

    padding-top: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
}

.sitemap-sec {
    margin-right: 130px;
    margin-bottom: 20px;
}

.sitemap-title {
    margin-top: 0;
    margin-bottom: 2px;

    color: white;
    font-weight: bold;
    font-size: 42px;
}

.sitemap-link {
    display: block;
    text-decoration: none;
    color: #bebebe;
    font-family: Roboto, Arial;
    font-size: 20px;
    font-weight: 400;
}

.footer-info-bar {
    margin: 15px 20px;
    padding: 8px 10px;
    
    border-top: 4px solid white;
    border-bottom: 4px solid white;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-icon {
    height: 60px;
    filter: invert(1) brightness(2);
}

.footer-title {
    margin-top: 0;
    margin-bottom: 2px;

    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 23px;
}

.footer-tagline {
    margin-top: 0;
    margin-bottom: 0;

    color: white;
    text-align: center;
}

.footer-icon-2 {
    height: 60px;
}

/* Footer End */