



.arrow {
    text-align: center;
    margin: 8% 0;
}
.bounce {
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

.bounce a{
    font-size: 26px;
    color: #fff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}








.lang{
    display: none;
    position: fixed;
    right:0;
    top:75px;
    background-color: rgba(0,0,0,0.5);
    color:#fff;
    border-radius: 10px 0 0 10px;
    z-index: 4;
}
.lang-icon{
    font-size: 22px;
}
.lang a{
    color:#fff;
    font-weight: 700;
}
.check-div{
    position: absolute;
    font-size: 10px;
    right: 3px;
    top:0px;
    border-radius:50%;
    width:14px;
    height: 14px;
    background-color: white;
    color:#000
}
.lang-item{
    padding: 5px 14px 7px 6px;
}




.search-form{
    position: fixed;
    left:0;
    top:0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.search-form-show{
    display: flex;
}


.search-area{
    width: 50%;
    z-index: 3;
}
.search-area h4{
    color: #fff;
}
.search-close{
    color:#fff;
    right: 20px;
    top:15px;
    position: absolute;
    font-size: 46px;
    font-weight: 700;
    cursor: grab;
}

@media only screen and (max-width: 600px) {
    .search-area{
        width: 90%;
        text-align: center;
    }
}





.loading {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background-color: rgba(255,255,255,0.5);
    z-index: 100000001;
}
.loading2 {
    position: absolute;
    display: inline-block;
    margin: auto;
    width: 20%;
    height: 20%;
    text-align: center;
    top: 40%;
    left: 40%;
}


.lang-link{
    padding-left:10px;
}