/* For smooth scroll */

html {
    scroll-behavior: smooth;
}

div.gallery {
    margin: 5px;
    border: 1px solid #ccc;
    float: left;
    width: 180px;
}

div.gallery:hover {
    border: 1px solid #777;
}

div.gallery img {
    width: 100%;
    height: 100%;
}

div.desc {
    padding: 15px;
    text-align: center;
    background-color: rgba(32, 33, 36, .7);
}


/* For sliding animation */

.slideanim {
    visibility: hidden;
}

.slide {
    animation-name: slide;
    -webkit-animation-name: slide;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
}

@keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(70%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

@-webkit-keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}

@media screen and (max-width: 768px) {
    .col-sm-4 {
        text-align: center;
        margin: 25px 0;
    }
    .btn-lg {
        width: 100%;
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        font-size: 150px;
    }
}

.largeAnim {
    transition: all .2s ease-in-out;
}

.largeAnim:hover {
    transform: scale(1.1);
}

hr {
    padding: 1px;
    background-color: rgba(0, 0, 0, .1)
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 48px;
}

p {
    font-size: 16px;
    color: #5F6368;
}

h2 {
    font-size: 20px;
    font-weight: 500;
}

p>a {
    text-decoration: underline;
}

a.nav-link {
    font-size: 18px;
    padding: 0 10px;
    color: #5F6368;
}

.featured {
    color: rgb(255, 255, 255);
    background-color: #eeb200;
    border-radius: 20%;
    font-size: 10px;
}

.new {
    color: rgb(255, 255, 255);
    background-color: #ee0000;
    border-radius: 20%;
    font-size: 10px;
}