.footer-wrapper {
    width: 100%;
    height: fit-content;
    margin-top:4rem;
}

.footer-left {
    background-color: #0390D8;
    padding:2rem;
}

.footer-left > p {
    color:white;
    font-size:27px;
    font-weight: bold;
}

.footer-contact {
    width: 100%;
    padding-top:2rem;
    overflow: hidden;
}

.footer-contact input,textarea {
    display: block;
    background: transparent;
    outline: none;
    border: none;
    border-bottom: 2px solid white;
    width: 100%;
    color:#fafafa;
    padding:0.4rem 0.8rem;
    font-size: 20px;
    margin-bottom:1rem;
    font-weight: 400;
}

.footer-contact input::placeholder,textarea::placeholder {
    color:white;
    font-weight: 300;
}

.footer-contact textarea {
    height: 10rem;
}

.footer-contact input[name="footerSubmit"] {
    display: block;
    width:50%;
    float:right;
    background-color: white;
    color: #0390D8;
}


.footer-right {
    background-color: #F0F0F0;
    padding:2rem;
}

.footer-right > p {
    color: black;
    font-size: 27px;
    font-weight: bold;
}

.footer-right-split{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap:2rem;
    height: 100%;
    padding-bottom: 2rem;
}

.footer-info {
    padding-top:2rem;
    padding-bottom:2rem;
}

.footer-info p:first-child {
    font-weight: bold;
}

.footer-info-link{
    display: flex;
    align-items: center;
    gap:1rem;
    margin-bottom:1rem;
}

.footer-info-link > div {
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-info-link img {
    height: 1.5rem;
}

.footer-2digital{
    border-top: 2px solid white;
    font-weight: 300;
    padding:0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-2digital a {
    color: #DA027E;
}

@media screen and (min-width:1024px) {
    .footer-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .footer-left {
        padding:8rem;
    }

    .footer-right {
        padding: 8rem;
    }
}