.updates_wrap{
    padding:40px 0;
    /* max-width:1200px; */
    width: 100%;
    margin:0 auto;
    display: flex;
    flex-wrap: wrap;
    row-gap: 25px;
    justify-content: space-between;
}

.updates_left{
    width:45%;
    color: #ffffff;
}

.updates_left h2{
    font-size: 30px;
}

.updates_form{
    width:50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.updates_form input{
    height:45px;
    padding: 0 12px;
    width:calc(100% - 165px);
}

.updates_form button{
    height:45px;
    padding:0 10px;
    color: #ffffff;
    background: #090909;
    text-transform: uppercase;
}
.updates_form button img{
    display: none;
}

.updates_form input,
.updates_form button{
    border: none;
    border-radius: 6px;
}
.updates_form button:hover{
    background: var(--color-primary-hover);
}


/* ------------------------------------------------------- */

.footer{
    color: #6A6A6A;
    padding:50px 0 30px 0;
    background-color: #F5F5FA;
}

.footer_top{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 30px;
    padding-bottom: 110px;
}

.footer_content{
    width: 35%;
    display: flex;
    flex-flow: column wrap;
    row-gap: 25px;
}
.footer_content img{
    width: fit-content;
}

.footer_links_wrap{
    width: 55%;
    display: flex;
    flex-wrap: wrap;
    row-gap:25px;
}
.footer_links_inside{
    width: 33.33%;
    padding-right:10px;
}
.footer_links_inside h4{
    font-size: 20px;
    color: #090909;
    margin-bottom: 25px;
}

.footer_links{
    display: flex;
    flex-flow: column wrap;
    row-gap: 20px;
}
.footer_links a:hover{
    color: var(--color-primary);
}

.footer-center{
    text-align: center;
}
.footer-center p{
    font-size: 14px;
    color: #090909;
}

.footer-center img{
    position: relative;
    top: -20px;
    background: #F5F5FA;
    padding:0 10px;
}