@charset "UTF-8";

/* 
 */

.navigation-circle {
    display: block;
    position: relative;
    height: 32rem;
    width: 32rem;
    margin: auto;
}

.navigation-circle__inner {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
}

.navigation-circle__list {
    display: block;
    position: absolute;
    height: 320px;
    width: 320px;
    transform: rotate(-90deg);
    animation: 2.2s cubic-bezier(0.25, -0.25, 0.35, 1) 0 1 animate-in-list forwards;
}

.navigation-circle-list-item__meta h6 {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
}

.navigation-circle-svg {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: rotateZ(-178deg);
}

.navigation-circle-svg--opaque {
    opacity: 0.5;
}

.navigation-circle-svg--mask circle {
    transition: all 0.5s ease;
    transition-delay: 0.5s;
    animation: 2.2s ease 0 1 animate-in-svg-circle-mask backwards;
}

.navigation-circle-list-item {
    display: block;
    position: absolute;
    height: 0;
    width: calc(50% + 16px);
    top: 50%;
    left: 50%;
    list-style: none;
    transform-origin: 0 0;
}

.navigation-circle-list-item__point {
    display: block;
    position: absolute;
    height: 32px;
    width: 32px;
    top: -16px;
    right: 2px;
    cursor: pointer;
    transform: scale(0);
}

.navigation-circle-list-item__point:before {
    content: "";
    display: block;
    position: absolute;
    height: 32px;
    width: 32px;
    top: 0;
    color: #36b9d5;
    background-color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
    border: 2px solid#36b9d5;
    border-radius: 50%;
    box-shadow: inset 0px 0px 0px 0px#36b9d5;
    /* transform: scale(0.75); */
    transition: all 0.5s ease;
}


/* .navigation-circle-list-item__point:after {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    width: 0px;
    top: 18px;
    left: 31px;
    background-color: #36b9d5;
    transition: all 0.5s ease;
} */

.navigation-circle-list-item__meta {
    display: block;
    position: absolute;
    overflow: hidden;
    opacity: 0;
    transform-origin: center;
    margin-left: 78px;
    min-width: 136px;
    padding: 4px;
    left: 111px;
}

.navigation-circle-list-item__title {
    display: block;
    color: #f7f7f7;
    text-align: left;
    font-size: 10px;
    border-bottom: 1px solid #f7f7f7;
    padding-bottom: 4px;
    margin-bottom: 6px;
}

.navigation-circle-list-item__subtitle {
    display: block;
    color: #f7f7f7;
    text-align: center;
    font-weight: 200;
    font-size: 8px;
}

.navigation-circle-list-item:nth-of-type(1) {
    transform: rotateZ(-85deg);
}

.navigation-circle-list-item:nth-of-type(1) .navigation-circle-list-item__meta {
    transform: rotateZ(175deg);
}

.navigation-circle-list-item:nth-of-type(1) .navigation-circle-list-item__point {
    animation: 1s cubic-bezier(0.55, -0.3, 0.6, 1.5) 0s 1 animate-in-list-item-point forwards;
}

.navigation-circle-list-item:nth-of-type(2) {
    transform: rotateZ(-35deg);
}

.navigation-circle-list-item:nth-of-type(2) .navigation-circle-list-item__meta {
    transform: rotateZ(-235deg);
    min-width: 133px;
    left: 29px;
    top: -128px;
}

.navigation-circle-list-item:nth-of-type(2) .navigation-circle-list-item__point {
    animation: 1s cubic-bezier(0.55, -0.3, 0.6, 1.5) 0.2s 1 animate-in-list-item-point forwards;
}

.navigation-circle-list-item:nth-of-type(3) {
    transform: rotateZ(35deg);
}

.navigation-circle-list-item:nth-of-type(3) .navigation-circle-list-item__meta {
    transform: rotateZ(55deg);
    left: 140%;
    bottom: -425%;
}

.navigation-circle-list-item:nth-of-type(3) .navigation-circle-list-item__point {
    animation: 1s cubic-bezier(0.55, -0.3, 0.6, 1.5) 0.4s 1 animate-in-list-item-point forwards;
}

.navigation-circle-list-item:nth-of-type(4) {
    transform: rotateZ(85deg);
}

.navigation-circle-list-item:nth-of-type(4) .navigation-circle-list-item__meta {
    transform: rotateZ(5deg);
    min-width: 255px;
}

.navigation-circle-list-item:nth-of-type(4) .navigation-circle-list-item__point {
    animation: 1s cubic-bezier(0.55, -0.3, 0.6, 1.5) 0.6s 1 animate-in-list-item-point forwards;
}

.navigation-circle-list-item:hover .navigation-circle-list-item__point:after {
    width: 32px;
    left: 34px;
}

.navigation-circle-list-item:hover .navigation-circle-list-item__meta {
    opacity: 1;
}

.navigation-circle-list-item:active .navigation-circle-list-item__point:before,
.navigation-circle-list-item.active .navigation-circle-list-item__point:before {
    transform: scale(0.85);
    color: #000;
    box-shadow: inset 0px 0px 0px 16px#36b9d5;
    border-color: transparent;
}

.navigation-circle-list-item:active .navigation-circle-list-item__point:after,
.navigation-circle-list-item.active .navigation-circle-list-item__point:after {
    width: 34px;
    left: 32px;
}

.navigation-circle-list-item:active .navigation-circle-list-item__meta,
.navigation-circle-list-item.active .navigation-circle-list-item__meta {
    opacity: 1;
}

@keyframes animate-in-list {
    0% {
        transform: rotate(-540deg);
    }
    100% {
        transform: rotate(-90deg);
    }
}

@keyframes animate-in-svg-circle-mask {
    0% {
        stroke-dashoffset: 1005;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes animate-in-list-item-point {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}