.contacts{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Poppins, sans-serif;
    flex-wrap: wrap;
    padding: 10px 20px;
}

.contacts a {
    padding-right: 10px;
}
.banner {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    z-index: 100000;
    background-color: #8C5D8AAA;
}
.banner_block {
    background-color: white;
    position: absolute;
    width: 720px;
    padding: 70px 40px;
    border-radius: 20px;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.banner_block .banner_title {
    font-size: 40px;
    font-weight: bold;
}

.banner_block .banner_buttons {
    display: flex;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: black;
    font-size: 24px;
    cursor: pointer;
}
.banner_block .banner_buttons button {
    padding: 10px 25px;
    text-align: center;
    width: 250px;
    border-radius: 20px;
    border: 1px solid #8C5D8A;
    margin: 0 10px;
    color: #8C5D8A;
    font-size: 24px;
    cursor: pointer;
}
.banner_title p {
    margin: 40px 0;
}
.banner_atent {
    text-align: center;
    font-size: 14px;
    color: #202020;
    padding: 20px 50px;
}
@media screen and (max-width: 580px) {

    .header_line {
        padding: 30px 0;
    }

    .navigation-menu ul li {
        font-size: 14px;
        margin: 0 5px;
    }

    .header_banner h1 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .banner_block .banner_buttons button {
        padding: 10px 25px;
        text-align: center;
        width: 120px;
        font-size: 16px;
    }
    .banner_block {
        width: 320px;
        padding: 30px 20px;
    }
    .banner_atent {
        font-size: 10px;
        margin-top: 15px;
        padding: 0 10px;
    }
}