/* 
    Created on : Sep 28, 2021, 4:16:11 PM
    Author     : reni
*/
:root {
    --bg-blue: #D7E2E8; /*  rgb 215 226 232 */
    --bg-orange: rgba(255, 165, 0, 0.5);
    --font-blue: #003b46;
}

* {
    margin: 0 auto;
    padding: 0px;
    font-family: 'Quicksand', sans-serif;
    word-wrap: break-word;
}



html {
    height: 100%;
    box-sizing: border-box;
}

body {
    position: relative;
    margin: 0 auto;
    padding-bottom: 4em; /* push footer "below" main page*/
    min-height: 100%;
}

hr {
    border: 1px solid var(--bg-blue);
}

sup {
    font-size: smaller;
}

button, .button {
    background-color: var(--bg-blue);
    color: var(--font-blue);
    font-size: inherit;
    border-radius: 0.4em;
    padding: 0.3em;
    cursor: pointer;
}

.btn_accept{
    background-color: rgba(107,229,107,0.5);

}

.btn_reject {
    background-color: rgba(255,0,0,0.5);
    float: right;
}

h1 {
    font-size: 1.5em;
}

video {
    display: block;
}

.error-page {
    width: min-content;
    margin: 0 auto;
    text-align: center;
}

.main-container {
    color: var(--font-blue);
}

.content {
    padding: 7%;
    margin: 0 auto;
    color: var(--font-blue);
    width: 40em;
    line-height: 1.5em;
    font-size: large;
}


.main-banner {
    text-align: center;
    font-size: 2em;
    display: flex;
    min-width: min-content;
    width: fit-content;
    width: -moz-fit-content;
    margin: auto;
}

.header-img {
    margin: 0.75em auto;
    height: 96px;
    width: 608px;
    max-height: 100%;
    max-width: 100%;
    cursor: pointer;
}

.tag {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 1em;
}

.sticky {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    z-index: 100; /* chrome, mobile needs menu on top of other (video) elements */
}

.navigationBar {
    text-align: center;
    background-color: white;
}
.nav {
    width: max-content;
    margin: 0 auto;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    border-image:  linear-gradient(to right, transparent, yellow, orange, red, orange, yellow, transparent) 100% 1;

}
.nav ul {
    list-style-type: none;
}

.nav ul .active {
    text-shadow: 0.9px 0.9px 0.9px var(--font-blue);
}

.nav ul li {
    float: left;
    /*  position: relative;*/
    display: block;
}
.nav ul li a {
    display: inline-block;
    padding: 1em  2em;
    text-decoration: none;
    text-align: center;
    color: var(--font-blue);
}

.nav ul li a:hover {
    text-shadow: 1px 1px 1px var(--font-blue);
}


.nav ul ul{
    display:none; /* hides sublists */
}

.nav li:hover ul {
    display:block;  /* shows sublist on hover */
    position: fixed; /* go over main menu border in full screen */
}

#about {
    width: 7em;
}

#about:hover {
    background: #fcfcdb;
    /* background: linear-gradient(transparent, red, orange, yellow); */
}


#about:hover ul {
    background: #fcfcdb;
    /* background: linear-gradient( yellow, orange, red, orange, yellow, orange, red, transparent); */
    width: 7em;
}


.welcome_msg {
    text-align: center;
}

.welcome_msg p {
    font-size: 1.5em;
    line-height: 1.2em;
}
.welcome_msg span {
    font-size: .85em;
}

.caption_1 {
    text-align: center;
    padding-bottom: 3em;
}

.anchor-caption {
    text-decoration: none;
}

.grid {
    padding: 5%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* grid-template-rows: 1fr 1fr 1fr; */
    width: min-content;
    height: min-content;
    margin: auto;
}

.footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    color: var(--font-blue);
    background: linear-gradient(transparent 5%, yellow 25%, orange 40%, red);
    text-align: center;
    /* margin: 1em auto 0px; */
    padding: 1em 0px;
    font-size: 0.7rem;
    line-height: 1.5em;
}

#menu-icon {
    display: none;
}

.contact-input {
    width: 100%;
}

.image_list {
    max-width: 75%;
    display: flex;
    flex-flow: wrap;
}

.image_list_elem {
    padding:    0.2em;
    max-height: 10em;
    cursor: pointer;
    transition: transform .3s; /* Animation */
}

.image_list_elem:hover {
    transform: scale(3);
    z-index: 20;
}

.image_list_elem:not(:hover) { /* If pointer/mouse is off the image, reset it's size. Only needed for reset mobile's magnify, desktops handle hover perfectly without this*/
    transform: scale(1);
}

/* On small screens cannot click away. Replaced by "magnify"
.image_list_elem:active { /* workaround for mobile hover, works while mouse down or click
    transform: scale(3);
}
*/

.magnify {
    transform: scale(3);
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(215, 226, 232, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1rem 1.5rem;
    width: fit-content;
    max-width: 75%;
    border-radius: 0.5rem;
}

.modal-result {
    white-space: pre;
}

.closeX {
    float: right;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: var(--bg-blue);
    color: var(--font-blue);
    font-size: inherit;
    padding: 0.3rem;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.genSecImg {
    cursor: pointer;
}

.signature {
    max-width: 45%
}

.watermark {
    float:right;
    max-width: 45%;
    margin-right: 10%;
}

@media only screen and (max-width : 800px) {

    header {
        position: absolute;
    }

    #menu-icon {
        display:inline-block;
        text-decoration: none;
        color: var(--font-blue);
    }

    .header-img {
        width: 95%;
    }

    nav ul, nav:active ul {
        display: none;
        position: absolute;
        /* background: radial-gradient(white, yellow, orange, red); */
        background: #fcfcdb;
        border: 1px solid var(--bg-blue);

        width: min-content;
        border-radius: 2px 0 2px 2px;
    }

    nav li {
        text-align: center;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    nav:hover ul li a {
        padding: 0.5em 1em;
    }

    nav:hover ul {
        display: block;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .footer {
        font-size: 70%;
    }

    .content {
        padding: 6%;
        width: inherit;
        max-width: 90%
    }

    .content p {
        width: 90%;
    }

    .share-on {
        padding-left: 5%;
    }

}

table, th, td {
    border: 1px solid var(--font-blue);
    border-collapse: collapse;
    padding: 1em;
}

.cookieBox {
    background: red;
    border: var(--bg-blue);
    width: 30%;
    bottom: 0px;
}

.share-on {
    margin: 0 auto;
    display: flex;
    float: left;
}

.s-icon {
    display: block;
    width: 1.5em;
    height: 1.5em;
    margin-right: 1em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.5em;
}
/*
.i-reddit {
    background-image: url(../images/social/reddit.webp);
}

.i-pinterest {
    background-image: url(../images/social/pinterest.webp);
}

.i-linkedin {
    background-image: url(../images/social/linkedin.webp);
}

.i-facebook {
    background-image: url(../images/social/facebook.webp);
}

.i-twitter {
    background-image: url(../images/social/twitter.webp);
}
.i-mail {
    background-image: url(../images/social/mail.webp);
}

.i-whatsapp {
    background-image: url(../images/social/whatsapp.webp);
}
    */