/*----------------------------------------------------------------------------*/
/*                                  Fonts Family                              */
/*----------------------------------------------------------------------------*/

/* Webfonts: Copyright © Letters From Sweden. All rights reserved. To obtain a license, please see: https: //lettersfromsweden.se */
@font-face {
    font-family: 'Lab Grotesque Bold';
    src: url('../fonts/LabGrotesque-Bold.woff2') format('woff2'),
    url('../fonts/LabGrotesque-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lab Grotesque Regular';
    src: url('../fonts/LabGrotesque-Regular.woff2') format('woff2'),
    url('../fonts/LabGrotesque-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lab Grotesque Light';
    src: url('../fonts/LabGrotesque-Light.woff2') format('woff2'),
    url('../fonts/LabGrotesque-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


.lab-grotesque-bold {
    font-family: "Lab Grotesque Bold", Helvetica, sans-serif !important;
    font-weight: bold;
    font-style: normal;
}

.lab-grotesque-regular {
    font-family: "Lab Grotesque Regular", Helvetica, sans-serif !important;
    font-weight: normal;
    font-style: normal;
}

.lab-grotesque-light {
    font-family: "Lab Grotesque Light", Helvetica, sans-serif !important;
    font-weight: normal;
    font-style: normal;
}


/* Trick to fix Legibility of the font (Mac only)*/
* {
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}


/*----------------------------------------------------------------------------*/
/*                                  Common                                    */
/*----------------------------------------------------------------------------*/

/* ---- reset ---- */
body {
    margin: 0;
    background-color: #17182f;
}

* {
    margin: 0;
}

canvas {
    display: block;
    vertical-align: bottom;
}

/* ---- particles.js container ---- */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
}

#overlay {
    opacity: 0.24;
    background: radial-gradient(circle, #257EB2 0%, #000000 100%);

    position: fixed;
    width: 100%;
    height: 100%;
}

/* ---- content ---- */
html,
body {
    font-family: "Lab Grotesque Light", Helvetica, sans-serif !important;
    overflow-x: hidden;
}

.content {
    /*border: 1px solid red;*/
    max-width: 768px;
    margin: auto;
    text-align: center;
    padding: 20px;
}

.full-height {
    min-height: 100vh;
}

.logo-mvc {
    height: 72.81px;
    width: 160px;
    background-image: url("../images/logo-mvc.svg");
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
}

.text-1,
.text-2 {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: -0.11px;
    text-align: center;
    margin-bottom: 20px;
}

/*.text-2 {*/
/*color: #FFFFFF;*/
/*font-size: 18px;*/
/*line-height: 23px;*/
/*letter-spacing: -0.12px;*/
/*text-align: center;*/
/*margin-bottom: 30px;*/
/*}*/

.footer-text {
    color: #C7D2E2;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: -0.08px;
    text-align: center;
    padding: 20px;
}

.hidden-on-mobile {
    display: none;
}

@media only screen and (min-width: 600px) {
    .footer-text {
        position: absolute;
        bottom: 0px;
        left: 0;
        right: 0;
    }

    .logo-mvc {
        margin-top: 0px;
        margin-bottom: 80px;
    }

    .text-1,
    .text-2 {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 60px;
    }

    .hidden-on-mobile {
        display: initial;
    }

    /*.text-2 {*/
    /*font-size: 20px;*/
    /*line-height: 25px;*/
    /*margin-bottom: 140px;*/
    /*}*/
    .footer-text {
        font-size: 14px;
        line-height: 19px;
    }

}





