.contact-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    padding-bottom: 50px;
}

.contact-button {
    background-color: white;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    flex: 1;
    height: 40px;
    padding: 4px 0;
    text-transform: uppercase;
}

.contact-button--selected {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: white;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-item {
    border: 1px solid #e0e0e0;;
    flex: 1;
    padding-top: 40px;
    position: relative;
}

@media screen and (max-width: 1024px) {
    .contact-item {
        flex: 0 0 100%;
    }
}

.contact-icon-wrapper {
    align-items: center;
    background-color: var(--main-color);
    border-radius: 50%;
    display: flex;
    font-size: 30px;
    height: 60px;
    justify-content: center;
    left: 20px;
    position: absolute;
    top: -30px;
    width: 60px;
}

.contact-icon:before {
    color: white;
}

.hide-contact {
    display: none;
}

.contact-map {
    height: 400px;
    margin-top: 30px;
}

.location-img-container {
    display: flex;
    height: 400px;
    margin-top: 30px;
    justify-content: center;
}

.location-img {
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .location-img {
        height: 400px;
        width: 350px;
    }
}

.qr-code {
    display: flex;
    justify-content: center;
    width: 100%;
}
