<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">nav {
    background: #DDDDDD;
    height: 130px;
    max-width: 100%;
    width: 100%;
    z-index: 999;
    transition: .4s;
    padding: 29px 0;
    position: relative;

}

.antrc-logo {
    width: 72%;
}

.nav-item {
    padding: 24px 0;

}

label.nav-logo {
    margin-left: 8%;
}

nav ul {
    float: right;
    margin-right: 8%;
}

.nav-title img {
    height: 24px;
}

nav ul li {
    display: inline-block;
    width: 150px;
}

.nav-ul {
    height: 130px;
}

nav ul li a {
    color: white;
    font-size: 16px;
    font-weight: bolder;
    position: relative;
}

.nav-item a {
    color: white
}

.nav-title {
    text-align: center;
    position: relative;
}

.vertical-line {
    border-left: 1px solid black;
    height: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.vertical-line-right {
    width: 0;
}

.vertical-line-right .vertical-line {
    transform: translateY(calc(-50% - 6px));

}

.bottom-line {
    position: relative;
    background: black;
    top: 47px;
    border: 2px solid black;
    transform: scale(0, 1);
    transition: transform ease-in-out 250ms;
}

nav a:hover .bottom-line {
    transform: scale(.8, 1);
}

.hamberger-btn {
    font-size: 35px;
    color: white;
    float: right;
    margin-right: 30px;
    line-height: 80px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

@media (max-width: 768px) {
    section {
        background-position: top right;
    }

    nav {
        position: fixed;
    }

    label.logo {
        font-size: 30px;
        margin-left: 20px;
    }

    nav ul li a {
        color: white;
        font-size: 16px;
    }

    .hamberger-btn {
        display: block;
    }

    .nav-item {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #DDDDDD;
        top: 80px;
        right: 100%;
        text-align: center;
        transition: all 0.5s;
    }

    nav ul li {
        display: block;
        width: 100%;

    }

    #check:checked ~ ul {
        right: -10px;
        z-index: 100;
    }

    .fancy-radius {
        display: none;
    }

    .antrc-logo {
        width: auto;
    }

    .nav-title {
        margin-bottom: 30px;
        text-align: center;
        position: relative;
    }
    nav {
        background: #DDDDDD;
        height: 80px;
        max-width: 100%;
        width: 100%;
        z-index: 999;
        transition: .4s;
        padding: 5px 0;
        position: relative;

    }
}
  
  
</pre></body></html>