.atention {
    z-index: 9999;
    position: fixed;
    bottom: 0;
    left: 0;

    display: none;
    flex-direction: column;
    align-items: center;

    width: 100%;

    padding: 24px 20px;

    background: linear-gradient(113.96deg, rgba(32, 42, 95, 0.16) 0%, rgba(38, 52, 109, 0.32) 100%);
    box-shadow: 0px 1px 20px -5px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(30px);
}

.atention.active {
    display: flex;
}

.atention__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    max-width: 1400px;
}

.atention__inner p {
    max-width: 600px;
	color: white;
}

.atention__inner a {
    max-width: 600px;
	color: white;
	text-decoration: underline;
}
.atention__btn {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0.6em 2rem;
    background: white;
    border-radius: 30px;

    transition: 0.3s all ease;
}

.atention__btn:hover {
    background: #eaeaea;
}

@media screen and (max-width: 950px) {
    .atention__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .atention__btn {
        margin-top: 20px;
    }
}
