html, body {
    height: 100%;
}


body {
    font-family: 'Open Sans',Helvetica,Arial,Lucida,sans-serif ;
    min-height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
}
a{
    text-decoration-color: #29EA6B;
}

.btn-primary{
    background-color: #29EA6B;
    width: 75%;
    color: black;
}
h1   {
    color: #29EA6B;
    text-shadow: -1px 2px #d3d3d3;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    font-size: xx-large;
    padding-top: 5px;
    margin-top: 5px;
}
h4   {
    color: #29EA6B;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    padding-top: 5px;
    margin-top: 5px;
    font-weight: 700;
}
p    {

    margin-left: 50px;
}

.footer{
    background-color: lightgray;
    border-top: solid 1px ;
    width: 100%;
    grid-row-start: 2;
    grid-row-end: 3;
    text-align: center;
    z-index: -2000;

}

.footerP2{
    color: #29EA6B;
}

.small{
    font-size: xx-small;
    margin-top: 25px;
}
.form-group{
    color: #0f0f0f;
}
.navbar{
    background-color: white;
}
.navbarmenu{
    color: white;
}

.footer-a{
    color: #606060	;
    font-size: 2em;
}

.btn-secondary{

    border: #29EA6B solid 3px;
    width: 75%;
}
.container{
    text-align: center;

}
.modal-footer{
    text-align: center;
}


.img1{

    border-radius: 25px;
    height: 600px;
}
.img2{
    border-radius: 25px;
}
.img3{
    width: 25%;
}
.img1Tbl{
    width: 75px;

}
.img2Tbl{
    width: 75px;
}
.img3Tbl{
    width: 75px;
}

.viewPageImg{
    width: 10%;
    float: left;
    margin: 10px;
    border-radius: 15px;

}

.viewPageBigImg{
    width: 30%;
    float: left;
    margin: 10px;
    border-radius: 15px;
}

#more {display: none;}

.modalFooterBtn{
    margin-top: 5px;
    margin-bottom: 5px;
    width: 90%;
}
.imgModal{
    max-width: 33%;
}
.modal-body{

    text-align: center;
}
.modal{
    margin-top: 65px;
    text-align: center;
}
.input{
    text-align: center;
}

.across3{
    width: 33%;
    float: left;
    padding: 5px;
}

.btn{
    font-size: x-large;
}

.select{
    text-align: center;
}

.footerSubCat{
    color: black;

    font-size: 1.5em;

    font-weight: bolder;
}


@media (min-width: 1200px) {
    .row > .col-lg-4:nth-child(3n+1) {
        clear: left;
    }
}

@media (max-width: 992px) {
    .row > .col-sm-6:nth-child(2n+1) {
        clear: left;
    }
}
/* Dropdown Button */
.dropbtn {
    background-color: white;
    color: darkgray;
    padding: 5px;
    font-size: 16px;
    border: none;
    float: left;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;}