footer {
    display: flex;
    align-items: center;
    /*background: linear-gradient(white 0%, #ff6d6d 30%, #ff6d6d 100% );*/
    /*background: linear-gradient(white 0%, #fe9595 30%, #fe9595 100% );*/
    margin-top: 20px;
    width: 100%;
    max-height: 600px;
}

footer>.f1,
.f2 {
    display: flex;
    height: 550px;
    width: 50%;
    margin-top: 20px;
    padding: 20px;
    flex-flow: column;
    /*    background-color: aqua;*/
    justify-content: center;
    align-items: center;
}

.f-title {
    height: 15%;
    width: 100%;
    /*background-color: #ff6d6d;*/
}

.f-body {
    height: 85%;
    width: 100%;
    /*background-color: #6dc67d;*/
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}
.f-body > img{
    width: 100%;
    max-height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: contain;
    object-position: center;
    /*background-color: aqua; */
}

.f-body > a{
        text-decoration: none !important;
    background-color: #32a852;
    font-size: 1.1em;
    font-weight: 300;
    height: 45px;
    width: 90%;
    text-align: center;
    border-radius: 10px;
    display:flex;
    justify-content: center;
    align-content: center;
    align-items: center;
        text-align: center;
    text-decoration: none !important;
    font-size: 1.1em;
    font-weight: 300;
    color: white;
}
form {
    display: flex;
    width: 100%;
    flex-flow: column;
    /*border-radius: 25px;*/
    /*border: 1px gray solid;*/
    padding: 25px;
    /*    background-color: aqua;*/
    /*background-color: rgba(1,1,1,.25);*/
}
.f-body > span:hover{
    cursor: pointer;
}

form>input {
    height: 45px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid gray;
    font-size: 1.2em;
    outline: none;
    padding: 5px;
    border: 1px rgb(139, 137, 137) solid;
    margin-top: 5px;
    margin-bottom: 5px;
    color: rgb(53, 53, 53);
    font-family:  Arial, sans-serif;
}

form>textarea {
    margin-top: 5px;
    height: 150px;
    width: 100%;
    border-radius: 10px;

    font-size: 1.2em;
    resize: none;
    padding: 5px;
    text-decoration: none;
    outline: none;
    border: 1px white solid;
    border: 1px rgb(139, 137, 137) solid;
    color: rgb(53, 53, 53);
    font-family: Arial, sans-serif;
}

form>button {
    margin-top: 15px;
    height: 45px;
    width: 100%;
    border-radius: 10px;
    background-color: #ff6d6d;
    border: 1px #ff6d6d solid;
    font-size: 1.2em;
    display: flex;
    flex-flow: row;
    justify-content: center;
}

button>img {
    max-width: 40px;
    margin-right: 10px;
    margin: 5px;
}

button>p {
    align-self: center;
    margin-left: 15px;
    background-color: none !important;
    color: white
}

button:hover {
    cursor: pointer;
    background-color: #fe9595;
    border: 1px solid #fe9595;
    transition: ease 0.3s;
}

@media (max-width: 1800px) {
}

@media (max-width: 1600px) {
       .footer {
        max-height: none;
    }
}

@media (max-width: 1200px) {
        .footer {
        flex-flow: column;
    }

    .footer>.f1,
    .footer>.f2 {
        width: 100%;
    }

    .f2 {
        justify-content: center;
        align-items: center;
    }

    .f-title,
    .f-body {
        justify-content: center;
        align-items: center;
        justify-items: center;
    }
}

@media (max-width: 700px) {
    .footer {
        flex-flow: column;
    }

    .footer>.f1,
    .footer>.f2 {
        width: 100%;
    }

    .f2 {
        justify-content: center;
        align-items: center;
    }
}