/* ----------------------------------------------
 * Generated by Animista on 2024-1-8 11:48:51
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


.fade-in {
    -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

body {
    font-family: "Montserrat" !important;
}

.nav-logo {
    width: 15%;
}


#first-banner {
    height: 80vh;
    background-image: url("assets/img/home.jpg");
    background-position: center left;
}

.about-point h5 {
    font-weight: bold !important;
}

.white {
    color: white !important;
}

.bold {
    font-weight: bold;
}

.tab-content {
    min-height: 100vh;
}

footer {
    background-color: #696969;
    color: white !important;
}

.nav-link.active {
    background-color: #82D801 !important;
    font-weight: bold !important;
}

.nav-tabs {
    border-bottom: #82D801 1px solid !important;
}

.nav-link {
    color: black !important;
    ;
}

a {
    color: #82D801 !important;
}

#message-sent {
    display: none;
}