

@import url(animate.css);
@import url(font-awesome.min.css);
@import url(magnific-popup.css);


/*------------------------------------------------------------------
    Gallery
-------------------------------------------------------------------*/

.gallery-box {
    padding: 20px 0px;
    /* border: 1.5px solid rgb(23, 223, 33);
    background-color: rgb(181 239 239); */
}
#gallery h2
{
    font-size: 50px;
    margin: 20px;
}
.gallery-box ul {
    padding: 0 !important;
    display: block;
    margin: auto;
}

.gallery-box ul li {
    position: relative;
    width: 25%;
    margin: 12px;
    padding: 0;
    float: left;
    border: none;
    overflow: hidden;
    height: 23vh;
    width: 50vh;
}

.gallery-box ul li a {
    position: relative;
    display: inline-block;
}
.gallery-box ul li a img
{
    height: 100%;
    width: 100%;
}

.gallery-box ul li a::before {
    content: "";
    position: absolute;
    background: rgba(99, 199, 189, 0.5);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 100%;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.gallery-box ul li a .overlay {
    font-size: 0;
    text-align: center;
    width: 38px;
    height: 38px;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.gallery-box ul li a:hover::before {
    top: 0;
    opacity: 1;
}

.gallery-box ul li a:hover .overlay {
    opacity: 1;
}

