footer {
    height: 500px;
    background: #1A1A1A;
    display: flex;
    flex-direction: column;
        justify-content: center;
    align-content: center;
    
}

.mainrow {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    margin-top: 0px;
    display: flex;
    flex-direction: row;
    height: 300px;
    width: 1300px;
}

.midfooter img {
    width: 240px;
    height: auto;
    justify-content: center;
    align-content: center;
}

.leftfooter {
    width: 32.5%;
    height: 300px;
    display: flex;
    font-size: 20px;
    font-weight: 500;
    color: white;
    justify-content: center;
    align-items: center;
}

.leftfooter p{
    margin: 10px;
}

.midfooter {
    width: 35%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rightfooter {
    width: 32.5%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rightfooter img{
    width: 32px;
    height: auto;
    
}
.rightfooter a:hover{
    opacity: 0.7;  
}

.rightfooter a{
    margin: 10px;
    transition: 0.3s;
}

.adressrow{
  width: 100%;
height: 100px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.adressrow a,p{
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 500;
    transition: 0.3s;
    margin: 10px;
}

.adressrow a:hover{
    color: #c2c2c2;
}

@media only screen and (max-width: 1400px) {
    footer{
        height: auto;
    }
    .mainrow{
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .midfooter img {
    width: 160px;
    height: auto;
}
    .leftfooter,.midfooter,.midfooter{
        width: 100%;
    }
    .adressrow a,p{
        width: 80%;
        font-size: 14px;
        text-align: center;
        font-weight: 400;
    }
    .adressrow{
        margin-bottom: 30px;
    }
}