div.contact {
    margin-top: calc(60px + 30px);
    min-height: 60vh;
    padding: 0 30px;
}
div.contact h1 {
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.2;
}
div.contact h2 {
    font-size: 37px;
    margin: 20px 0 7px 0;
}
div.contact h3 {
    font-size: 20px;
    font-weight: 400;
    color: #353535;
    font-style: italic;
}
div.contact div.child {
    /*margin: 30px;*/
}
div.contact div.tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
}
div.contact div.tab {
    width: calc(33.33% - (20px + 40px));
    height: auto;
    background-color: #fff;
    border: 1px dashed var(--secondary-color);
    border-radius: 14px;
    padding: 20px;
}
div.contact div.tab p.title {
    font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
}
div.contact div.tab p.subtitle {
    font-size: 15px;
    margin-top: 10px;
    line-height: 1.4;
    color: #353535;
}
div.contact div.tab div.icon {
    display: inline-flex;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color-10);
    border-radius: 9px;
}
div.contact div.tab div.icon svg {
    display: flex;
    height: 22px;
    width: 22px;
    overflow: visible;
    fill: var(--primary-color);
}
div.contact div.tab a.value {
    background-color: #f3f3f3;
    display: inline-flex;
    margin-top: 20px;
    padding: 8px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 15px;
    color: #000;
    font-weight: 500;
}
div.contact div.tab a.value:hover {
    color: var(--primary-color);
    background-color: var(--primary-color-10);
}
@media only screen and (max-width: 1030px) {
    div.contact div.tab {
        width: calc(50% - 60px);
    }
    div.quick-links {
        margin-left: 30px;
        margin-right: 30px;
    }

}