@font-face {
    font-family: Poppins-Regular;
    src: url(../assets/fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: Poppins-SemiBold;
    src: url(../assets/fonts/Poppins-SemiBold.ttf);
}

* {
    margin: 0;
    padding: 0;
    font-family: Poppins-Regular;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #bebebe;
    border-radius: 10px;
}

#top-link-block.affix-top {
    position: absolute; /* allows it to "slide" up into view */
    bottom: -82px;
    left: 10px;
}

#top-link-block.affix {
    position: fixed; /* keeps it on the bottom once in view */
    bottom: 18px;
    left: 10px;
}

/*-------------------------------------------------------HEADER-------------------------------------------------------*/

.navbar-brand {
    font-family: Poppins-SemiBold;
}

.navbar-brand img {
    margin-right: 10px;
}

.fa-search {
    padding: 3px 0px 3px 0px;
}

.fa-user {
    padding: 3px 0px 3px 0px;
}

.user {
    margin-left: 20px;
}

.form-group label {
    font-family: Poppins-SemiBold;
}

.dropdown-menu {
    box-shadow: 5px 5px 10px rgba(52, 52, 52, 0.2);
}

/*--------------------------------------------------------BODY--------------------------------------------------------*/

.home {
    display: grid;
    place-content: center;
    height: 100vh;
}

.home img {
    margin: 0 auto;
    margin-bottom: .8em;
    width: 200px;
    box-shadow: 5px 5px 10px rgba(52, 52, 52, 0.2);
    border-radius: 30px;
}

.home h1 {
    text-align: center;
    margin: .3em 0;
    font-weight: bold;
}

.home h3 {
    font-size: 1.5em;
}

.home a {
    margin: 0 auto;
    margin-top: 1em;
    width: 130px;
    text-align: center;
    color: white;
    background: #28a745;
    border-radius: 5px;
    padding: 0.5em;
    box-shadow: 5px 5px 10px rgba(52, 52, 52, 0.2);
}

.home a:hover {
    color: white;
    background: #33cd54;
}

.scroll-down-svg {
    margin: 0 auto;
    margin-top: 5em;
}

#circle-shape {
    animation: animateShape 1.6s ease-in-out infinite;
}

@keyframes animateShape {
    50% {
        cy: 80;
        opacity: 0.1;
    }
}

.content {
    margin-top: 2em;
}

.content-title {
    margin-top: 2em;
    text-align: center;
}

.card-title {
    font-family: Poppins-SemiBold;
}

.card {
    box-shadow: 5px 5px 10px rgba(52, 52, 52, 0.2);
    margin-bottom: 1em !important;
    border-radius: 10px !important;
}

.card .responsive-iframe img {
    border-radius: 10px 10px 0 0 !important;
}

.card-body a {
    color: white;
    background: #28a745;
    border-radius: 5px;
    padding: 0.5em;
}

.card-body a:hover {
    color: white;
    background: #33cd54;
}

.card-body a i {
    margin-left: 0.3em;
}

#particles-js canvas {
    display: block;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: opacity 0.8s ease, -webkit-transform 1.4s ease;
    transition: opacity 0.8s ease, transform 1.4s ease;
}

#particles-js {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -10;
    top: 0;
    left: 0;
}

/*-------------------------------------------------------FOOTER-------------------------------------------------------*/

.footer-copyright a {
    color: #28a745;
}

.footer-copyright a:hover {
    color: #33cd54;
}

/*--------------------------------------------------------MEDIA-------------------------------------------------------*/

@media only screen and (max-width: 600px) {
    .form-inline {
        visibility: hidden;
        display: none;
    }

    .dropdown {
        visibility: hidden;
        display: none;
    }
}
