
.footer_wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:  center / cover no-repeat url("../img/footer_background.png");
    margin: 100px 40px 40px 40px;
    border-radius: 40px;
    padding: 60px 0;
    overflow: hidden;
    max-width: 100%;
    text-align: left;
}

.footer_logo{
    display: block;
    width: 1200px;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    transform: scale(1.1);
}

.footer_container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 1200px;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    color: white;
    overflow: hidden;

}

a {
    text-decoration: none;
    color: white;
}

.footer_nowrap{
    text-wrap: nowrap;
}

.footer_content{

    ul{
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 0;
        padding: 0;
        list-style: none;
        font-size: 18px;
        opacity: 0.9;

        &.footer_list{
            margin-top: 60px;

            .footer_bold_text{
                font-weight: 700;
            }
        }

        &.footer_requisites{
            gap: 0;
            margin-top: 20px;
            opacity: 0.4;
            line-height: 150%;
        }
    }

    .footer_title{
        font-weight: 800;
        font-size: 20px;
        opacity: 0.4;
    }


    .footer_sign{
        display: block;
        margin-top: 20px;
        font-size: 18px;
        opacity: 0.4;
        line-height: 120%;
        z-index: 19;



        &.meta{
             /* letter-spacing: 3%; */
        }
    }


    &.placement{

        .footer_sign{
            font-weight: 300;
            font-size: 16px;
            margin-top: 0;
            margin-top: 0;
        }

        .footer_title{
            display: block;
            text-align: center;
        }

        .footer_banner_new_doctor{


            margin-top: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            width: 100%;
            text-align: center;
            padding: 20px 30px;
            gap: 20px;

            .footer_action{
                display: block;
            }

            .footer_mobile_action{
                display: none;
            }

            img{
                position: absolute;
                z-index: 9;
                width: 100%;
                height: 100%;
                object-fit: fill;
                left: 0;
                top: 0;
            }

            .footer_button {
                z-index: 19;
                border: 2px solid var(--blue);
                background: var(--blue);
                color: #fff;
                padding: 10px;
                border-radius: 8px;
                margin: 0 20px;
                text-align: center;
                cursor: pointer;
                transition: background-color 0.5s ease;

                &:hover{
                    background: var(--dark-blue);
                }
            }
        }
    }
}