@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Multani&display=swap');

html, body {
    margin: 0;
    height: 100%;
    background-color: #000;
    font-family: 'Noto Sans Multani', sans-serif;
    color: white;
    line-height: 1.5;
    font-size: 1rem;
}

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    margin-top: 0;
    margin-bottom: .5rem;
}

p, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: #f5c042;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.title {
    line-height: .85;
    color: #f5c042;
    font-size: 50px;
    margin-bottom: 2rem;
}

#navContainer {
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
}
.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin: 0;
    list-style: none;
    justify-content: center;
    padding: 15px;
    background-color: #b31e10;
    margin: auto;
    border-radius: 10px;
}

.nav > li {
    margin: 0 5px;
}



.nav-link img {
    height: 48px;
}

.nav-link.active img:not(.active),
.nav-link img.active {
    display: none;
}

.nav-link.active img.active {
    display: inline;
}

.tab-content {
    overflow: hidden;
    position: relative;
}


.tab-pane {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 10;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

#tabHome {
    display: block;
}

.container {
    position: absolute;
    right: 0;
    bottom: 100px;
    left: 0;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 1.25rem;
}

.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-grow-1 {
    flex-grow: 1;
}

.ms-3 {
    margin-left: 1rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.animateToTop {
    position: relative;
    animation-name: animateToTop;
    animation-duration: 0.5s;
}


@-webkit-keyframes animateToTop {
    from {bottom:-30px; opacity:0} 
    to {bottom:0; opacity:1}
}
  
@keyframes animateToTop {
    from {bottom:-30px; opacity:0}
    to {bottom:0; opacity:1}
}


.row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.row > [class^="col"] {
    flex-shrink: 0;
    max-width: 100%;
    width: 100%;
}

.icon-holder {
    width: 36px;
    text-align: center;
}
.icon-holder img {
    max-width: 100%;
    max-height: 32px;
    height: auto;
}

#tabHome img {
    max-width: 100%;
    max-height: 125px;
}


/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    background-color: rgba(0,0,0,0.5);
}
  
/* Modal Content */
.modal-content {
    position: relative;
    margin: auto;
    width: 100%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animateFromTop;
    animation-duration: 0.4s;
    background-color: #fff;
    color: #212529;
}
  
/* Add Animation */
@-webkit-keyframes animateFromTop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}
  
@keyframes animateFromTop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}
  
/* The Close Button */
.close-modal{
    color: white;
    float: right;
    font-size: 28px;
    line-height: 1;
}
  
.close-modal:hover,
.close-modal:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 10px 16px;
    background-color: #b31e10;
    color: white;
    line-height: 1.5;
}

.modal-title {
    margin: 0;
    font-size: 18px;
}

.modal-body {
    padding: 16px;
    max-height: calc(100vh - 47px - 65px);
    overflow-y: auto;
    line-height: 1.4;
}


@media (min-width: 768px) {
    .nav {
        max-width: 70%;
    }

    .nav > li {
        margin: 0 40px;
    }

    .nav-link img {
        height: 72px;
    }

    .nav-link img  {
        transition: transform .25s ease-in-out;
    }
    
    .nav-link.active img,
    .nav-link:hover img {
        transform: scale(1.1) !important;
        transition: transform .15s ease-in-out;
    }

    .container {
        bottom: 150px;
        right: 20%;
        left: 20%;
    }

    #tabHome img {
        max-height: 200px;
    }

    .col-7 {
        flex: 0 0 auto;
        width: 58.33333333% !important;
    }
    
    .col-5 {
        flex: 0 0 auto;
        width: 41.66666667% !important;
    }

    .title {
        font-size: 85px;
        margin: 0;
    }

    .modal-content {
        width: 60%;
    }
}