@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
    margin: 0;
    padding: 0;
    color: #ffc90e;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    text-align: center;
    text-shadow: 0 5px 15px rgb(255, 255, 255);
}

body{
    background: silver;
}
.img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #000bcc;
}

a:hover {
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0 5px 15px rgb(0, 11, 204);
}

p {
    margin: 0;
    padding: 0;
    color: #000bcc;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 5px 15px rgb(255, 255, 255);
}

h2 {
    margin: 0;
    padding: 0;
    color: #000bcc;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: bold;
    text-shadow: 0 5px 15px rgb(255, 255, 255);
}

h3 {
    margin: 10px;
    color: #000bcc;
}

h6 {
    margin: 0;
    padding: 0;
    color: #000bcc;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: bold;
    text-shadow: 0 5px 15px rgb(255, 255, 255);
}

.toggle {
    display: block;
    position: absolute;
    right: 10px;
    top: 120px;
    background: #000;
    color: red;
    padding: 5px;
    font-weight: bold;
}

.nav_bar{
    background: #000000;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 0px 13px 24px -2px #000000;
    border-radius: 0 0 25px 25px;
    position: fixed;
    display: block;
    z-index: 9999;
}

.nav_bar:after{
    content: '';
    clear: both;
    display: table;
}

.nav_bar .logo{
    float: left;
    border: 0px;
    color: #ffc90e;
    font-size: 30px;
    line-height: 70px;
    padding-left: 10px;
}

.nav_bar ul{
    float: right;
    list-style: none ;
    margin-right: 40px;
    position: relative;
}

.nav_bar ul li{
    float: left;
    display: inline-block;
    background: black;
    margin: 0 10px;
}

.nav_bar ul li a{
    color: #ffc90e;
    text-decoration: none;
    line-height: 50px;
    font-size: 25px;
    padding: 8px 15px;
}

.nav_bar ul li a:hover{
    color: #cc0105;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px blue,
                0 0 10px #cc0105;
}

.nav_bar ul ul li a:hover{
    color: #cc0105;
    box-shadow: none;
}

.nav_bar ul ul{
    position: absolute;
    top: 90px;
    border-top: 3px solid #000bcc;
    opacity: 0;
    visibility: hidden;
    transition: top .3s;
}
.nav_bar ul li:hover > ul{
    top: 70px;
    opacity: 1;
    visibility: visible;
}

.nav_bar ul ul li{
    position: relative;
    margin: 0px;
    width: 150px;
    float: none;
    display: list-item;
}

.nav_bar ul ul ul li{
    position: relative;
    top: -70px;
    left: 150px;
}

.show,.icon,input{
    display: none;
}
@media all and  (max-width: 1180px){
    .nav_bar ul{
        margin-right: 0px;
        float: left;
    }
    .nav_bar .logo{
        padding-left: 30px;
        width: 100%;
    }
    .nav_bar ul li{
        display: block;
        width: 100%;
    }
    .nav_bar ul ul{
        top: 70px;
        position: static;
        border-top: none;
        float: none;
        display: none;
        opacity: 1;
        visibility: visible;
    }
    .nav_bar ul li{
        padding-left: 0px;
    }
    .show{
        display: block;
        color: red;
        font-size: 20px;
        line-height: 30px;
        cursor: pointer;
    }
    .show:hover{
        color: red;
    }
    .icon{
        display: block;
        color: #ff0514;
        position: relative;
        align-items: left;
        float: left;
        padding-top: 10px;
        padding-left: 25px;
        padding-bottom: 5px;
        line-height: 30px;
        font-size: 15px;
        cursor: pointer;
    }
    .nav_bar ul a:hover{
        box-shadow: none;
    }
    .show + a, ul{
        display: none;
    }
    [id^=btn]:checked + ul{
        display: block;
    }
}