html {
    position: relative;
    min-height: 100%;
}
body {
    margin-bottom: 60px; /* Margin bottom by footer height */
}
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px; /* Set the fixed height of the footer here */
}

:root {
    --bs-nav-link-color: White;
}

.bluebg {
    background-color: #99ccff !IMPORTANT;
    color: white !important;
}
.special {
    background-image: url("../media/background.jpg");
    background-position: center;
    background-color: #99ccff !important;
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer1 {
    background-color: #333333;
    color: white !important;
}
.footer2 {
    background-color: #000;
    color: white !important;
    font-size: 0.8em;
    text-align: center;
    vertical-align: middle;
}
.section {
    padding-top: 50px;
    padding-bottom: 50px;
}
@media (min-width: 62em) {
    .featurette-heading {
        margin-top: 7rem;
    }
}
@media (min-width: 40em) {
    .featurette-heading {
        font-size: 50px;
    }

    .featurette-heading {
        font-weight: 300;
        line-height: 1;
        letter-spacing: -.05rem;
    }
}
@media (max-width: 1000px) {
    .centermob
    {
        text-align: center;
    }

    .footer1 .socials {
        text-align: center;
        flex: 0 0 auto;
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: auto;
        width: 100%;
        margin-bottom: 2rem;
    }
}
.nav_link {
    color: #FFF !important;
}
.float-right {
    float: right;
}
@media (min-width: 992px) {
.navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-direction: row-reverse;
    flex-basis: auto;
}
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 2rem;
        padding-left: 2rem;
        padding-bottom: 0.1rem;
        font-size: 1rem;
    }
}
.navbar-nav {
    align-items: center;
    color: White;
    --bs-nav-link-padding-x: 0rem;
    --bs-nav-link-padding-y: 1rem;
    --bs-nav-link-font-weight: 0;
}
.nav-item {
    --bs-nav-link-color: white;
    --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
    --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
}
.btn-outline-info {
    --bs-btn-color: #99ccff;
    --bs-btn-border-color: #99ccff;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #99ccff;
    --bs-btn-hover-border-color: #99ccff;
    --bs-btn-focus-shadow-rgb: 13, 202, 240;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #99ccff;
    --bs-btn-active-border-color: #99ccff;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #99ccff;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #99ccff;
    --bs-gradient: none;
}

@media (min-width: 992px) {
   .footer1 .socials {
       text-align: center;
       justify-content: center;
       display: flex;
       align-items: center;
        flex: 0 0 auto;
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: auto;
        width: 33.33333333%;
    }
}
.navdot {

}
.normal .flower {
        color: #99ccff;
    font-size: smaller;
}
.active .flower {
        color: #FFFFFF;
    font-size: smaller;
}
.footer1 .row {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.footer1 .nav {
    align-items: center;
    margin-bottom: 2rem;
}

#myImg: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 */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content,
#caption {
    -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.1)
    }
    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close {
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.rounded-corners {
    border-radius: 25px;
    border: 3px solid #99ccff;
}