#contact.page{
    gap: 48px;
    padding-top: 0px;
    padding-inline: 0px;
    overflow: visible;
    & h2{
        font-weight: 700;
        font-size: 32px;
    }
    & .contactCard{
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 16px 24px;
        gap: 24px;
        height: 72px;
        background: #D8EAFF;
        box-sizing: border-box;
        border-radius: 16px;
        & > span.material-symbols-outlined:first-child{
            color: #002E58;
        }
        & > span.material-symbols-outlined:last-child{
            color: #000000;
        }
        & > .stackedText{
            flex: 1;
            & > p.bold{
                font-weight: 600;
                font-size: 18px;
                line-height: 120%;
                color: #002E58;
            }
            & > p.light{
                font-weight: 400;
                font-size: 16px;
                line-height: 120%;
                color: #000000;
            }
        }
    }
    & .contacts{
        display: flex;
        flex-direction: row;
        align-items: start;
        justify-content: center;
        gap: 32px;
    }
}