.footer{
    background: #111111;
}
.footer_upper{
    padding: 55px 75px;
    display: grid;
    grid-template-columns: 25% 20% 30% 25%;

}
.footer_upper nav{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer_link{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
    opacity: 0.5;
    text-decoration: none;
    width: fit-content;
    transition: 0.3s;
}
.footer_link:hover{
    opacity: 1;
}
.footer_box{
    display: flex;
    flex-direction: column;
    gap: 10px;
    
}
.footer_box_name{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFF;
    opacity: 0.5;
    padding-top: 0;
}
.footer_box_content{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
    text-decoration: none;
    width: fit-content;
    cursor: pointer;
}
.footer_box_content:hover{
    text-decoration:underline;
}
.footer_box_reight{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer_lower{
    margin: 0 75px;
    height: 80px;
    border-top: 2px solid #ffffff36;
/*    display: grid;
    grid-template-columns: 40% 40% 20%;*/
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
}

.footer_lower a {
    text-decoration: none;
}

.footer_lower .footer_lower_link {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFF;
    opacity: 0.3;
}
.foot{
    background: linear-gradient(to bottom, #ffffff00 16%, #111111 0%);
}
.hidden{
    display: none;
}

.agatech {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    color: #0068AF;
    text-decoration: none;
    cursor: pointer;
}

@media screen and (max-width: 1300px) {
    .footer_lower {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 15px;
        align-items: center;
        height: auto;
    }
}

@media screen and (max-width: 1100px) {
    .footer_upper {
        display: grid;
        grid-template-columns: 50% 50%;
        column-gap: 100px;
    }

    .footer_box_reight {
        justify-content: flex-end;
    }
}

@media screen and (max-width: 950px) {
    .footer_upper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .footer_upper nav {
        align-items: center;
    }

    .footer_box_name {
        text-align: center;
    }

    .footer_box {
        align-items: center;
    }
}

@media screen and (max-width: 450px) {
    .footer_lower {
        text-align: center;
    }

    .footer_lower .footer_lower_link {
        line-height: 180%;
    }
}