html,body{
    margin: 0;
    padding: 0;
    outline: none;
}
body{
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700;900&display=swap');
a{
    text-decoration: none;
    color: #fff;
}
a:visited{
    color: #fff;
}
a:hover{
    color: #33ccff;
}
a:focus{
    border: none;
    outline: none;
}
.aktifitem{
    border: 2px solid red;
}
.menu-item:focus-within {
    border: 1px solid red;
  }
.renklibuton{
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 10px;
}
.red {
    background: red;
}
.green{
    background: green;
}
.yellow{
    background: yellow;
}
.blue{
    background: blue;
}

.btnlink{
    color: #333;
}
.container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:#141414;
}
.container .top-menu{
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 60px;
    /* border: 1px dashed #fff; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    z-index: 2;
}
.container .top-menu .logo{
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container .top-menu .logo img{
    width: 100%;
    height: 50px;
}
.container .top-menu .menu{
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding-right: 50px;
}
.container .top-menu .menu .menu-item{
    border: 1px solid #fff;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    background: #fff;
    color: #333;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .8s;
    -webkit-box-shadow: 0px 0px 15px -1px rgba(255,255,255,0.72);
    -moz-box-shadow: 0px 0px 15px -1px rgba(255,255,255,0.72);
    box-shadow: 0px 0px 15px -1px rgba(255,255,255,0.72);
}
.container .top-menu .menu .menu-item:hover{
    -webkit-box-shadow: 0px 0px 25px -1px rgba(255,255,255,0.72);
    -moz-box-shadow: 0px 0px 25px -1px rgba(255,255,255,0.72);
    box-shadow: 0px 0px 25px -1px rgba(255,255,255,0.72);
}

.container .bottom-menu{
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.container .bottom-menu .b-menu-item{
    /* border-right: 2px solid #738E9F; */
    border-bottom: 2px solid transparent;
    margin-right: 30px;
    text-align: center;
    /* width: 200px; */
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: .8s;
    letter-spacing: 2px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.container .bottom-menu .b-menu-item:hover{
    color: #33ccff;
    /* text-decoration: underline; */
}

.container .slide{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.container .slide .slide-item{
    width: 100%;
    height: 100%;
}
.container .slide .slide-item img{
    width: 100%;
    height: 100%;
}