a{
    text-decoration: none;
}
header {
    background: #010101;
    position: fixed;
    top: 0;
    z-index: 9;
    left: 0;
    right: 0;
}
header nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header ul {
    display: flex;
    padding: 20px 0;
    margin: 0;
}
header ul li {
    list-style: none;
    margin: 0px 5px;
    padding: 10px 15px;
}
ul li a{
    list-style: none;
    padding: 10px;
    color: #fff;
    font-weight: 600;
}
ul li a:hover{
    color: #aa37cb;
}
.responsive-btn {
    position: relative;
    height: 35px;
    width: 35px;
}
.responsive-btn div {
    width: 33px;
    background: #fff;
    margin-bottom: 7px;
    border: 2px solid #fff;
    border-radius: 2px;
}
/* .responsive-btn .rs-top,
.responsive-btn .rs-middle,
.responsive-btn .rs-bottom{
    transition: 0.5s ease-out;
} */

/* .responsive-btn input[type="checkbox"]{
    width: 100%;
    position: absolute;
    height: 100%;
    opacity: 0;
}
.responsive-btn input[type="checkbox"]:checked ~ .rs-top {
    rotate: 45deg;
    position: relative;
    left: 0px;
    top: 11px;
}
.responsive-btn input[type="checkbox"]:checked ~ .rs-middle{
    display: none;
}
.responsive-btn input[type="checkbox"]:checked ~ .rs-bottom {
    rotate: -45deg;
    position: relative;
    top: -2px;
} */



/* header responsive css start====== */
@media (min-width: 1024px){
    .responsive-btn{
        display: none;
    }
}
@media (max-width: 1200px) {
    .cdn-log{
        width: 280px;
    }
    ul li {
        padding: 10px;
    }
}
@media (max-width: 1023px){
    header ul{
        display: block;
    }
    header .cdn-menu{
        position: absolute;
        left: -1024px;
        transition: 0.5s ease;
        top: 70px;
    }
    header .cdn-menu ul{
        display: block;
    }
    header .cdn-menu ul li:hover {
        color: #00afef;
    }
    .responsive-btn{
        display: block;
    }
    .responsive-btn.respond .rs-middle {
        visibility: hidden;
        opacity: 0;
    }
    .responsive-btn.respond .rs-top {
        rotate: 45deg;
        position: absolute;
        top: 14px;
        left: -1px;
    }
    .responsive-btn.respond .rs-bottom {
        position: absolute;
        top: 14px;
        rotate: -45deg;
        left: -1px;
    }
    .cdn-menu.res-menu {
        display: block;
        position: absolute;
        top: 70px;
        background: #000000bf;
        width: 100%;
        left: 0;
    }
    .cdn-menu.res-menu ul {
        flex-direction: column;
    }
    
}

