.contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    padding-top: 0px;
    background-image: url("../images/contact-us-background.png");
    background-size: 100% 100%;
}

.contact {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    box-sizing: border-box;
    box-shadow: 10px 10px 70px rgba(70, 62, 221, 0.1);
    background: #ffffff;
}

.contact img {
    height: 400px;
    width: 400px;
    
}

.contact .text-box {
    width: 400px;
    height: 400px;
    padding: 20px;
    border: 1px solid black;
}


/* About us */

.about-us {
    background-image: url("../images/contact-us-background.png");
    background-size: 100% 100%;
}

.about-us-text {
    margin: auto;
    width: 700px;
    background-color: white;
    padding: 20px;
    box-shadow: 20px 20px 38px rgba(0, 0, 0, 0.03);
    border: 1px solid #cce7d0;
    border-radius: 20px;
    transition: 0.5s ease;
}

.about-us-text:hover {
    box-shadow: 10px 10px 70px rgba(70, 62, 221, 0.15);
}