/* HEAD STYLE */


/* Colore Palette Style */


     /* CSS HEX
    --gray-web: #818083;
    --dark-cornflower-blue: #293a6e;
    --cyan-process: #00bcf5;
    --cultured: #f8f8f8;
    --medium-aquamarine: #3ae4ae;

     CSS HSL
    --gray-web: hsla(260, 1%, 51%, 1);
    --dark-cornflower-blue: hsla(225, 46%, 30%, 1);
    --cyan-process: hsla(194, 100%, 48%, 1);
    --cultured: hsla(0, 0%, 97%, 1);
    --medium-aquamarine: hsla(161, 76%, 56%, 1);

     SCSS HEX
    $gray-web: #818083ff;
    $dark-cornflower-blue: #293a6eff;
    $cyan-process: #00bcf5ff;
    $cultured: #fefeffff;
    $medium-aquamarine: #3ae4aeff;


     SCSS RGB
    $gray-web: rgba(129, 128, 131, 1);
    $dark-cornflower-blue: rgba(41, 58, 110, 1);
    $cyan-process: rgba(0, 188, 245, 1);
    $cultured: rgba(248, 248, 248, 1);
    $medium-aquamarine: rgba(58, 228, 174, 1);
    */

/* Fonts */

    html, body, p, a {
        font-family: 'Makro XM';
        overflow-x: hidden;
        color: #818083;
    }
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Catamaran', sans-serif;
        font-weight: bold;
        font-style: normal;
    }
    hr {
        border-top: ;
    }
    button:focus {
        box-shadow: none;
    }
    .btn:focus {
        box-shadow: none;
    }
    .mobile_show {
        display: none;
    }

/* Stile Sito */

    body {
        background-attachment: fixed;
        background-image: url(../../img/background/background_landing.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        line-height: 30px;
        opacity: 0.9;
        position: relative;
        min-height: 100vh;
    }

    p {
        text-align: justify;
        color: #818083;

    }
    h1 {
        text-align: center;
        margin-top: 5rem;
        margin-bottom: 2rem;
        color: #00bcf5;
    }
    h2 {
        margin-bottom: 1rem;
        color: #293a6e;
    }
    h3 {

        color: #293a6e;
    }
    a {
        color: #00bcf5;
    }
    a:hover {
        text-decoration: none;
    }
    .my-12 {
        margin-top:10rem !important;
        margin-bottom: 10rem !important;
    }
    .btn-outline-info {
    color:  #00bcf5;
    border-color:  #00bcf5;
    }
    .btn-outline-info:hover {
    color: #293a6e;
    background-color: #00bcf5;
    border-color: #00bcf5;
    }


/* Stile Sito */

    body {
        background-color: #818083;
        position: relative;
        min-height: 100vh;
    }
    .parallax {
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .parallax1 {
        min-height: 70vh;
        /*background-image: url(../../img/background/parallax/parallax1.jpeg);*/
        background-position: center top;
        background-size: cover;
        filter: grayscale(1);
    }
    .parallax2 {
        min-height: 70vh;
        /*background-image: url(../../img/background/parallax/parallax2.jpeg);*/
        background-position: center;
        background-size: cover;
        filter: grayscale(1);
    }
    .parallax3 {
        min-height: 70vh;
        /*background-image: url(../../img/background/parallax/parallax3.jpeg);*/
        background-position: center;
        background-size: cover;
        filter: grayscale(1);
    }
    .titolo_mobile {
        display: none;
        background-image: url(../../img/background/background_landing.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    .titolo_mobile h1 {
        text-align: center;
        color: #00bcf5;
        padding-top: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 0;
        text-transform: uppercase;
        text-shadow: -2px 2px 0px #293a6e;

    }
    @media (max-width: 575.98px) {
        .parallax {
            display: none;
        }
        .titolo_mobile {
            display: block;

        }
    }
