@charset "UTF-8";

html{
    color: rgb(255, 255, 255);
    font-family:serif;
    font-optical-sizing: auto;
    font-variation-settings:"width" 100;
    max-width: 3840px;

}

body{
    margin: 0 auto;
    background-color: rgb(66, 103, 243); 
}

ul,li{
    margin: 0;
    padding: 0;
}


@media screen and (min-width: 1400px) {
            .mobilemenu{
                display: none;
            }

            .topmenu{
                display: block;
                position: fixed;
                float: right;
                width: 600px;
                right: 30px;
                z-index: 10;
            }

            .navbar{
                margin: 20px;
                z-index: 10;
            }

            .navbar ul {
                display: flex;
                flex-flow: row;
                list-style-type: none;
                margin: 0;
                padding: 0;
                overflow: hidden;
                background-color: rgb(44, 82, 153);
                border-radius: 5px;
            }
            .navbar li {
                border: 1px solid #bbbbbb;
            }
            .navbar li:last-child {
                margin-left: auto;
                border-left: 1px solid #bbbbbb;
            }
            .navbar li a {
                display: block;
                color: #ffffff;
                text-align: center;
                padding: 20px 20px;
                text-decoration: none;
                transition: all .3s;
            }
            .navbar li a:hover{
                background-color: #a9bce2;
            }
            #lang{
                background-color: rgb(36, 100, 184);
            }

            #lang:hover{
                background-color: #a9bce2;
            }


            .content{
                width: 100%;
                min-height: 600px;
                max-width: 3840px;
            }
            .content h1{
                font-size: 32px;
                text-align: center;
            }
            .stream{
                padding-top: 50px;
                margin: 0 auto;
                font-weight: 600;
                width: 90%;
            }
            .stream p{
                margin: 0 20px 0 20px;
            }
            .stream h2{
                margin: 0 20px 0 20px;
            }


            h3{text-align: center;}

            footer{
                height: 400px;
                background-color:  rgb(238, 238, 238);
            }
            footer p{
                text-align: center;
            }
            .footerhome{
                padding: 50px;
                font-size: 28px;
                color: rgb(46, 46, 46);
                font-weight: 600;
            }
            .footerhome a{
                text-decoration: none;
            }


            .footerwords{
                font-size: 20px;
                color: rgb(46, 46, 46);
                font-weight: 600;
            }
            .footerright{
                font-size: 28px;
                color: rgb(46, 46, 46);
                font-weight: 700;
            }


}


/* tablet */
@media screen  and (min-width:650px) and (max-width:1400px){

        .mobilemenu{
            display: none;
        }

        .topmenu{
            display: block;
            position: fixed;
            float: right;
            width: 400px;
            right: 10px;
            z-index: 10;
            font-size: 12px;
        }

        .navbar{
            margin: 20px;
            z-index: 10;
        }

        .navbar ul {
            display: flex;
            flex-flow: row;
            list-style-type: none;
            margin: 0;
            padding: 0;
            overflow: hidden;
            background-color: rgb(44, 82, 153);
            border-radius: 5px;
        }
        .navbar li {
            border: 1px solid #bbbbbb;
        }
        .navbar li:last-child {
            border-right: none;
            margin-left: auto;
            border-left: 1px solid #bbbbbb;
        }
        .navbar li a {
            display: block;
            color: #ffffff;
            text-align: center;
            padding: 10px 10px;
            text-decoration: none;
            transition: all .3s;
        }
        .navbar li a:hover{
            background-color: #a9bce2;
        }
        #lang{
            background-color: rgb(36, 100, 184);
        }


        .content{
            width: 100%;
            min-height: 600px;
            max-width: 3840px;
        }
        .content h1{
            font-size: 32px;
            text-align: center;
        }
        .stream{
            padding-top: 50px;
            margin: 0 auto;
            font-weight: 600;
            width: 90%;
        }
        .stream p{
            margin: 0 20px 0 20px;
        }
        .stream h2{
            margin: 0 20px 0 20px;
        }

        h3{text-align: center;}

        footer{
            height: 400px;
            background-color:  rgb(238, 238, 238);
        }
        footer p{
            text-align: center;
        }
        .footerhome{
            padding: 50px;
            font-size: 28px;
            color: rgb(46, 46, 46);
            font-weight: 600;
        }
        .footerhome a{
            text-decoration: none;
        }


        .footerwords{
            font-size: 20px;
            color: rgb(46, 46, 46);
            font-weight: 600;
        }
        .footerright{
            font-size: 28px;
            color: rgb(46, 46, 46);
            font-weight: 700;
        }


}

/* mobile */
@media screen and (max-width: 649px) {
    .mobilemenu{
        display: block;
    }

    .hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    width: 48px;
    height: 48px;
    border: none;
    background-color: rgb(44, 82, 153);
    border: 1px solid #fff; 
    cursor: pointer;
    }

    .hamburger_line {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 2px;
    background-color: #fff;
    transition: all .4s;
    }

    .hamburger_line:nth-of-type(1) {
    top: 14px;
    }
    .hamburger_line:nth-of-type(2) {
    top: 23px;
    }
    .hamburger_line:nth-of-type(3) {
    top: 32px;
    }

    /* MenuOpen */
    .hamburger.active .hamburger_line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
    }
    .hamburger.active .hamburger_line:nth-of-type(2) {
    opacity: 0;
    }
    .hamburger.active .hamburger_line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
    }

    .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 450px;
    background-color: rgb(44, 82, 153);
    box-shadow: 2px 0 4px rgb(255, 255, 255);
    transform: translateX(-110%);
    transition: transform .4s;
    z-index: 90;
    }

    .nav.active {
    transform: translateX(0);
    }

    .nav_list {
    margin: 0;
    padding: 100px 0 0;
    list-style: none;
    }

    .nav_item {
    padding: 0 20px;
    }

    .nav_link {
    display: block;
    padding: 15px 0;
    color:  rgb(238, 238, 238);
    text-decoration: none;
    border-bottom: 1px solid #eee;
    }

    .topmenu{
    display: none;
    }

    .navbar{
        z-index: 10;
    }

    .navbar ul {
        display: flex;
        flex-flow: row;
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-color: rgb(44, 82, 153);
        border-radius: 5px;
    }
    .navbar li {
        border-right: 1px solid #bbbbbb;
    }
    .navbar li:last-child {
        border-right: none;
        margin-left: auto;
        border-left: 1px solid #bbbbbb;
    }
    .navbar li a {
        display: block;
        color: #ffffff;
        text-align: center;
        padding: 10px 10px;
        text-decoration: none;
        transition: all .3s;
    }
    .navbar li a:hover{
        background-color: #a9bce2;
    }
    #lang{
        background-color: rgb(36, 100, 184);
    }

    .content{
        width: 100%;
        min-height: 600px;
        max-width: 3840px;
    }
    .content h1{
        font-size: 20px;
        text-align: center;
    }
    .stream{
        padding:0px;
        width: 100%;
        margin: 0;
        font-weight: 600;
    }

    .stream p{
    padding:0 20px 0 20px;
    }
    .stream h2{
    padding:0 20px 0 20px;
    }

    h3{text-align: center;}


    footer{
        padding:0 20px 0 20px;
        height: 400px;
        background-color:  rgb(238, 238, 238);
    }
    footer p{
        text-align: center;
    }
    .footerhome{
        padding: 30px;
        font-size: 18px;
        color: rgb(46, 46, 46);
        font-weight: 600;
    }
    .footerhome a{
        text-decoration: none;
    }


    .footerwords{
        font-size: 14px;
        color: rgb(46, 46, 46);
        font-weight: 600;
    }
    .footerright{
        font-size: 14px;
        color: rgb(46, 46, 46);
        font-weight: 700;
    }

}

