body {
    font-family: "Mulish", sans-serif;
    --block-margin: 80px;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    background-color: #F4F4F4;
}

.block-title {
    font-weight: 800;
    font-size: 52px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #2A2A37;
}

.page-block {
    padding-top: var(--block-margin);
    padding-bottom: var(--block-margin);
}

.page-text {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #2A2A37;
}

.cards-with-icon .block-title,
.about .block-title,
.guide-showcase .block-title {
    text-align: center;
}

@media screen and (max-width: 1250px) {
    .block-title {
        font-size: 40px;
    }

    body {
        --block-margin: 60px;
    }
}

@media screen and (max-width: 950px) {
    body {
        --block-margin: 40px;
    }

    .page-text {
        font-size: 22px;
    }
}

@media screen and (max-width: 600px) {
    body {
        --block-margin: 30px;
    }

    .page-text {
        font-size: 18px;
    }

    .block-title {
        text-align: left !important;
        font-size: 32px;
    }
}

