body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/*--------------------- NAVIGATION ---------------------*/
.navigation-section {
    min-height: 100vh;
}
nav {
    background: rgba(0,0,0,0.42);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: -66px;
}

/*--------------------- END NAVIGATION ---------------------*/

/*--------------------- HERO ---------------------*/
.bg-main {
    background-color: rgba(50,42,50,09);
    color: #fff;
}

.bg-transp33 {
    background-color: rgba(0,0,0,0.33);
}
.hero-form {
    margin: 25px 0;
    padding: 15px 15px;
    background-color: rgba(0,0,0,0.25);
    border-radius: 5px;
}

.img-hero {
    max-width: 250px;
}

.particles-inside {
    position: absolute;
    z-index: 10;
    top: 5%;
    left: 5%;
    right: 5%;
}

#particles-js{
    position: relative;
    width: 100%;
    height: 200vh;
    min-height: 1250px;
    z-index: 0;
    top: 0px;
    left: 0px;
  }


#textarea-container {
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.grow {
    transition: all 0.3s ease-in-out;
}

.grow:hover {
    transform: scale(1.1);
}
/*
Extra small devices (portrait phones, less than 576px)
No media query for `xs` since this is the default in Bootstrap
Small devices (landscape phones, 576px and up)
*/
@media (min-width: 576px) { 
    #particles-js{
    height: 300vh;
    }
    .particles-inside {
        position: absolute;
        z-index: 10;
        top: 5%;
        left: 10%;
        right: 10%;
    }
}
/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) { 
    #particles-js{
        height: 150vh;
        }
    .particles-inside {
        left: 20%;
        right: 20%;
    }
    .navigation-section {
        min-height: 80vh;
    }
    .hero-form {
        padding: 15px 25px;
    }
}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    #particles-js{
        height: 185vh;
    }
    .navigation-section {
        min-height: 75vh;
    }
 }

/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {  }

/*--------------------- END OF HERO ---------------------*/

/*--------------------- FOOTER ---------------------*/

footer {
    color: #fff;
    background: linear-gradient(0deg, rgba(32,18,30,1) 0%, rgba(50,42,50,09) 100%);
}


.white-link {
    color: #fff;
}
.white-link:hover {
    color: #fff;
}

/*--------------------- END OF FOOTER ---------------------*/
