.container-blink {
    width: 120px;
    margin: 0 auto;
    z-index: 10;
}

.container-blink>h2 {
    float: left;
    width: 50%;
    text-align: center;
}

.container-blink>.text-red {
    color: red;
}

.container-blink>.blink-hard {
    animation: blinker 1s step-end infinite;
}

.container-blink>.blink-soft {
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.expedition-details {
    margin-top: 15px;
    margin-bottom: 30px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: whitesmoke;
}

#clients {
    padding: 10px 0;
    margin-top: 50px;
}

#clients img {
    max-width: 80%;
    transition: 0.3s;
    padding: 15px 0;
}

#clients img:hover {
    opacity: 1;
}

.poster__expidition {
    width: 100%;
    height: 600px;
}

@media screen and (max-width:500px) {
    .container-blink {
        top: 90px;
        left: -25px;
    }
    .poster__expidition {
        width: 100%;
        height: 260px;
    }
}