
@-webkit-keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform:  scale3d(.3, .3, .3);
        transform:   scale3d(.3, .3, .3)
    }
    20% {
        -webkit-transform:   scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform:  scale3d(.9, .9, .9);
        transform:  scale3d(.9, .9, .9)
    }
    60% {
        opacity: 1;
        -webkit-transform:  scale3d(1.03, 1.03, 1.03);
        transform:  scale3d(1.03, 1.03, 1.03)
    }
    80% {
        -webkit-transform:  scale3d(.97, .97, .97);
        transform:  scale3d(.97, .97, .97)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform:  scale3d(1, 1, 1)
    }
}

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform:  scale3d(.3, .3, .3);
        transform:  scale3d(.3, .3, .3)
    }
    20% {
        -webkit-transform:  scale3d(1.1, 1.1, 1.1);
        transform:  scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform:  scale3d(.9, .9, .9);
        transform:  scale3d(.9, .9, .9)
    }
    60% {
        opacity: 1;
        -webkit-transform:  scale3d(1.03, 1.03, 1.03);
        transform:  scale3d(1.03, 1.03, 1.03)
    }
    80% {
        -webkit-transform:  scale3d(.97, .97, .97);
        transform:  scale3d(.97, .97, .97)
    }
    100% {
        opacity: 1;
        -webkit-transform:  scale3d(1, 1, 1);
        transform:  scale3d(1, 1, 1)
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
    -webkit-animation-duration: .75s;
    animation-duration: .75s ;
    opacity: 0;
    animation-fill-mode: forwards;
}

.holderCircle {
    width: 600px;
    height: 600px;
    border-radius: 100%;
    margin: 60px auto;
    position: relative;
}

.dotCircle {
    width: 100%;
    height: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    z-index: 20
}

.dotCircle .itemDot {
    display: block;
    width: 120px;
    height: 120px;
    position: absolute;
    background:linear-gradient(360deg,rgba(213,212,208,1) 0%,rgba(238,239,236,1) 55%,rgba(234,233,231,1) 100%);
    color: #0090B3;
    border-radius: 100%;
    text-align: center;
    line-height: 120px;
    font-size: 30px;
    z-index: 3;
    cursor: pointer;
    font-size: 14px;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
}

.dotCircle .itemDot .forActive {
    width: 56px;
    height: 56px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none
}
.dotCircle .itemDot.active .forActive {
    display: block
}
.contentCircle .CirItem {
    border-radius: 100%;
    color: #fff;
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: scale(0);
    transition: .5s;
    font-weight: 700;
    font-size: 13px;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    margin: auto;
    background: #00000054;
    line-height: 250px;
}

@media only screen and (min-width: 300px) and (max-width: 599px) {
    .holderCircle {
        width: 300px;
        height: 300px;
        margin: 110px auto
    }

    .holderCircle::after {
        width: 100%;
        height: 100%
    }

    .dotCircle {
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto
    }
}

.contentCircle {
    width: 230px;
    height: 230px;
    border-radius: 100%;
    text-align: center;
    line-height: 230px;
    color: #fff;
    position: relative;
    top: 185px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background:linear-gradient(360deg,rgba(32,156,255,1) 0%,rgba(104,224,207,1) 100%);
    cursor: pointer;
    z-index: 100;
}
.contentCircle .CirItem {
    border-radius: 100%;
    color: #fff;
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: scale(0);
    transition: 0.5s;
    font-weight: bold;
    font-size: 13px;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    margin: auto;
    background: #00000054;
    line-height: 250px;
}

.contentCircle p{
    line-height: 25px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    word-break: break-word;
    padding:5px;
}
.gwmsgbox{
    width: 300px;
    height: auto;
    padding: 15px;
    -moz-box-shadow:0px 0px 6px 4px rgba(87,146,160,0.15);
    -webkit-box-shadow:0px 0px 6px 4px  rgba(87,146,160,0.15);
    box-shadow:0px 0px 6px 4px  rgba(87,146,160,0.15);
    font-size: 14px;
    position: absolute;
    line-height: 25px;
    transform: translate(-50%,-50%);
    top: 50%;
    color: #333333;
    right: -400px;
    background: white;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    opacity: 0;
}
.gwmsgbox p{
    position: relative;
    z-index: 2;
    text-align: left;
    color: #333333;
}
.gwmsgbox h2{
    font-size: 16px;
    width: 100%;
    text-align: center;
}
.gwmsgbox:after{
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    background:white;
    position: absolute;
    -webkit-transform: rotate(45deg) translate(-50%,-50%);
    -moz-transform: rotate(45deg)translate(-50%,-50%);
    -ms-transform: rotate(45deg)translate(-50%,-50%);
    -o-transform: rotate(45deg)translate(-50%,-50%);
    transform: rotate(45deg)translate(-50%,-50%);
    left: -12.5px;
    top: 50%;
    z-index: 1;
    -moz-box-shadow:-3px 2px 3px rgba(87,146,160,0.15);
    -webkit-box-shadow:-3px 2px 3px rgba(87,146,160,0.15);
    box-shadow:-3px 2px 3px rgba(87,146,160,0.15);
}