.main-footer {
    background-color: #034E7B;

}

.top-footer {
    display: flex;
    width: 100%;
    justify-content:space-evenly;

    padding: 20px;
}

.column1-footer {
    /* border-right: .5px solid #fafafa81; */
}

.title-footer {
    font-family: sans-serif;
    color: #FEB912;
    font-size: 70%;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 20px;
}

.text-footer {
    font-family: sans-serif;
    color: #FAFAFA;
    font-size: 70%;
}

.text-footer-icons {
    font-family: sans-serif;
    font-size: 150%;
}

.text-footer-icons a {
    text-decoration: none;
    color: #FAFAFA;
    margin-right: 15px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #FAFAFA;
  color: #FAFAFA;
  padding: 10px;
  font-size: 70%;
  outline: none;
}

.contact-form textarea {
    font-size: 75%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #FAFAFA;
}

.contact-form textarea {
  resize: none;
  height: 80px;
}

.contact-form button {
  align-self: flex-end;
  background: transparent;
  border: 1px solid #FAFAFA;
  color: FAFAFA;
  padding: 8px 16px;
  font-size: 70%;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #FAFAFA;
  color: #014c73;
}

.bottom-footer {
    width: 100%;
    display: flex;
    justify-content: center;
}

.bottom-footer p{
    font-family: sans-serif;
    font-weight: 500;
    font-size: 85%;
    color: #FAFAFA;
}

@media screen and (max-width: 768px) {

    .top-footer {
        display: flex;
        /* flex-direction: column; */
        flex-wrap: wrap;
    }

    .title-footer {
        font-size: 18%;
    }

    .text-footer {
        font-size: 18%;
    }

    .contact-footer {
        order: 1;
        flex: 100%;
    }

    .column1-footer, .column2-footer {
        order: 2;
        flex: 1;
    }

    .contact-form input{
        font-size: 18%;
    }

    .contact-form textarea {
        font-size: 22%;
    }


    .bottom-footer p{
        font-size: 20%;
    }
}