#bottomm {
	margin-top: 23%;
}
.wrapper{
	margin: auto;
    width:200px;
    height: 130px;
    position: relative;
}
.circlee{
    width:20px;
    height:20px;
    position: absolute;
    border-radius: 50%;
    background-color: #000;
    left:15%;
    transform-origin: 50%;
    animation: circlee .5s alternate infinite ease;
	z-index: 1;
}

@keyframes circlee{
    0%{
        top:60px;
        height:5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }
    40%{
        height:20px;
        border-radius: 50%;
        transform: scaleX(1);
    }
    100%{
        top:0%;
    }
}
.circlee:nth-child(2){
    left:45%;
    animation-delay: .2s;
}
.circlee:nth-child(3){
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.shadoww{
    width:20px;
    height:4px;
    border-radius: 50%;
    background-color: rgba(0,0,0,.5);
    position: absolute;
    top:62px;
    transform-origin: 50%;
    z-index: -1;
    left:15%;
    filter: blur(1px);
    animation: shadoww .5s alternate infinite ease;
}

@keyframes shadoww{
    0%{
        transform: scaleX(1.5);
    }
    40%{
        transform: scaleX(1);
        opacity: .7;
    }
    100%{
        transform: scaleX(.2);
        opacity: .4;
    }
}
.shadoww:nth-child(4){
    left: 45%;
    animation-delay: .2s
}
.shadoww:nth-child(5){
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.wrapper span{
    position: absolute;
    top:75px;
    font-family: 'Lato';
    font-size: 20px;
    letter-spacing: 5px;
    color: #000;
    left:15%;
}


#bookcontract{}
#bookcontract li{
    text-align: center;
    font-size: 16px;
    border-bottom: 1px dashed #e8e8e8;
    padding: 10px 0 15px;
    width: 60%;
    margin: 0 auto 15px;
}
#bookcontract li p, #bookcontract li span{
    font-size: 16px;
    display: block;
    text-align: center;
}
#bookcontract li span a{
    color: #cb3340;
    font-size: 16px;
}





@keyframes youtubeAnim{
  0%,100%{
    color:#c9110f;
  }
  50%{
    color:#ff0000;
  }
}
/* footer  */
@media screen and (max-width: 768px) {
#bookcontract li {
    width: 90%;
}
}
@media screen and (max-width: 480px) {
#bookcontract li p, #bookcontract li span {
    display: block;
}
#bookcontract li {
    width: 100%;
}
#bookcontract li p, #bookcontract li span a {
    font-size: 14px;
}
}