.contact-wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 83px;
    height: 83px;
    color: var(--white);
    background: var(--header);
    border: 1px solid var(--header);
}

.contact-title{
    color: var(--white);
    font-size: var(--size-20);
    position: relative;
    padding-bottom: 13px;
}

.contact-title::after{
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 0;
    height: 3px;
    background: var(--header);
    width: 50px;
}

.contact-subtitle{
    color: var(--white);
    font-size: var(--size-16);
    border-bottom: 1px solid transparent;
}