.contact-container {
    user-select: none;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    top: 580vh;
}


.contact-wrapper {
    width: 60%;
    height: 70%;
    border-radius: 20px;
    background-color: #363636;
}

.top-bar {
    width: 100%;
    height: 10%;
    background-color: #515052;
    overflow: hidden;
}

.contact-top-button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #BB003D;
    /*#73C34F*/
    margin: 26px;
    overflow: visible;
}

.contact-top-button::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #73C34F;
    transform: translateX(200%);
}

.contact-top-button::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #3cc7ad;
    transform: translateX(400%);
}

.contact-title {
    color: #fff;
    width: 80%;
    text-align: center;
    font-size: 64px;
    margin: 20px auto;
}

.contact-content-container {
    position: relative;
    display: flex;
    text-align: center;
    width: 80%;
    height: 250px;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.info-item {
    width: calc(100% / 2);
    height: 100%;
    padding: 3%;
    overflow: visible;
}

.info-item img {
    background-color: #3cc7ad;
    width: 50px;
    height: 50px;
    padding: 25px;
    margin-bottom: 10px;
    filter: invert(1);
    box-shadow: 3px 3px 3px 0px rgba(255,255,255,1);
}

.info-item:first-child > img {
    background-color: #BB003D;
}

.info-item p {
    color: #fff;
    font-size: 16px;
    padding: 10%;
    text-shadow: 2px 2px 2px #000;
}

@media screen and (max-width: 720px) {
    .contact-container {
        top: 760vh;
        overflow: visible;
    }
    .contact-wrapper {
        width: 100vw;
        overflow: visible;
    }
    .info-item p {
        font-size: 15px;
        overflow: visible;
        overflow-wrap: break-word;
    }
    .contact-content-container {
        width: 100%;
    }
}
