﻿/* Global Styles */

html,
body {
    height: 100%;
}

body {
    padding-top: 50px;
    /* Required padding for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navigation changes. */
}


/* Home Page Carousel */

header.carousel {
    height: 50%;
}

header.carousel .item,
header.carousel .item.active,
header.carousel .carousel-inner {
    height: 100%;
}

header.carousel .fill {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}


/* Footer Styles */

footer {
    margin: 50px 0;
}

footer p.left {
    float: left;
    width: 75%;
}

footer p.right {
    text-align: right;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


/* Navbar Styles */

a.navbar-brand {
    padding: 2px 15px 0 20px;
}

a.navbar-brand img {
    width: 140px;
    height: 47px;
}

.navbar .top-navigation {
    height: 100px;
}

.navcolore {
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.85)
}

ul.nav a {
    color: #00509b;
    font-weight: 400;
    font-size: 18px
}

.navbar-toggle .icon-bar {
    background-color: #777;
}

button.navbutton {
    border: 1px solid #777;
}

ul.dropdown-menu li a {
    border-bottom: 1px solid rgba(119, 119, 119, 0.3);
}


/* display this row with flex and use wrap (= respect columns' widths) */

.row-flex {
    display: flex;
    flex-wrap: wrap;
}


/* vertical spacing between columns */

[class*="col-"] {
    margin-bottom: 30px;
}

h1.page-header {
    margin-top: 10px;
}

.InfoText {
    text-align: justify;
}

.Font1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

img.MainHorCenterImg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-height: 250px;
}

div.InnerIndent1 {
    margin-left: 10%;
}

.RegPopupImg {
    /* border-radius: 5px; */
    cursor: pointer;
    transition: 0.3s;
}

.RegPopupImg:hover {
    opacity: 0.7;
}


/* The Modal (background) */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}


/* Modal Content (image) */

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}


/* Caption of Modal Image */

#PopupImgCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: rgb(255, 255, 255);
    padding: 10px 0;
    height: 150px;
    font-size: 20px;
}


/* Add Animation */

.modal-content,
#PopupImgCaption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}


/* 100% Image Width on Smaller Screens */

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}