footer{
    background: #060508;
    padding-top: 75px;
    padding-bottom: 30px;
}

.footer_top,.footer_middle,.footer_bottom{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer_top .footer_top_logo{
    width: 212px;
}
.footer_top .logo_des{
    color: #666;
    font-family: "Pontano Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 10px;
}
.footer_top .share{
    width: 120px;
    height: 54px;
    flex-shrink: 0;
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_top .share a{
    width: 120px;
}

.footer_top .share a img{
    width: 80%;
}

.footer_middle{
    margin-top: 80px;
}
.footer_middle_menu{
    display: flex;
    align-items: center;
    max-width: 490px;
    flex-wrap: wrap;
    gap: 30px 60px ;
}
.footer_middle_menu .footer_middle_menu_item{
    color: #FFF;
    font-family: "Pontano Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    flex: 1;
    min-width: 215px;
    padding: 13px 0;
}

.footer_middle .footer_middle_info{
    display: flex;
    flex-direction: column;
}
.footer_middle .footer_middle_info_title{
    color: #666;
    font-family: "Pontano Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 144.444% */
    text-transform: uppercase;
}

.footer_middle .footer_middle_info_input {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.30);
    padding-bottom:20px;
    margin-top: 30px;
}

.footer_email{
    color: var(--white-color);
    font-family: "Pontano Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    flex: 1;
    background: transparent;
    border: none !important;
}
.footer_email::placeholder{
    color: #fff;
}
.footer_middle .footer_middle_info_input img{
    width: 20px;
    height: 20px;
}

.footer_middle .footer_middle_info_des{
    color: #666;
    font-family: "Pontano Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 162.5% */
    text-transform: uppercase;
    margin-top: 20px;
}

.footer_bottom{
    margin-top: 100px;
}
.footer_bottom span{
    color: #FFF;
    font-family: "Pontano Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

@media screen and (max-width: 767px) {
    .footer_top .footer_top_logo{
        width: 180px;
    }
    .footer_top{
        gap: 65px;
    }
    .footer_middle{
        flex-direction: column;
    }
    .footer_middle_menu{
        max-width: 100%;
    }
    .footer_middle_menu_item{
        text-align: left;
    }
    .footer_middle_info{
        width: 100%;
    }
    .footer_email{
        font-size: 20px;
    }

}


