
.dropdown select {
    display: none;
}
.dropdown {
    color: #0f0c00;
    font-size: 18px;
    font-family: "Raleway", Arial, sans-serif;
    font-weight: 500;
}
.dropdown > span {
    cursor: pointer;
    padding: 9px 16px;
    border-radius: 6px;
    display: block;
    position: relative;
    color: #0f0c00;
    transition: all 0.3s ease;
}
.dropdown > span:before,
.dropdown > span:after {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 2px;
    margin-top: -2px;
    border-radius: 1px;
    top: 50%;
    right: 15px;
    background: white;
    transition: all 0.3s ease;
}
.dropdown > span:before {
    margin-right: 4px;
    transform: scale(0.96, 0.8) rotate(50deg);
}
.dropdown > span:after {
    transform: scale(0.96, 0.8) rotate(-50deg);
}
.dropdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    max-height: calc(8 * 42px);
    top: 42px;
    left: 0;
    z-index: 1;
    right: 0;
    background: none;
    overflow-x: hidden;
    overflow-y: auto;
    transform-origin: 0 0;
    transition: opacity 0.2s ease, visibility 0.2s ease,
        transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    transform: scale(0.8) translate(0, 4px);
    border: 1px solid none;
}
.dropdown ul li {
    opacity: 0;
    transform: translate(6px, 0);
    transition: all 0.3s ease;
}
.dropdown ul li a {
    cursor: pointer;
    display: block;
    padding: 10px 16px;
    color: white;
    text-decoration: none;
    outline: none;
    position: relative;
    transition: all 0.3s ease;
}
.dropdown ul li a:hover {
    color: #e8e8f1;
}
.dropdown ul li.active a {
    color: white;
    background: none;
    font-weight: bold;
}

.dropdown ul li:first-child a {
    border-radius: 6px 6px 0 0;
}
.dropdown ul li:last-child a {
    border-radius: 0 0 6px 6px;
}
.dropdown.filled > span {
    color: white;
    text-transform: uppercase;
}
.dropdown.open > span {
    border-color: #23c4f8;
}
.dropdown.open > span:before,
.dropdown.open > span:after {
    background: white;
}
.dropdown.open > span:before {
    transform: scale(0.96, 0.8) rotate(-50deg);
}
.dropdown.open > span:after {
    transform: scale(0.96, 0.8) rotate(50deg);
}
.dropdown.open ul {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translate(0, 12px);
    transition: opacity 0.3s ease, visibility 0.3s ease,
        transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
}
.dropdown.open ul li {
    opacity: 1;
    transform: translate(0, 0);
}
.dropdown.open ul li:nth-child(1) {
    transition-delay: 80ms;
}
.dropdown.open ul li:nth-child(2) {
    transition-delay: 160ms;
}
.dropdown.open ul li:nth-child(3) {
    transition-delay: 240ms;
}
.dropdown.open ul li:nth-child(4) {
    transition-delay: 320ms;
}
.dropdown.open ul li:nth-child(5) {
    transition-delay: 400ms;
}
.dropdown.open ul li:nth-child(6) {
    transition-delay: 480ms;
}
.dropdown.open ul li:nth-child(7) {
    transition-delay: 560ms;
}
.dropdown.open ul li:nth-child(8) {
    transition-delay: 640ms;
}
.dropdown.open ul li:nth-child(9) {
    transition-delay: 720ms;
}
.dropdown.open ul li:nth-child(10) {
    transition-delay: 800ms;
}

select.dropdown {
    padding: 9px 16px;
    border-radius: 6px;
    color: #3f4656;
    border: 1px solid #2f3545;
    background: #151924;
    line-height: 22px;
    font-size: 16px;
    font-family: inherit;
    -webkit-appearance: none;
}

.switch {
    height: 20px;
    display: block;
    position: relative;
    cursor: pointer;
}
.switch input {
    display: none;
}
.switch input + span {
    padding-left: 38px;
    min-height: 20px;
    line-height: 20px;
    display: block;
    color: #3f4656;
    position: relative;
    white-space: nowrap;
}
.switch input + span:not(:empty) {
    padding-left: 46px;
}
.switch input + span:before,
.switch input + span:after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 10px;
}
.switch input + span:before {
    top: 0;
    left: 0;
    width: 38px;
    height: 20px;
    border: 1px solid #2f3545;
    transition: all 0.3s ease;
}
.switch input + span:after {
    width: 14px;
    height: 14px;
    background: #2f3545;
    top: 3px;
    left: 3px;
    transition: all 0.45s ease;
}
.switch input + span + svg {
    display: none;
}
.switch input:checked + span:before {
    background: #5628ee;
    border-color: #5628ee;
}
.switch input:checked + span:after {
    background: #fff;
    transform: translate(18px, 0);
}
.switch:hover input:not(:checked) + span:before {
    border-color: #23c4f8;
}
body .dropdown {
    margin-top: 0;
    margin-left: 15px;
    width: 150px;
    background: none;
}
body .dribbble {
    position: fixed;
    display: block;
    right: 20px;
    bottom: 20px;
}
body .dribbble img {
    display: block;
    height: 28px;
}
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.dropdown.open ul {
    background: none;
}

.menu-icon:checked+label,
.menu-icon:not(:checked)+label {
    position: fixed;
    top: 55px;
    right: 65px;
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    z-index: 10;
}

.menu-icon:checked+label:before,
.menu-icon:not(:checked)+label:before {
    position: absolute;
    content: '';
    display: block;
    width: 30px;
    height: 20px;
    z-index: 20;
    top: 0;
    left: 0;
    border-top: 2px solid #ececee;
    border-bottom: 2px solid #ececee;
    transition: border-width 100ms 1500ms ease,
        top 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1),
        height 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1),
        background-color 200ms ease,
        transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-icon:checked+label:after,
.menu-icon:not(:checked)+label:after {
    position: absolute;
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    z-index: 20;
    top: 10px;
    right: 4px;
    background-color: #ececee;
    margin-top: -1px;
    transition: width 100ms 1750ms ease,
        right 100ms 1750ms ease,
        margin-top 100ms ease,
        transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-icon:checked+label:before {
    top: 10px;
    transform: rotate(45deg);
    height: 2px;
    background-color: #ececee;
    border-width: 0;
    transition: border-width 100ms 340ms ease,
        top 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
        height 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
        background-color 200ms 500ms ease,
        transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-icon:checked+label:after {
    width: 30px;
    margin-top: 0;
    right: 0;
    transform: rotate(-45deg);
    transition: width 100ms ease,
        right 100ms ease,
        margin-top 100ms 500ms ease,
        transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}


.nav {
    position: fixed;
    top: 33px;
    right: 50px;
    display: block;
    width: 60px;
    height: 60px;
    padding: 0;
    margin: 0;
    z-index: 9;
    overflow: hidden;
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.3);
    background-color: #636BA9;
    animation: border-transform 7s linear infinite;
    transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
        right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 250ms 1100ms ease,
        width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1),
        height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav .menu-logo {
    width: 219px;
    height: 62px;
    background: transparent url(/i/image/white_deeplogo.png) no-repeat center center;
    position: absolute;
    bottom: 25px;
    left: 50%;
}

@keyframes border-transform {

    0%,
    100% {
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    }

    14% {
        border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
    }

    28% {
        border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
    }

    42% {
        border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
    }

    56% {
        border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
    }

    70% {
        border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
    }

    84% {
        border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
    }
}

.menu-icon:checked~.nav {
    animation-play-state: paused;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 200%;
    height: 200%;
    transition: top 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),
        right 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 250ms 700ms ease,
        width 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1),
        height 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav ul {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: 6;
    text-align: center;
    transform: translateY(-50%);
    list-style: none;
}

.nav ul li {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 10px 0;
    text-align: center;
    list-style: none;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 250ms linear;
}

.nav ul li:nth-child(1) {
    transition-delay: 350ms;
}

.nav ul li:nth-child(2) {
    transition-delay: 300ms;
}

.nav ul li:nth-child(3) {
    transition-delay: 250ms;
}

.nav ul li:nth-child(4) {
    transition-delay: 200ms;
}
.nav ul li:nth-child(5) {
    transition-delay: 150ms;
}
.nav ul li:nth-child(6) {
    transition-delay: 100ms;
}
.nav ul li:nth-child(7) {
    transition-delay: 50ms;
}

.nav ul li a {
    font-family: "Raleway", Arial, sans-serif;
    font-size: 43px;
    line-height: 1.2;
    font-weight: 800;
    display: inline-block;
    position: relative;
    color: #364A59;
    transition: all 250ms linear;
    font-weight: 400;
}

.nav ul li a:hover {
    text-decoration: none;
    color: #9BBD45;
}

.nav ul li a:after {
    display: block;
    position: absolute;
    top: 50%;
    content: '';
    height: 2vh;
    margin-top: -1vh;
    width: 0;
    left: 0;
    background-color: #FDFEFF;
    opacity: 0.8;
    transition: width 250ms linear;
}

.nav ul li a:hover:after {
    width: 100%;
}


.menu-icon:checked~.nav ul li {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 350ms ease,
        transform 250ms ease;
}

.menu-icon:checked~.nav ul li:nth-child(1) {
    transition-delay: 1400ms;
}

.menu-icon:checked~.nav ul li:nth-child(2) {
    transition-delay: 1480ms;
}

.menu-icon:checked~.nav ul li:nth-child(3) {
    transition-delay: 1560ms;
}

.menu-icon:checked~.nav ul li:nth-child(4) {
    transition-delay: 1640ms;
}
.menu-icon:checked~.nav ul li:nth-child(5) {
    transition-delay: 1720ms;
}
.menu-icon:checked~.nav ul li:nth-child(6) {
    transition-delay: 1800ms;
}
.menu-icon:checked~.nav ul li:nth-child(7) {
    transition-delay: 1880ms;
}
.menu-icon:checked~.nav ul li:nth-child(8) {
    transition-delay: 1960ms;
}



.logo {
    position: absolute;
    top: 60px;
    left: 50px;
    display: block;
    z-index: 11;
    transition: all 250ms linear;
}

.logo img {
    height: 26px;
    width: auto;
    display: block;
}

@media screen and (max-width: 991px) {

    .menu-icon:checked+label,
    .menu-icon:not(:checked)+label {
        right: 25px;
    }

    .nav {
        right: 10px;
    }

    .nav ul li a {
        font-size: 22px;
    }

    .menu-icon:checked+label,
    .menu-icon:not(:checked)+label {
        top: 48px;
    }

    .nav {
        top: 28px;
    }
}

@media (max-width: 576px){
    body .dropdown {
        font-size: 14px;
        width: 133px;
    }
    
    .nav {
        width: 40px;
        height: 40px;
        top: 31px;
    }
    
    .menu-icon:checked+label, .menu-icon:not(:checked)+label {
        width: 20px;
        height: 20px;
        right: 20px;
        top: 44px;
    }
    .menu-icon:checked+label:before, .menu-icon:not(:checked)+label:before {
        width: 20px;
        height: 16px;
    }
    .menu-icon:checked+label:before {
        left: 2px;
        top: 8px;
        height: 2px;
        width: 16px;
    }
    .menu-icon:checked+label:after, .menu-icon:not(:checked)+label:after {
        width: 16px;
        right: 2px;
        top: 8px;
    }
    .mobile-logo {
        display: none;
    }
    body .dropdown {
        margin-left: 0;
    }
}