.contact_container {
    background-color: #f1f1f1;
    padding: 50px 15px;
    min-height: 600px;
}

.contact-content {
    display: flex;
    box-shadow: 3px 3px 5px #888888;
    border-radius: 35px;
    overflow: hidden;
}

.left_side, .right_side {
    width: 50%;
    display: inline-block;
    padding: 35px;
}

.left_side {
    background-color: white;
}

.right_side {
    background-color: var(--bs-cyan);
    color: white;
}

.icon-text {
    font-weight: bold;
    display: flex;
    align-items: center;
}

.icon-text svg {
    margin: 15px;
}

.icon-link {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 25px;
}

.icon-link svg {
    width: 50px;
    height: 50px;
}

.icon-link svg path, .icon-text svg path {
    fill: white;
}

.icon-link a {
    border: 2px solid var(--color-primary);
    transition: 0.3s;
}

.icon-link a:hover {
    background-color: white;
    border-radius: 50%;
    border: 2px solid white;
}

.icon-link a:hover svg path {
    fill: var(--color-primary);
}