.desctop-menu {
    width: 100%;
    height: 100%;
}

.desctop-menu-nav {
    display: flex;
    width: 100%;
    height: 100%;
    align-content: center;
    justify-content: center;
}

.desctop-menu-nav .desctop-menu-ul {
    display: flex;
    height: 100%;
    align-content: center;
    justify-content: center;
}

.desctop-menu a {
    text-decoration: none;
}

.desctop-menu nav {
    font-family: monospace;
}

.desctop-menu ul {
    background: #203447;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.desctop-menu li {
    color: #fff;
    display: block;
    float: left;
    padding: 1rem;
    position: relative;
    text-decoration: none;
    transition-duration: 0.9s;
    width: -webkit-fill-available;
}

.desctop-menu-ul li {
    width: -webkit-fill-available;
}

.desctop-menu li a {
    color: #fff;
}

.desctop-menu li:hover {
    background: red;
    cursor: pointer;
}

.desctop-menu ul li ul {
    /* background: orange; */
    visibility: hidden;
    opacity: 0;
    min-width: 5rem;
    position: absolute;
    transition: all 0.5s ease;
    left: 0;
    display: none;
}

.desctop-menu-li a {
font-size: 18px;
font-family: Arial, Helvetica, sans-serif;
}

.desctop-menu ul li:hover > ul,
.desctop-menu ul li ul:hover {
    visibility: visible;
    opacity: 1;
    display: block;
}

.desctop-menu ul li ul li {
    clear: both;
    width: 100%;
}

.burger-menu {
    display: none;
    position: fixed;
    padding-left: 20px;
    margin-top: 20px;
}

.menu-btn {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 1;
}

.menu-btn > span,
.menu-btn > span::before,
.menu-btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #616161;
    transition-duration: 0.25s;
}
.menu-btn > span::before {
    content: "";
    top: -8px;
}
.menu-btn > span::after {
    content: "";
    top: 8px;
}

.menubox {
    display: block;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    margin: 0;
    padding: 80px 0;
    list-style: none;
    background-color: #eceff1;
    box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.2);
    transition-duration: 0.25s;
}

.menu-item {
    display: block;
    padding: 12px 24px;
    color: #333;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition-duration: 0.25s;
}
.menu-item:hover {
    background-color: #cfd8dc;
}

#menu-toggle {
    opacity: 0;
}

#menu-toggle:checked ~ .menu-btn > span {
    transform: rotate(45deg);
}
#menu-toggle:checked ~ .menu-btn > span::before {
    top: 0;
    transform: rotate(0);
}
#menu-toggle:checked ~ .menu-btn > span::after {
    top: 0;
    transform: rotate(90deg);
}
#menu-toggle:checked ~ .menubox {
    visibility: visible;
    left: 0;
}

.menu-item-about {
    font-size: 16px;
}

@media only screen and (max-width: 767px) {
    .desctop-menu {
        display: none;
    }

    .burger-menu {
        display: flex;
    }
}

.flex-col-1 {
    display: flex;
    flex-direction: column;
}