:root {
    --kolofix-black-ish: #07020D;
    --kolofix-red: #D00000;
    --kolofix-color-3: #F1E0C5;
    --revert-text-color: #ffffff;
    --main-font: 'Work Sans', sans-serif;
    --complementary-font: 'Ubuntu Mono', monospace;
    --input-border: 2px solid var(--kolofix-black-ish);
    --letter-spacing-0-6: 0.6px;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, .h3, h4, h5, h6 {
    color: var(--kolofix-black-ish);
}

h1 {
    font-weight: 800;
    font-size: 60px;
    line-height: 66px;
}

h2 {
    font-size: 40px;
    line-height: 46.92px;
    font-weight: 600;
}

h3,
.h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 35.19px;
}

h4:not(.footer-column h4) {
    font-size: 20px;
    line-height: 23.46px;
    font-weight: 600;
}

h5 {
    font-size: 16px;
    line-height: 18.77px;
    font-weight: 600;
    text-transform: uppercase;
}

.text-size-40 {
    font-size: 40px !important;
    line-height: 46.92px !important;
}

.text-size-26 {
    font-size: 26px !important;
    line-height: 30.5px !important;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-color {
    color: var(--kolofix-black-ish) !important;
}

.kolofix-red-color {
    color: var(--kolofix-red) !important;
}

.text-revert-color {
    color: var(--revert-text-color) !important;
}

::marker {
    color: var(--kolofix-red);
}

ol,
li {
    line-height: 1.5;
}

.min-w-300 {
    min-width: 300px;
}

.underline-none {
    text-decoration: none !important;
}

.max-width-1240 {
    max-width: 1240px !important;
    margin-inline: auto !important;
    box-sizing: border-box;
}

.max-width-1440 {
    max-width: 1440px !important;
    margin-inline: auto !important;
    box-sizing: border-box;
}

.max-width-1640 {
    max-width: 1640px !important;
    margin-inline: auto !important;
    box-sizing: border-box;
}

.bg-kolofix-color-3 {
    background-color: var(--kolofix-color-3) !important;
}

.bg-kolofix-black-ish {
    background-color: var(--kolofix-black-ish) !important;
}

.bg-kolofix-red {
    background-color: var(--kolofix-red) !important;
}

.main-btn {
    padding: 16px 24px;
    background-color: var(--kolofix-red);
    border-radius: 100px;
    font-weight: 600;
    font-style: italic;
    border: 1px solid transparent;
    text-decoration: none;
    color: var(--revert-text-color);
    display: inline-block;
    text-transform: uppercase;
}

.btn-color-border {
    margin: auto;
    display: inline-block;
    padding: 16px 24px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--kolofix-black-ish);
    border: 1px solid var(--kolofix-red);
    font-weight: 600;
    font-style: italic;
    border-radius: 100px;
}

.colored-text-link {
    text-decoration: none;
    color: var(--kolofix-red);
    font-style: italic;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 7px;
}

.intro-page-section.home-section .colored-text-link {
    width: fit-content;
    margin: auto;
}

.regular-color-text-link {
    color: var(--kolofix-black-ish);
    text-decoration: none;
}

.bold-link-in-text {
    font-weight: 600;
    color: var(--kolofix-red);
    text-decoration: none;
}

.border-separator {
    width: 100%;
    height: 1px;
    background-color: var(--kolofix-black-ish);
}

.color-small-btn-with-arrow {
    text-decoration: underline;
    color: var(--kolofix-red);
}

.color-small-btn-with-arrow::after  {
    content: "";
    background: url("../images/long-arrow-right.svg") no-repeat center;
    display: inline-block;
    width: 49px;
    height: 11px;
    margin-left: 9px;
    background-size: contain;
}

.color-small-btn-with-arrow.no-arrow::after {
    content: none;
}

.letter-spacing-0-6 {
    letter-spacing: var(--letter-spacing-0-6);
}

.margin-bottom-0 {
    margin-bottom: 0 !important;
}

.bold-700 {
    font-weight: 700 !important;
}

.section-padding-block-40 {
    padding-block: 40px;
}

.general-section {
    padding: 50px 33px !important;
    margin-bottom: 0 !important;
}

.first-general-section {
    padding-top: 33px !important;
}

.general-section h4 {
    margin-block: 0 24px !important;
}

.basic-margin-inline {
    margin-inline: 40px !important;
}

.narrowed-section {
    margin: 33px;
}

.padding-block-100 {
    padding-block: 100px !important;
}

.inline-list {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
}

.inline-list > *  {
    margin-right: 10px;
    margin-left: 20px;
}

.dots-before > * {
    display: inline;
}

.dots-before > *::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--kolofix-red);
    display: inline-block;
    vertical-align: middle;
    margin-inline: 4px 9px;
}

section .title-text-cont {
    margin-bottom: 40px;
}

.title-max-width {
    max-width: 770px;
}











@media (hover: hover) and (pointer: fine) {
    .main-btn:hover,
    .main-btn:active {
        background-color: var(--kolofix-black-ish);
        cursor: pointer;
    }

    .btn-color-border:hover,
    .btn-color-border:active {
        border: 1px solid var(--kolofix-black-ish);
    }

    .colored-text-link:hover,
    .colored-text-link:active {
        color: var(--kolofix-black-ish);
    }

    .colored-text-link:hover::after,
    .colored-text-link:active::after {
        content: url(../images/arrow-in-circle-black.svg);
    }

    .regular-color-text-link:hover,
    .regular-color-text-link:active {
        text-decoration: underline;
    }

    .color-small-btn-with-arrow:hover,
    .color-small-btn-with-arrow:active,
    .types-of-package-one-cube.active .color-small-btn-with-arrow:hover,
    .types-of-package-one-cube.active .color-small-btn-with-arrow:active {
        color: var(--kolofix-black-ish);
    }

    .color-small-btn-with-arrow:hover::after {
        filter: grayscale(1)
    }

    .types-of-package-one-cube.active .color-small-btn-with-arrow:hover::after {
        filter: invert();
    }

    .bold-link-in-text:hover {
        color: var(--kolofix-black-ish);
    }

}



@media (max-width: 1330px) {
    .title-br-half-width {
        display: none;
    }
}

@media (max-width: 991px) {
    h3,
    .h3 {
        font-size: 20px;
        line-height: 23.46px;
    }

    .basic-margin-inline {
        margin-inline: 20px !important;
    }

    .color-small-btn-with-arrow::after  {
        width: 28px;
        height: 7px;
    }

    .margin-inline-lg-20 {
        margin-inline: 20px !important;
    }

    .text-size-40 {
        font-size: 26px !important;
        line-height: 30.5px !important;
    }

    .text-size-26 {
        font-size: 20px !important;
        line-height: 23.46px !important;
    }

    .general-section {
        padding: 25px 20px !important;
    }

    .padding-block-100 {
        padding-block: 50px !important;
    }

}



@media (max-width: 576px) {
    .main-btn,
    .btn-color-border {
        padding: 8px 16px;
        font-size: 15px;
        line-height: 17.6px;
    }

    .min-w-300 {
        min-width: 250px;
    }

    .title-br {
        display: none;
    }


}