* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}


body {
    background: #fff;

}

nav {
    background: #e6e6e6;
    top: 0%;
}

nav:after {
    content: '';
    clear: both;
    display: table;
}

nav .logo {
    float: left;
    color: #000;
    font-size: 25px;
    font-weight: 700;
    line-height: 24px;
    padding-left: 40px;

}

.logo a {
    color: #052f5f;
    text-decoration: none;

}
.logo a img{
    width: 290px;
    height: 90px;

}
nav ul {
    float: right;
    list-style: none;
    margin-right: 0px;
    position: relative;
}

nav ul li {
    float: left;
    display: inline-block;
    background: #e6e6e6;
    margin: 0px 1px;

}

nav ul li a {
    color: #052f5f;
    text-decoration: none;
    line-height: 100px;
    font-size: 16px;
    font-weight: 600;

    padding: 5px 10px;
}

nav ul li a:hover {

    color: #052f5f;
    border-radius: 5px;
    box-shadow: 0 0 5px #052f5f,
        0 0 5px #052f5f;
}

nav ul ul li a:hover {
    color: #fff;

    box-shadow: none;
}


nav ul ul {
    width: 250px;
    position: absolute;
    top: 90px;
    border-top: 3px solid rgb(36, 116, 220);
    opacity: 0;
    visibility: hidden;
    transition: top .3s;

}

nav ul ul ul {
    border-top: none;
}



nav ul li:hover ul {
    top: 100px;
    opacity: 1;
    visibility: visible;
}


nav ul ul li {
    width: 380px;
    position: relative;
    margin: 0px;

    float: none;
    display: list-item;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

nav ul ul li a {
    line-height: 50px;
}



nav ul ul ul li {
    position: relative;
    top: -70px;
    left: 150px;
}

.fa-angle-right {
    margin-left: 50px;
    font-size: 20px;
    color: #052f5f;
}

.fa fa-angle-right:hover {
    color: cyan;
    margin-left: 45px;
}

.show,
.icon,
.click {
    display: none;
}





@media all and (max-width: 1095px) {




    body {
        height: 100%;
        width: 100%;
    }

    nav ul {
        margin-right: 0px;
        float: left;
    }

    nav .logo {
        padding-left: 30px;
        width: 100%;
    }

    nav ul li,
    nav ul ul li {
        display: block;
        width: 100%;

    }

    nav ul ul {
        top: 70px;
        position: static;
        border-top: none;
        float: none;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    nav ul ul ul li {
        position: static;
    }

    nav ul ul li {
        border-bottom: 0px;
    }

    nav ul li a {
        color: #052f5f;
        text-decoration: none;
        line-height: 50px;
        font-size: 16px;
        font-weight: 600;
        margin-left: 20px;
    }


    nav ul ul a {
        padding-left: 70px;

    }

    nav ul ul ul a {
        padding-left: 100px;
    }

    .show {
        display: block;
        color: #052f5f;
        font-size: 18px;
        padding: 0 20px;
        line-height: 100px;
        cursor: pointer;
    }

    .show:hover {
        color: #000;
    }

    .icon {
        display: block;
        color: #052f5f;
        position: absolute;
        right: 40px;
        line-height: 100px;
        font-size: 25px;
        cursor: pointer;
    }



    nav ul li a:hover {
        box-shadow: none;
    }

    .show+a,
    ul {
        display: none;
    }

    [id^=btn]:checked+ul {
        display: block;
    }
}