* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body,
section {
    background: #fff;
}

.contacts__title {
    font-family: 'Inter';
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    text-align: left;
    color: #000000;
    margin-bottom: 40px;
}

.go-back {
    padding-top: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #333;
    margin-bottom: 24px;
    font-family: "Inter", sans-serif;
    width: fit-content;
}

.container {
    display: flex;
    justify-content: space-between;
}

.block-title {
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #9B9B9C;
    margin-bottom: 16px;
}

.block-content {
    font-family: Montserrat;
    font-size: 48px;
    font-weight: 700;
    line-height: 40px;
    text-align: left;
    color: #333333;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .contacts__title {
        margin-bottom: 24px;
    }
    .container {
        display: flex;
        flex-direction: column;
    }
    .go-back {
        margin-bottom: 16px;
    }
    .block-title {
        margin-bottom: 8px;
    }
    .block-content {
        font-size: 20px;
        font-weight: 700;
        line-height: 24px;
        margin-bottom: 64px;
    }
}