.block-page-placeholder {
    height: 680px;
    background-image: url("../pics/back.png");
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 1s ease-out;
}

.placeholder-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
}

.placeholder-wrap-img {
    max-width: 80%;
    display: none;
}

.placeholder-wrap-content {
    font-family: Arial;
    font-size: 72px;
    font-weight: lighter;
    line-height: 2em;
    color: white;
    margin: 100px 40px;

}

.placeholder-wrap-content span {
    font-weight: bold;
}

.mousey {
    margin: 10px;
    transform: skewX(25deg);
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 3px solid white;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
}

.scroller-dot{
    width: 4px;
    height: 10px;
    border-radius: 25%;
    background: white;
    animation-name: scroll-dot;
    animation-duration: 1.5s;
    animation-timing-function: cubic-bezier(.15,.41,.69,.94);
    animation-iteration-count: infinite;
}


@keyframes scroll {
    0% { opacity: 0; transform:  translateY(70px) rotate(-46deg);}
    10% { opacity: 1; transform: translateY(90px) rotate(-46deg);}
    100% { opacity: 0; transform:  translateY(130px) rotate(-46deg);}
}
@keyframes scroll-dot {
    0% { opacity: 0; }
    10% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0;}
}


.block-page-scroll {
    width: 600px;
    margin: 0 auto;
    transform: skewX(-25deg);
    background-color: #1f2a44;
    display: flex;
    justify-content: center;
}


.block-page-information {
    margin: 50px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.information-item {
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.information-item-img {

}

.information-item-content {
    margin-top: 20px;
}

.information-item-content-title {
    font-size: 20px;
    font-family: Arial;
    margin-bottom: 10px;
    text-align: center;
    color: #1f2a44;
}

.information-item-content-text {
    text-align: center;
    font-family: Title;
}

.block-page-certificate {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding-top: 20px;
    border-top: 1px solid #cdcdcd;
}

.block-page-certificate-title {
    font-family: Title;
    font-size: 40px;
    margin-bottom: 20px;
}

.block-page-certificate-wrap {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    width: 65%;
    margin: 0 50px;
}

.certificate-item {
    height: 300px;
    display: block !important;
    width: 200px !important;
    background-color: #F6F6F6;
    margin: 20px;
    box-shadow: 10px 10px 0px #1f2a44
}

.certificate-item img {
    width: 100%;
    height: 100%;
}

.slick-track {
    margin: 0 50px;
}

.slick-slide {
    width: 240px !important;
}

@media only screen and (max-width: 1000px) and (min-width: 1px) {
    .block-page-scroll {
     transform: none;
        width: 100%;
    }

    .mousey {
        transform: none;
    }

    .block-page-placeholder {
        height: 650px;
    }
}
