body, html {
    margin: 0;
    background-color: #201C1C;
    --swiper-navigation-size: 16px;
    height: auto;
}

.main-container {
    max-width: 1730px;
    margin: 0 auto;
    padding: 0 15px;
}

/* -------------fonts--------------- */
h1 {
    /* H1(96) */
    font-family: "Fixel Display-Bold", sans-serif;
    font-size: 96px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

h2 {
    /* H2(64) */
    font-family: "Fixel Display-Bold", sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

h4 {
    /* H4(40) */
    font-family: "Source Sans Pro Bold", sans-serif;
    font-size: 40px;
    font-style: normal;
    line-height: normal;
}

.regular {
    font-weight: 400;
}

.bold {
    font-weight: 700;
}

.semi-bold {
    font-weight: 600;
}

h5 {
    /* h5(32)-bold */
    font-family: "Source Sans Pro Bold", sans-serif;
    font-size: 32px;
    font-style: normal;
    line-height: normal;
}

h6 {
    /* H6(24) */
    font-family: "Source Sans Pro Bold", sans-serif;
    font-size: 24px;
    font-style: normal;
    line-height: normal;
}

.path {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.clamped {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}


.path-block {
    color: #FAFAFA5C;
    font-family: "Source Sans Pro Bold", sans-serif;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
}

.path-block.active {
    opacity: 50%;
}

.path img {
    max-width: 9px;
}

a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}


main {
    padding: 50px 16px;
    flex: 1;
    /*height: 500vh;*/
    margin: 0 auto;
    width: 100%;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.hidden {
    display: none;
}

.product-active-page {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 20px;
    width: 100%;
}

.link-main-page {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.link-active-page {
    display: flex;
    align-items: center;
    width: 75px;
}

.link-main-page-text {
    font-size: 16px;
    font-weight: 500;
    color: #2B2B2B;
}

.link-active-page-text {
    font-size: 16px;
    font-weight: 500;
    color: rgba(43, 43, 43, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.burger-menu-overlay {
    display: none;
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 10000;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}


@media (min-width: 576px) {
    main {
        padding: 70px 25px;
    }
}

@media (min-width: 768px) {
    main {
        padding: 80px 43px;
    }

    .link-active-page {
        width: 400px;
    }
}

@media (min-width: 992px) {
    main {
        padding: 90px 38px;
    }
}

@media (min-width: 1200px) {
    main {
        padding: 86px 60px;
    }
}

@media (min-width: 1440px) {
    .link-active-page {
        width: 100%;
    }
}


@media (min-width: 1730px) {
    .product-active-page {
        margin-bottom: 30px;
    }

    main {
        padding: 158px 100px;
    }
}


/* -------------fonts--------------- */
@font-face {
    font-family: "Source Sans Pro Bold";
    src: url("../fonts/SourceSansPro-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "Source Sans Pro";
    src: url("../fonts/SourceSansPro-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
}


@font-face {
    font-family: "Fixel Display-Bold";
    src: url("../fonts/FixelDisplay-Bold.otf") format("truetype");
    font-style: normal;
    font-weight: 800;
}