html body .botnav .internal .navbar {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.logo{
	position:fixed;
    left:0px;
    top:0px;
    height:220px;
    z-index:1;
    border-radius:10px!important;
    z-index:3;
    padding:10px;
}

html body .logo img {
    width: auto !important;
    max-height: 128px !important;
}

html body {
    padding-top: 90px !important;
}

.topnav{
	position:fixed;
    top:0px;
    left: 0px;
    width:100%;
    height:90px;
    z-index:2;
}

.topnav .navbar {
    position: relative !important;
}

body .logo {
    height: auto !important;
    min-height: 90px !important;
}

.dummy-div {
    padding: 20px !important;
}

body .logo {
    z-index: 200;
}

body .logo img {
    max-width: 505px !important;
    margin: 0px !important
}

@media (max-width: 1900px) {

    body .navbar li {
        width: 170px !important;
    }

    body .logo {
        max-width: 505px !important;
    }

    body .logo img {
        max-width: 505px !important;
    }

}

@media (max-width: 1800px) {

    body .navbar li {
        width: 160px !important;
    }

    body .logo {
        max-width: 475px !important;
    }

    body .logo img {
        max-width: 475px !important;
    }

}

@media (max-width: 1700px) {

    body .navbar li {
        width: 150px !important;
    }

    body .logo {
        max-width: 450px !important;
    }

    body .logo img {
        max-width: 450px !important;
    }

}

@media (max-width: 1600px) {

    body .navbar li {
        width: 140px !important;
    }

    body .logo {
        max-width: 425px !important;
    }

    body .logo img {
        max-width: 425px !important;
    }

}

@media (max-width: 1500px) {

    body .navbar li {
        width: 130px !important;
    }

    body .logo {
        max-width: 400px !important;
    }

    body .logo img {
        max-width: 400px !important;
    }

}

@media (max-width: 1400px) {

    body .navbar li {
        width: 120px !important;
    }

    body .logo {
        max-width: 375px !important;
    }

    body .logo img {
        max-width: 375px !important;
    }

}

@media (max-width: 1300px) {

    body .navbar li {
        width: 110px !important;
    }

    body .logo {
        max-width: 350px !important;
    }

    body .logo img {
        max-width: 350px !important;
    }

}

@media (max-width: 1200px) {

    body .navbar li {
        width: 100px !important;
    }

    body .logo {
        max-width: 325px !important;
    }

    body .logo img {
        max-width: 325px !important;
    }
}

.topnav ul ul a {
    background-color: transparent !important;
    border: 0 !important;
}

.topnav ul ul li {
    width: 100% !important;
}

.topnav li a {
    display: block;
    position: relative;
    z-index: 10;
    padding: 13px 20px 13px 20px;
    text-decoration: none;
    color: rgba(75,75,75,1);
    line-height: 1;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: -.05em;
    background: transparent;		
    transition: all .25s ease-in-out;
}

.navbar > li:hover > a {
    text-shadow: none;
}

.topnav li ul  {
    position: absolute;
    left: 0;
    z-index: 1;
    width: 200px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    background: transparent;
    overflow: hidden;
    transform-origin: 50% 0%;
}


.topnav li:hover ul {
    padding: 15px 0;
    opacity: 1;
    visibility: visible;
    box-shadow: 1px 1px 7px rgba(0,0,0,.5);
    animation-name: swingdown;
    animation-duration: 1s;
    animation-timing-function: ease;
}

@keyframes swingdown {

    0% {
        opacity: .99999;
        transform: rotateX(90deg);
    }

    30% {			
        transform: rotateX(-20deg) rotateY(5deg);
        animation-timing-function: ease-in-out;
    }

    65% {
        transform: rotateX(20deg) rotateY(-3deg);
        animation-timing-function: ease-in-out;
    }

    100% {
        transform: rotateX(0);
        animation-timing-function: ease-in-out;
    }

}


.topnav li li a {
    padding-left: 15px;
    font-weight: 400;
    color: #ddd;
    text-shadow: none;
    border-top: dotted 1px transparent;
    border-bottom: dotted 1px transparent;
    transition: all .15s linear;
}

.topnav li li a:hover {
    color: rgba(0,223,252,1);
    border-top: dotted 1px rgba(255,255,255,.15);
    border-bottom: dotted 1px rgba(255,255,255,.15);
    background: rgba(0,223,252,.02);
}