 body {
            font-family: 'AmsiPro';
        }

        .strong{
            font-weight: bold !important;
        }
        .bold{
            font-weight: bold !important;
            text-transform: uppercase !important;
        }

        .hero {
            position: relative;
            width: 100%;
            min-height: 100vh;
            background-repeat: no-repeat;
            background-size: cover;
            background-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 40%), url('/img/page_bg.svg');
        }

        .navbar-default {
            background-color: transparent;
            border-color: transparent;
            color: white;
        }

        .nav-link {
            color: white;

        }

        .nav-item.participate {
            position: relative;
            z-index: 1;
        }

        .nav-item a {
            position: relative;
            color: #9FFE3 !important;
            z-index: 1;
            padding: 17px 0;
            font-family: 'AmsiPro';
        }

        .nav-item a:hover {
            color: white !important;
        }

        .nav-item {
            padding: 0 30px;
        }

        .nav-item.participate:before {
            content: "";
            position: absolute;
            right: 0;
            padding-top: 38%;
            z-index: 0;
            left: 0;
            background: url("/img/action_bg.png") no-repeat;
            background-size: contain;
        }

        .nav-item {}

        .hero-title {
            font-size: 4rem;
            line-height: 1.3em;
            font-weight: 900;
            color: white;
            position: relative;
        }

        .hero-title__sub {
            color: #FABA00;
            font-size: 1.7em;
        }
        .hero-title::after {
            content: '';
            position: absolute;
            bottom: 0px;
            right: 40px;
            width: 40px;
            height: 37px;
            background: url("/img/dec1.svg") no-repeat;
        }
        .hero-subtitle {
            font-size: 23px;
            text-align: center;
            line-height: 28px;
            font-weight: 900;
        }
        .text-yellow {
            color: #FABA00;
        }
        .text-green {
            color: #88BC24;
        }
        .container-lg {
            max-width: min(1400px, 90vw);
            overflow: hidden;
            margin: 0 auto;

        }
        .canvas {
            max-width: min(95%, 80vw);
        }
        .steps {
            position: absolute;
            bottom: 0;
            right: 0;
        }
        @keyframes appearFromUp {
            0% {
                transform: translateY(-20%);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }
        .appear-from-up {
            animation: appearFromUp 1s ease-in-out;
        }
        @keyframes appear {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }
        .appear {
            animation: appear 1s ease-in-out;
        }
        .instructions__container {
            position: relative;
            background-image: url('/img/instructions_bg.png');
            background-size: cover;
            background-repeat: no-repeat;
        }
        .instructions__title {
            color: white;
            font-weight: 900;
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }
        .instructions__list {
            padding-left: 0px;
            list-style: none;
            font-size: 1.4rem;
            position: relative;
        }
        .instructions__list li {
            margin-bottom: 1rem;
        }
        .steps_2 {
            position: absolute;
            bottom: 0;
            right: 0;
        }
        .participate__container {
            position: relative;
            background-image: url('/img/page_bg.svg');
            background-size: cover;
            background-repeat: no-repeat;
        }
        .instructions__subtitle {
            font-size: 1.3rem;
        }
        .deco_participate {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 10vw
        }


    .btn-primary {
        color: #fff;
        background-color: #EC6A06;
        border-color: #EC6A06;
    }
    .btn-primary:hover{
        color: #fff;
        background-color: #EC6A06;
        border-color: #EC6A06;
    }

    .select2-container{
        width: 100% !important;
        text-align: left !important;
    }
    .select2-selection{
        min-height: 39px !important;
    }
    .about {
       background-image: url(/img/decoration_bar.png);
       background-size: cover;
       padding: 37px;
       text-align: center;
       font-size: 40px;
       font-weight: 900;
    }
    .green_bg {
        background-image: url('/img/page_bg.svg');
        background-size: cover;
        position: relative;
        background-repeat: no-repeat;
    }

    .appple_left {
        position: absolute;
        left: 0;
        bottom: -10%;
        max-width: 10vw;
    }
    .right_tigger {
        position: absolute;
        right: 0;
        top: -15%;
        width: 25vw;
    }
    .click_here {
        display: block;
        margin-bottom: 40px;
        margin-top: 10px;
    }
    .bg_black {
        background-image: url('/img/instructions_bg.png');
        background-size: cover;
        background-repeat: no-repeat;
    }

    @keyframes appearFromUp {
        0% {
            transform: translateY(-20%);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes disappearFromDown {
        0% {
            transform: translateY(0);
            opacity: 1;
        }
        100% {
            transform: translateY(20%);
            opacity: 0;
        }
    }

    .appearFromUp {
        animation: appearFromUp 1s ease-in-out;
    }

    .disappearFromDown {
        animation: disappearFromDown 1s ease-in-out;
    }
