@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    background: #2c3e50;
    overflow: hidden;
}

.side-bar {
    background: rgba(44, 62, 80, 0.5);
    backdrop-filter: blur(10px);
    width: 290px;
    position: fixed;
    top: 0;
    right: -100%;
    overflow-y: auto;
    transition: all 0.6s ease-in-out;
    transition-property: right;
    z-index:999;
}

.side-bar.active {
    right: 0;
}

.side-bar .menu {
    width: 100%;
    margin-top: 80px;
}

.side-bar .menu .item {
    position: relative;
    cursor: pointer;
}

.side-bar .menu .item a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    display: block;
    padding: 5px 30px;
    line-height: 30px;
}

.side-bar .menu .item a:hover {
    background-color: #0693e3;
    transition: 0.3s ease;
}

.side-bar .menu .item a .dropdown {
    position: absolute;
    right: 0;
    margin: 9px;
    transition: 0.3s ease;
}

.side-bar .menu .item .sub-menu {
    background: rgba(255, 255, 255, 0.1);
    display: none;
}

.side-bar .menu .item .sub-menu a {
    padding-left: 60px;
}

.rotate {
    transform: rotate(90deg);
}

.close-btn {
    position: absolute;
    color: #fff;
    font-size: 20px;
    left: 0;
    margin: 25px;
    cursor: pointer;
}

.close-btn i {
    padding-right: 10px;
}

.menu-btn {
    width: 40px;
    height: 40px;
    position: absolute;
    color: #fff;
    background: #0693e3;
    font-size: 20px;
    margin-top: 85px;
    margin-right: 25px;
    margin-bottom: 25px;
    margin-left: 25px;
    border-radius: 5%;
    cursor: pointer;
    right: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.menu-btn i {
    margin: auto 0;
}

.main {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.main .decopy {
    text-align: center;
    padding: 0;
    margin: 10px auto;
    color: #fff;
    font-size: 0.8rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.main .decopy p a {
    color: #fff;
    text-decoration: wavy;
    font-weight: bold;
}

.main iframe {
    width: 100%;
    margin: 0;
    padding: 0;
}

@media only screen and (max-width: 600px) {
    .main .decopy {
        transform: scale(0.5);
    }
}