@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Prosto+One&display=swap');
:root {
    --gap-cloth: 200px;
    --padding-fm: 0 50px;
    --width-cloth: 1600px;
    --text-gap: 20px;
}
.cloth-landing {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    max-width: var(--width-cloth);
    -webkit-tap-highlight-color: transparent;
    border: none;
}
.cloth-landing * {
    box-sizing: border-box;
}
.cloth-landing section {
    width: 100%;
}
.cloth-landing .text-cloth {
    color: #111;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
}
.cloth-landing .title-cloth {
    color: #111;
    font-family: "Prosto One";
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-transform: uppercase;
    margin: 0;
}
.cloth-landing .subtitle-cloth {
    color: #FFF;
    font-family: "Prosto One";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-transform: uppercase;
    margin: 0;
}
.cloth-landing .title-cloth span {
    color: #BD9A5F;
}
@media screen and (max-width: 1699px) {
    :root {
        --width-cloth: 1280px;
        --gap-cloth: 150px;
    }
}
@media screen and (max-width: 1299px) {
    :root {
        --width-cloth: 1120px;
        --gap-cloth: 140px;
    }
    .cloth-landing .text-cloth {
        font-size: 16px;
    }
    .cloth-landing .title-cloth {
        font-size: 40px;
    }
    .cloth-landing .subtitle-cloth {
        font-size: 32px;
    }
}
@media screen and (max-width: 1199px) {
    :root {
        --width-cloth: 920px;
        --gap-cloth: 130px;
    }
    .cloth-landing .title-cloth {
        font-size: 36px;
    }
}
@media screen and (max-width: 991px) {
    :root {
        --width-cloth: 700px;
        --gap-cloth: 120px;
    }
    .cloth-landing .title-cloth {
        font-size: 32px;
    }
    .cloth-landing .subtitle-cloth {
        font-size: 28px;
    }
}
@media screen and (max-width: 767px) {
    :root {
        --gap-cloth: 110px;
        --width-cloth: calc(100% - 32px);
    }
    .cloth-landing .title-cloth {
        font-size: 26px;
    }
    .cloth-landing .subtitle-cloth {
        font-size: 24px;
    }
}
@media screen and (max-width: 567px) {
    :root {
        --gap-cloth: 100px;
        --width-cloth: calc(100% - 20px);
    }
    .cloth-landing .title-cloth {
        font-size: 22px;
    }
    .cloth-landing .text-cloth {
        font-size: 14px;
    }
    .cloth-landing .subtitle-cloth {
        font-size: 20px;
    }
}
/* product---------------------------------------------------------------------------------------- */
.product-cloth {
    display: flex;
    flex-direction: column;
}
.product-cloth__first {
    position: relative;
}
.product-cloth__first::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    margin-left: -50vw;
    background-color: #E1DEDE;
}
.product-cloth__wrap {
    background-color: #E1DEDE;
    background-image: url(/image/catalog/landings/cloth-category/product-bg.webp);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center right;
    padding: 202px 50px 120px 50px;
    z-index: 1;
}
.product-cloth__info {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 790px;
    width: 100%;
}
.product-cloth__info h2 {
    color: #1C1C1A;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.50);
    font-family: "Prosto One";
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.product-cloth__info h2 span {
    color: #BD9A5F;
}
.product-cloth__info p {
    color: #1C1C1A;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin: 0;
    max-width: 605px;
    width: 100%;
}
.product-cloth__img {
    display: none;
}
.product-cloth__second {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 40px 50px;
}
.product-cloth__second img {
    width: 100%;
    max-width: 334px;
}
.product-cloth__discription {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 875px;
    width: 100%;
}
.product-cloth__discription p {
    color: #1C1C1A;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
}
@media screen and (max-width: 1699px) {
    .product-cloth__wrap {
        padding: 193px 50px 120px 50px;
    }
    .product-cloth__info {
        max-width: 680px;
    }
    .product-cloth__info h2 {
        font-size: 40px;
    }
    .product-cloth__info p {
        max-width: 472px;
    }
    .product-cloth__discription {
        max-width: 688px;
    }
}
@media screen and (max-width: 1299px) {
    .product-cloth__wrap {
        padding: 190px 50px 80px 50px;
    }
    .product-cloth__info {
        gap: 60px;
    }
    .product-cloth__info p {
        max-width: 386px;
        font-size: 16px;
    }
    .product-cloth__second img {
        max-width: 272px;
    }
    .product-cloth__discription {
        max-width: 614px;
    }
    .product-cloth__discription p {
        font-size: 16px;
    }
}
@media screen and (max-width: 1199px) {
    .product-cloth__wrap {
        padding: 157px 30px 40px 30px;
        background-position: center right -50px;
    }
    .product-cloth__info {
        max-width: 620px;
        gap: 30px;
    }
    .product-cloth__info h2 {
        font-size: 36px;
    }
    .product-cloth__info p {
        max-width: 326px;
    }
    .product-cloth__second {
        padding: 40px 30px;
    }
    .product-cloth__discription {
        max-width: 514px;
    }
    .product-cloth__second img {
        max-width: 232px;
    }
}
@media screen and (max-width: 991px) {
    .product-cloth__first::after {
        content: none;
    }
    .product-cloth__wrap {
        background-color: transparent;
        background-image: none;
        padding: 0;
        display: flex;
        flex-direction: column-reverse;
    }
    .product-cloth__info {
        gap: 20px;
        max-width: 100%;
        padding: 40px 30px 0 30px;
    }
    .product-cloth__info h2 {
        font-size: 32px;
        gap: 2px;
    }
    .product-cloth__info p {
        max-width: 100%;
    }
    .product-cloth__img {
        display: block;
        background-color: #E1DEDE;
        background-image: url(/image/catalog/landings/cloth-category/product-bg.webp);
        background-repeat: no-repeat;
        background-size: auto 100%;
        background-position: center;
        height: 433px;
        position: relative;
    }
    .product-cloth__img::after {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 50%;
        width: 100vw;
        height: 100%;
        margin-left: -50vw;
        background-color: #E1DEDE;
    }
    .product-cloth__second {
        padding: 20px 30px;
    }
    .product-cloth__second img {
        display: none;
    }
    .product-cloth__discription {
        gap: 20px;
        max-width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .product-cloth__info {
        padding: 30px 20px 0 20px;
    }
    .product-cloth__info h2 {
        font-size: 28px;
        text-wrap: balance;
    }
    .product-cloth__img {
        height: 320px;
    }
    .product-cloth__second {
        padding: 20px;
    }
}
@media screen and (max-width: 567px) {
    .product-cloth__info {
        padding: 20px 10px 0 10px;
    }
    .product-cloth__info h2 {
        font-size: 22px;
    }
    .product-cloth__img {
        height: 55vw;
    }
    .product-cloth__second {
        padding: 20px 10px;
    }
    .product-cloth__info p {
        font-size: 14px;
    }
    .product-cloth__discription p {
        font-size: 14px;
    }
}
/* resistance--------------------------------------------------------------------------------------- */

.resistance-cloth {
    display: flex;
    justify-content: center;
    padding: 80px 50px;
}
.resistance-cloth__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    max-width: 1180px;
    width: 100%;
}
.resistance-cloth__info h2 {
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 1199px) {
    .resistance-cloth {
        padding: 60px 30px;
    }
    .resistance-cloth__info {
        gap: 30px;
    }
}
@media screen and (max-width: 767px) {
    .resistance-cloth {
        padding: 60px 20px 40px;
    }
    .resistance-cloth__info {
        gap: 20px;
    }
}
@media screen and (max-width: 567px) {
    .resistance-cloth {
        padding: 60px 10px 40px;
    }
}
/* caps--------------------------------------------------------------------------------------------- */
.caps-cloth {
    padding: 126px 50px 100px 50px;
    background-color: #1C1C1A;
    background-image: url(/image/catalog/landings/cloth-category/caps.webp);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center right 50px;
    position: relative;
}
.caps-cloth::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    margin-left: -50vw;
    background-color: #1C1C1A;
}
.caps-cloth__wrap {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 740px;
    width: 100%;
}
.caps-cloth__info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.caps-cloth__info h2 {
    display: flex;
    flex-direction: column;
}
.caps-cloth__info h2 span {
    color: #BD9A5F;
}
.caps-cloth__info .text-cloth {
    color: #FFF;
    text-align: justify;
}
.caps-cloth__info p a {
    font-weight: 700;
    text-decoration: underline;
    color: #BD9A5F;
}
.caps-cloth__wrap ul {
    display: flex;
    flex-direction: column;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.caps-cloth__wrap ul li {
    padding: 30px;
    border-radius: 16px;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.07) 100%);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: start;
    gap: 20px;
}
.caps-cloth__wrap ul li::before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 4px;
    background-color: #BD9A5F;
    transform: rotate(45deg);
    display: flex;
    flex-shrink: 0;
    margin: 5px 0 0 0;
}
.caps-cloth__wrap ul li .text-cloth {
    color: #FFF;
    text-align: justify;
}
.caps-cloth__wrap ul li p b {
    font-weight: 700;
}

@media screen and (max-width: 1699px) {
    .caps-cloth {
        padding: 116px 50px 60px 50px;
        background-position: center right;
    }
    .caps-cloth__wrap {
        max-width: 580px;
    }
}
@media screen and (max-width: 1299px) {
    .caps-cloth {
        padding: 110px 50px 60px 50px;
    }
    .caps-cloth__wrap {
        gap: 60px;
        max-width: 614px;
    }
    .caps-cloth__info {
        gap: 30px;
    }
    .caps-cloth__wrap ul {
        gap: 30px;
    }
}
@media screen and (max-width: 1199px) {
    .caps-cloth {
        padding: 110px 30px 50px 30px;
    }
    .caps-cloth__wrap {
        max-width: 514px;
    }
    .caps-cloth__wrap ul li {
        padding: 20px;
    }
}
@media screen and (max-width: 991px) {
    .caps-cloth {
        padding: 60px 30px 602px 30px;
        background-size: 557px auto;
        background-position: center bottom;
    }
    .caps-cloth__wrap {
        gap: 40px;
        max-width: 100%;
    }
    .caps-cloth__info {
        gap: 20px;
    }
    .caps-cloth__wrap ul {
        gap: 20px;
    }
}
@media screen and (max-width: 767px) {
    .caps-cloth {
        padding: 40px 20px 446px 20px;
        background-size: 414px auto;
    }
}
@media screen and (max-width: 567px) {
    .caps-cloth {
        padding: 40px 10px 353px 10px;
        background-size: 320px auto;
    }
    .caps-cloth__wrap ul li::before {
        width: 12px;
        height: 12px;
        border-radius: 3px;
        margin: 4px 0 0 0;
    }
}
/* bags--------------------------------------------------------------------------------------------- */
.bags-cloth {
    padding: 126px 50px 100px 50px;
    background-color: #111;
    background-image: url(/image/catalog/landings/cloth-category/bags.webp);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center left 50px;
    position: relative;
    display: flex;
    justify-content: end;
}
.bags-cloth::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    margin-left: -50vw;
    background-color: #111;
}
.bags-cloth__wrap {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 740px;
    width: 100%;
}
.bags-cloth__info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.bags-cloth__info h2 {
    display: flex;
    flex-direction: column;
}
.bags-cloth__info h2 span {
    color: #BD9A5F;
}
.bags-cloth__info .text-cloth {
    color: #FFF;
    text-align: justify;
}
.bags-cloth__info p a {
    font-weight: 700;
    text-decoration: underline;
    color: #BD9A5F;
}
.bags-cloth__wrap ul {
    display: flex;
    flex-direction: column;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.bags-cloth__wrap ul li {
    padding: 30px;
    border-radius: 16px;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.07) 100%);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: start;
    gap: 20px;
}
.bags-cloth__wrap ul li::before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 4px;
    background-color: #BD9A5F;
    transform: rotate(45deg);
    display: flex;
    flex-shrink: 0;
    margin: 5px 0 0 0;
}
.bags-cloth__wrap ul li .text-cloth {
    color: #FFF;
    text-align: justify;
}
.bags-cloth__wrap ul li p b {
    font-weight: 700;
}

@media screen and (max-width: 1699px) {
    .bags-cloth {
        padding: 116px 50px 60px 50px;
        background-position: center left;
    }
    .bags-cloth__wrap {
        max-width: 580px;
    }
}
@media screen and (max-width: 1299px) {
    .bags-cloth {
        padding: 110px 50px 60px 50px;
        background-position: center left -40px;
    }
    .bags-cloth__wrap {
        gap: 60px;
        max-width: 614px;
    }
    .bags-cloth__info {
        gap: 30px;
    }
    .bags-cloth__wrap ul {
        gap: 30px;
    }
}
@media screen and (max-width: 1199px) {
    .bags-cloth {
        padding: 94px 30px 50px 30px;
    }
    .bags-cloth__wrap {
        max-width: 514px;
    }
    .bags-cloth__wrap ul li {
        padding: 20px;
    }
}
@media screen and (max-width: 991px) {
    .bags-cloth {
        padding: 60px 30px 602px 30px;
        background-size: 557px auto;
        background-position: center bottom;
    }
    .bags-cloth__wrap {
        gap: 40px;
        max-width: 100%;
    }
    .bags-cloth__info {
        gap: 20px;
    }
    .bags-cloth__wrap ul {
        gap: 20px;
    }
}
@media screen and (max-width: 767px) {
    .bags-cloth {
        padding: 40px 20px 446px 20px;
        background-size: 414px auto;
    }
}
@media screen and (max-width: 567px) {
    .bags-cloth {
        padding: 40px 10px 353px 10px;
        background-size: 320px auto;
    }
    .bags-cloth__wrap ul li::before {
        width: 12px;
        height: 12px;
        border-radius: 3px;
        margin: 4px 0 0 0;
    }
}
/* standards------------------------------------------------------------------------------- */
.standards-cloth {
    position: relative;
    background-color: #1C1C1A;
    padding: 120px 50px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.standards-cloth::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    margin-left: -50vw;
    background-color: #1C1C1A;
}
.standards-cloth__info {
    max-width: 992px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.standards-cloth__info .title-cloth {
    color: #FFF;
}
.standards-cloth__info .text-cloth {
    color: #FFF;
}
.standards-cloth ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.standards-cloth ul li {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.00) 100%);
}
.standards-cloth ul li img {
    max-width: 100px;
    width: 100%;
}
.standards-cloth__discription {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.standards-cloth__discription h3 {
    color: #FFF;
    font-family: "Open Sans";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    text-transform: uppercase;
    margin: 0;
}
.standards-cloth__discription .text-cloth {
    color: #FFF;
}

@media screen and (max-width: 1699px) {
    .standards-cloth {
        padding: 120px 0;
    }
    .standards-cloth__info {
        max-width: 846px;
    }
    .standards-cloth ul {
        gap: 20px;
    }
}
@media screen and (max-width: 1299px) {
    .standards-cloth__info {
        max-width: 743px;
    }
    .standards-cloth__discription h3 {
        font-size: 24px;
    }
}
@media screen and (max-width: 1199px) {
    .standards-cloth {
        padding: 100px 0;
        gap: 60px;
    }
    .standards-cloth__info {
        gap: 30px;
    }
    .standards-cloth ul {
        gap: 10px;
    }
    .standards-cloth ul li {
        gap: 30px;
        padding: 30px 20px;
        border-radius: 14px;
    }
    .standards-cloth ul li img {
        max-width: 80px;
    }
    .standards-cloth__discription h3 {
        font-size: 20px;
    }
}
@media screen and (max-width: 991px) {
    .standards-cloth ul {
        grid-template-columns: repeat(2, 1fr);
    }
    .standards-cloth ul li:nth-child(3) {
        grid-area: 2 / 1 / 3 / 3;
    }
}
@media screen and (max-width: 767px) {
    .standards-cloth {
        padding: 80px 20px;
        gap: 40px;
    }
    .standards-cloth__info {
        gap: 20px;
    }
    .standards-cloth ul {
        display: flex;
        flex-direction: column;
    }
    .standards-cloth ul li {
        padding: 20px;
    }
}
@media screen and (max-width: 567px) {
    .standards-cloth {
        padding: 60px 10px;
    }
    .standards-cloth ul li img {
        max-width: 60px;
    }
    .standards-cloth__discription h3 {
        font-size: 18px;
    }
    .standards-cloth ul li {
        gap: 20px;
    }
    .standards-cloth__discription {
        gap: 10px;
    }
}
/* philosophy--------------------------------------------------------------------------------------- */
.philosophy-cloth {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    padding: 0 0 80px 0;
    position: relative;
    background-color: #1C1C1A;
}
.philosophy-cloth::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    margin-left: -50vw;
    background-color: #1C1C1A;
}
.philosophy-cloth__info {
    max-width: 1180px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}
.philosophy-cloth__info .title-cloth {
    color: #FFF;
    display: flex;
    flex-direction: column;
}
.philosophy-cloth__info .text-cloth {
    color: #FFF;
    max-width: 970px;
}
.philosophy-cloth__wrap {
    width: 100%;
    display: flex;
    justify-content: end;
    padding: 79px 50px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.philosophy-cloth__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.philosophy-cloth__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}
.philosophy-cloth__img img.active {
    opacity: 1;
}
.construction-grifon__slider {
    max-width: 800px;
    width: 100%;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #FFF;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.30) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    z-index: 1
}
.construction-swiper {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.construction-slide {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.construction-slide h3 {
    color: #FFF;
    font-family: "Open Sans";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    text-transform: uppercase;
    margin: 0;
}
.construction-slide .text-cloth {
    color: #FFF;
}
.construction-slide .subtitle-grifon {
    text-transform: uppercase;
    line-height: 120%;
}
.construction-swiper .navline {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    z-index: 5;
    pointer-events: auto;
    padding: 6px 9px;
}
.construction-swiper .navline__btn {
    width: 48px;
    height: 48px;
    border: 2px solid #BD9A5F;
    border-radius: 12px;
    background: transparent;
    transform: rotate(45deg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    cursor: pointer;
    flex-shrink: 0;
}
 .construction-swiper .navline__btn:hover {
    box-shadow: 0 0 0 4px rgba(213, 155, 56, .16);
    background: #BD9A5F;
}
.construction-swiper .navline__btn:active {
    background: rgba(213, 155, 56, .08);
}
.construction-swiper .navline__btn-ic {
    width: 14px;
    height: 14px;
    position: relative;
    transform: rotate(-45deg);
}
.construction-swiper .navline__btn-ic::before {
    content: "";
    position: absolute;
    inset: 0;
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-color: #BD9A5F;
    transform: translateX(2px) rotate(135deg);
}
.construction-swiper .navline__btn:hover .navline__btn-ic::before {
    border-color: #FFF;
}
.construction-swiper .navline__btn--next .navline__btn-ic::before {
    transform: translateX(-2px) rotate(-45deg);
}
.construction-swiper .navline__num {
    font-family: "Prosto One";
    font-weight: 400;
    font-size: 18px;
    letter-spacing: .06em;
    color: #FFF;
    user-select: none;
    min-width: 30px;
}
.construction-swiper .navline__num--current {
    color: #BD9A5F;
    text-align: center;
    font-family: "Prosto One";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    min-width: 66px;
}
.construction-swiper .navline__dash {
    width: 100%;
    max-width: 220px;
    height: 2px;
    background: rgba(255, 255, 255, .22);
    display: inline-block;
    transform: translateY(1px);
}
.construction-dots {
    display: none;
}
@media screen and (max-width: 1699px) {
    .philosophy-cloth__wrap {
        padding: 66px 50px;
    }
    .construction-grifon__slider {
        max-width: 688px;
    }
    .construction-swiper {
        gap: 60px;
    }
    .construction-swiper .navline__num--current {
        font-size: 36px;
        min-width: 60px;
    }
    .construction-swiper .navline__dash {
        max-width: 148px;
    }
}
@media screen and (max-width: 1299px) {
    .philosophy-cloth__wrap {
        padding: 79px 50px;
    }
    .philosophy-cloth__img img {
        object-position: 25%;
    }
    .construction-grifon__slider {
        max-width: 614px;
    }
    .construction-swiper .navline__dash {
        max-width: 115px;
    }
}
@media screen and (max-width: 1199px) {
    .philosophy-cloth {
        gap: 60px;
        padding: 0 0 60px 0;
    }
    .philosophy-cloth__info {
        padding: 0 30px;
        gap: 30px;
    }
    .philosophy-cloth__wrap {
        padding: 50px 30px;
    }
    .construction-grifon__slider {
        padding: 30px;
        max-width: 514px;
    }
    .construction-slide {
        gap: 20px;
    }
    .construction-slide h3 {
        font-size: 20px;
    }
    .construction-swiper .navline__dash {
        max-width: 84px;
    }
    .construction-swiper .navline__num--current {
        font-size: 32px;
        min-width: 60px;
    }
}
@media screen and (max-width: 991px) {
    .philosophy-cloth__wrap {
        padding: 300px 30px 30px 30px;
    }
    .philosophy-cloth__img {
        background-color: #010101;
    }
    .philosophy-cloth__img::after {
        content: "";
        width: 100%;
        height: 372px;
        position: absolute;
        bottom: 0;
        left: 0;
        border-radius: 0 0 14px 14px;
        background: linear-gradient(0deg, #000 82.79%, rgba(0, 0, 0, 0.00) 100%);
    }
    .philosophy-cloth__img img {
        object-position: left;
        height: 375px;
    }
    .construction-grifon__slider {
        max-width: 100%;
    }
    .construction-swiper .navline {
        gap: 20px;
    }
    .construction-swiper .navline__dash {
        max-width: 214px;
        height: 1px;
    }
}
@media screen and (max-width: 767px) {
    .philosophy-cloth {
        gap: 40px;
        padding: 0 0 40px 0;
    }
    .construction-grifon__slider {
        padding: 20px;
    }
    .construction-swiper {
        gap: 40px;
    }
    .philosophy-cloth__info {
        padding: 0 20px;
        gap: 20px;
    }
    .philosophy-cloth__wrap {
        padding: 220px 20px 20px 20px;
        border-radius: 16px;
    }
    .philosophy-cloth__img::after {
        height: 350px;
        bottom: auto;
        top: 200px;
    }
    .philosophy-cloth__img img {
        height: 278px;
    }
}
@media screen and (max-width: 567px) {
    .philosophy-cloth__info {
        padding: 0 10px;
    }
    .philosophy-cloth__wrap {
        padding: 220px 10px 20px 10px;
    }
    .construction-slide h3 {
        font-size: 18px;
    }
    .construction-swiper .navline {
        padding: 6px 9px;
        justify-content: center;
    }
    .construction-swiper .navline__btn,
    .construction-swiper .navline__num {
        display: none;
    }
    .construction-swiper .navline__dash {
        display: none;
    }
    .construction-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
    }
    .construction-dots .swiper-pagination-bullet {
        width: 20px;
        height: 5px;
        border-radius: 3px;
        background-color: #FFF;
        opacity: 1;
        margin: 0;
    }
    .construction-dots .swiper-pagination-bullet-active {
        background-color: #BD9A5F;
    }
    .construction-grifon .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0;
    }
}
/* faq----------------------------------------------------------------------------------------------------- */

.faq-rings {
    display: flex;
    justify-content: center;
    padding: 0 50px;
    margin: 120px 0 0 0;
}
.faq-rings .title-knives {
    color: #111;
}
.faq-rings .title-rings {
    color: #1C1C1A;
}
.faq-rings__wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
}
.faq-rings__accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.faq-rings__item {
    overflow: hidden;
    border-radius: 10px;
    background: #F7F7F7;
    transition: all 0.3s ease;
}
.faq-rings__item:hover {
    background: #F2F2F5;
}
.faq-rings__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-rings__title {
    color: #111;
    font-family: "Open Sans";
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-align: start;
    margin: 0;
    text-transform: uppercase;
}
.faq-rings__icon {
    position: relative;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
    background-image: url(/image/catalog/landings/cloth-category/faq-arr.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-shrink: 0;
}
.faq-rings__header[aria-expanded="true"] .faq-rings__icon {
    transform: rotate(180deg);
}
.faq-rings__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-rings__body {
    padding: 0 70px 20px 20px;
    color: #111;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.faq-rings__body a {
   color: #BD9A5F;
   text-decoration: underline;
   font-weight: 700; 
}
.faq-rings__header[aria-expanded="true"] + .faq-rings__content {
    max-height: 700px;
}
.faq-rings__item:first-child .faq-rings__content {
    max-height: none;
}
@media screen and (max-width: 1199px) {
    .faq-rings {
        padding: 0 30px;
        margin: 100px 0 0 0;
    }
    .faq-rings__wrapper {
        gap: 30px;
    }
    .faq-rings__title {
        font-size: 26px;
    }
    .faq-rings__header {
        gap: 50px;
    }
}
@media screen and (max-width: 767px) {
    .faq-rings {
        padding: 0 20px;
        margin: 80px 0 0 0;
    }
    .faq-rings__header {
        gap: 20px;
    }
    .faq-rings__title {
        font-size: 20px;
    }
}
@media screen and (max-width: 567px) {
    .faq-rings {
        padding: 0 10px;
        margin: 60px 0 0 0;
    }
    .faq-rings__body {
        padding: 0 40px 20px 20px;
        font-size: 14px;
    }
    .faq-rings__title {
        font-size: 16px;
    }
}
@media screen and (max-width: 380px) {
    .faq-rings__header {
        gap: 10px;
    }
}