﻿           .navigation {
                  


                        

    background-color: #be1e2d;
    margin-top: 0px;

    margin: 0 auto;
    display: block;
                }

                    .navigation ul {
                        max-width: 100%;
                        list-style: none;
                    }

                        .navigation ul li {
                            display: inline-block;
                            padding: 10px 15px;
                            transition: all .1s;
                            color: white;
                        }

                            .navigation ul li a {
                                text-decoration: none;
                                color: white;
                            }

                            .navigation ul li:hover {
                                border-bottom: 3px solid white;
                            }

                .botn {
                    color: white;
                    text-align: center;
                    width: 160px;
                    height: 30px;
                    border-radius: 30px;
                    background: #be1e2d;
                    display: none;
                    transition: all .5s;
                    z-index: 10;
                    margin-top: 5px;
                }

                    .botn i {
                        padding-top: 5px;
                        font-size: 1.3em;
                        color: white;
                    }

                    .botn:hover {
                        color: #be1e2d;
                        background-color: #e8eaed;
                        cursor: pointer;
                    }

                i:hover {
                    color: black;
                    cursor: pointer;
                }

                .botn-menu {
                    height: auto;
                    width: 100%;
                    background: #be1e2d;
                    display: none;
                    transition: all .5s;
                }


                    .botn-menu ul {
                        max-width: 100%;
                        list-style: none;
                    }

                        .botn-menu ul li {
                            padding: 5px 28px;
                            margin-top: 5px;
                            transition: all .5s;
                            border-bottom: 1px solid white;
                        }

                            .botn-menu ul li a {
                                text-decoration: none;
                                color: white;
                            }


                .view {
                    display: block;
                }


                @media only screen and (max-width: 800px) {
                    .botn {
                        display: block;
                    }

                    .navigation {
                        background: none;
                    }

                        .navigation ul {
                            display: none;
                        }
                }

                @media only screen and (min-width: 801px) {
                    .botn-menu {
                        display: none;
                    }
                }