@import url('https://fonts.googleapis.com/css?family=Quicksand');

* {
    box-sizing: border-box;
}

iframe {
    border-width: 0;
}

html, body, section {
    width: 100%;
    padding: 0;
    margin: 0;

    font-family: 'Quicksand', sans-serif;
}

p {
    text-indent: 25px;
}

#content-section {
    margin: 50px 0;
    padding: 30px 100px;
}

@media only screen and (max-width: 750px) {
    #content-section {
        padding: 30px 0px;
    }

    h1 {
        text-align: center;
    }
}

@media only screen and (orientation: portrait) {
    h1.display-3 {
        display: none;
    }

    .navbar-brand {
        overflow-x: hidden;
    }

    .pagination-bar > .row > [class*="col-"] {
        padding-bottom: 15px;
    }
}

.footer {
    text-align: center;
    padding: 30px;
}

span[tooltip="true"][tooltip-position="top"]:hover::after, .img-link {
    padding: 15px 0;
    color: white;
    background-color: #373a3c;
    border-radius: 8px;
    font-size: 12px;
}

span[tooltip="true"] {
    position: relative;
    text-decoration: underline;
    text-decoration-style: dotted;
}

span[tooltip="true"]:hover::after {
    content: attr(tooltip-data);
    position: absolute;
    width: 100px;
    overflow: hidden;
    text-indent: 0px;
    text-align: center;
}

span[tooltip="true"][tooltip-position="top"]:hover::after {
    left: calc(50% - 50px);
    bottom: 100%;
}

.img-section {
    position: relative;
}

.img-link {
    visibility: hidden;
    z-index: -1;
    opacity: 0;

    position: absolute;
    top: calc(100% - 46px - 10px);
    left: 20%;

    width: 60%;
    height: 46px;

    text-align: center;

    overflow: hidden;
}

.img-section:hover > .img-link {
    visibility: visible;
    z-index: 5;
    opacity: 1;
}

iframe.map {
    width: 100%;
}

.img-with-link {
    width: 100%; 
    display: block;
}

.pagination-bar {
    padding: 15px;
    text-align: center;
}

.img-col {
    overflow-y: hidden;
}

.img-col img {
    width: 100%;
}

sup > a {
    color: red;
    text-decoration: underline;
}

.card-img {
    object-fit: cover;
    width: 100%;
    height: 300px;
    display: block;
}
