* {
    --main-green: #344521;
    --text-color: black;
    --text-color-footer: white;
    font-family: 'Alegreya', sans-serif;
}

body {
    background-color: #F3EFE9;
    padding: 0;
    margin: 0;

}

.caption {
    text-align: center;
    width: 100%;
    font-size: 48px;
    margin: 26px auto;
    font-family: 'FoglihtenNo06', sans-serif;
}

.hide-fullscreen {
    display: none;
}

body.content {
    padding: 0 16px;
}

header {
    width: calc(100% - 80px);
    margin: 77px 40px 0 40px;
    display: flex;

    & .logo {
        min-height: 67px;
        margin-right: 69px;
        font-size: 64px;
        font-family: 'FoglihtenNo06', sans-serif;
        /*text-transform: uppercase;*/
        text-decoration: none;
        color: #344521;
    }

    & nav {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;

        & a {
            text-decoration: none;
            font-size: 32px;
            color: black;
            font-family: 'Alegreya', sans-serif;
        }
    }

    & .menu-toggle svg path {
        stroke: #344521;
    }

}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #F3EFE9;
    transform: translateX(-100%);
    transition: transform .3s ease-in-out;
    overflow: hidden;
    z-index: 9999;

    & .top {
        height: 22px;
        margin: 17px 16px;
        display: flex;
        justify-content: end;

        & .menu-toggle svg path {
            stroke: #344521;
        }
    }

    & nav {
        width: fit-content;
        height: 80%;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;

        & a {
            text-decoration: none;
            font-family: 'Alegreya', sans-serif;
            font-size: 36px;
            color: black;
            position: relative;
            border-bottom: 1px black solid;
            width: 100%;
            text-align: center;
            padding: 5px 0 16px 0;

            &:last-of-type {
                border: none;
            }
        }
    }
}

.menu.open {
    transform: translateX(0);


}

body.menu-open {
    overflow: hidden;
    height: 100vh;
}

.content {
    width: calc(100% - 80px);
    margin: 0 40px;

    & .main_1 {
        margin: 18px auto 0 auto;
        width: 100%;
    }

    & .main_about_me {
        margin: 26px auto 0 auto;
        width: 100%;
    }

    & .your_attention {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: calc(100% - 160px - 160px);
        margin: 0 160px;

        & .caption {
            text-align: center;
            width: 100%;
            font-size: 48px;
            font-family: 'FoglihtenNo06', sans-serif;
        }

        & img {
            width: 100%;
        }
    }

    & .products {


        & .product {
            display: flex;
            justify-content: space-between;
            border-radius: 30px;
            overflow: hidden;
            margin-bottom: 26px;

            &.product1 {
                background-color: var(--main-green);
                color: white;

                .right {
                    & img {
                        margin: 0 51px -5px 0;
                        width: 316px;
                        height: 345px;
                    }
                }
            }

            &.product2 {
                background-color: #E9B3BA;
                color: black;

                .right {
                    & img {
                        margin: auto 0;
                        width: 360px;
                        height: 206px;
                        margin-right: 30px;
                    }
                }
            }

            .left {
                width: 100%;
                margin: 17px 0 27px 46px;
            }

            .right {
                width: fit-content;
                display: flex;
                flex-direction: column;
                justify-content: end;
            }

            & .caption {
                font-family: 'Alegreya', sans-serif;
                text-align: left;
                font-size: 40px;
                margin: 0;
                font-weight: 700;
            }

            & .description {
                font-family: 'Alegreya', sans-serif;
                font-size: 32px;
                font-weight: 700;

                &.short {
                    margin-top: 5px;
                    font-weight: 500;

                }

                &.long {
                    margin-bottom: 20px;
                    font-weight: 500;
                }
            }

            & .btn {
                width: 282px;
                height: 64px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 20px;
                font-family: 'Alegreya', sans-serif;
                font-size: 32px;
                font-weight: 400;
                text-decoration: none;
                color: black;
                background-color: white;
            }
        }
    }

    & .faq {

        & ul {
            list-style: none;
            padding: 0;

            & li {
                font-family: 'Alegreya', sans-serif;
                font-size: 32px;
                font-weight: 700;
                margin-bottom: 10px;
                display: flex;
                align-items: center;

                &:last-of-type {
                    margin-bottom: 0;
                }

                & summary {
                    list-style: none;
                    display: flex;
                    align-items: center;
                }

                & p {
                    font-size: 32px;
                    font-family: 'Alegreya', sans-serif;
                    font-weight: 400;
                }

                & img {
                    margin-right: 15px;
                }
            }
        }
    }

    & .feedback {


        & .feed_body {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;

            & .arrow {
                height: 16px;
            }

            & .feed img {
                display: none;
                width: 100%;

                &.active {
                    display: block;
                }

            }
        }
    }

    & .contacts {

        & .body {
            display: flex;
            align-items: center;
            justify-content: center;

            & .photo {
                position: relative;
                width: min(600px, 100%);

                & .blank {
                    width: 100%;
                }

                & .block {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    position: absolute;
                    bottom: 0;
                    width: 100%;
                    height: 65%;

                    & .contact {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;

                        text-decoration: none;
                        color: #344521;

                        & p {
                            margin: 0 20px;
                            font-size: min(48px, 200%);
                            font-family: 'FoglihtenNo06', sans-serif;
                        }

                        & .instagram {
                            margin-bottom: 40px;

                        }

                        & .telegram {

                        }
                    }

                }


            }
        }

    }
}

.menstruation {
    & header {
        & .logo {
            color: #D03B34;
        }
    }

    & footer {
        background-color: #D03B34;
    }

    & .start {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        & .caption {
            font-size: 96px;
        }

        & .subcaption {
            font-size: 40px;
            max-width: 1100px;
            text-align: center;
            width: 100%;
            margin: -10px auto 0 auto;
        }

        & img {
            width: 100%;
            max-width: 900px;
            margin: 26px auto 0 auto;
        }

        & button {
            width: 530px;
            height: 70px;
            border-radius: 35px;
            margin-top: 32px;
            background-color: #D03B34;
            border: none;
            color: white;
            font-family: 'Alegreya', sans-serif;
            font-size: 40px;
        }

    }

    & .faza {
        margin: 32px auto 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;

        & img {
            width: 1020px;
            height: 830px;
        }
    }

    & .programs {
        & .program {
            display: flex;
            flex-direction: row;
            align-items: center;
            margin-bottom: 39px;
            cursor: pointer;

            &.active {
                align-items: start;
                margin-bottom: 13px;

                & .description {
                    display: block;
                }
            }

            & img {
                width: 240px;
                height: 60px;
                margin: 0 12px 0 40px;
            }

            & .title {
                font-size: 32px;
            }

            & .description {
                font-size: 32px;
                display: none;
                margin-top: 42px;
            }
        }
    }

    & .plans {
        display: flex;
        justify-content: space-between;

        & .plan {
            width: 550px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            background-color: #D03B34;
            color: white;
            border-radius: 30px;
            overflow: hidden;

            .top {
                & .caption {
                    width: 100%;
                    font-size: 36px;
                    margin: 26px 0 0 0;
                }

                & ul {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    width: 480px;
                    margin: 0 auto;

                    & li {
                        font-size: 30px;
                    }
                }
            }

            & .bottom {
                & .price {
                    text-align: center;
                    font-size: 48px;
                    font-family: 'Alegreya', sans-serif;
                    font-weight: 400;

                    &:nth-of-type(2) {
                        margin-top: -25px;
                    }
                }

                & button {
                    font-size: 40px;
                    font-family: 'Alegreya', sans-serif;
                    font-weight: 400;
                    position: relative;
                    width: 300px;
                    height: 68px;
                    border-radius: 35px;
                    outline: none;
                    border: none;
                    margin-bottom: 33px;
                    color: black;
                }

            }


            & .shadow {
                position: absolute;
                width: 100%;
                height: 100%;
                top: -9px;
                right: -9px;
                background-color: #B0B0A6;
                z-index: -1;
                border-radius: 39px;


            }
        }
    }

    & .doubts {
        width: 100%;

        & .caption {
            margin: 28px 0 0 0;
        }

        & .subcaption {
            width: 100%;
            text-align: center;
            font-size: 30px;

            & span {
                color: #D03B34;

            }
        }

        & .list {
            display: flex;
            justify-content: space-between;
            width: 100%;
            margin-top: 30px;

            & .item {
                background-color: #E9B3BA;
                border-radius: 30px;
                padding: 30px;
                width: 30%;
                max-width: 536px;
                font-size: 32px;
            }
        }

        & .button {
            background-color: #D03B34;
            color: white;
            font-family: 'Alegreya', sans-serif;
            font-size: 40px;
            font-weight: 400;
            border-radius: 35px;
            margin: 30px auto 30px auto;
            width: 300px;
            text-align: center;
        }
    }
}


footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    width: calc(100% - 80px);
    min-height: 290px;
    background-color: var(--main-green);

    & a {
        text-decoration: none;
        color: white;
        font-family: 'Alegreya', sans-serif;
        font-size: 32px;
    }

    & .logo {

    }

    & nav {
        display: flex;
        flex-direction: column;
    }

    & .privacy-policy {

    }

    & .media {
        display: flex;
        flex-direction: column;
    }
}

.guts {
    & .start {
        display: flex;
        flex-direction: column;
        justify-content: center;

        & .caption {
            font-size: 96px;
            margin: 0;

            &:first-of-type {
                margin-top: 70px;
            }
        }

        & .subcaption {
            text-align: center;
            font-size: 40px;
            color: #344521;
        }

        & img {
            width: 100%;
            max-width: 750px;
            margin: 0 auto;
        }
    }

    & .guts-important {
        margin-top: 45px;

        & .info {

            font-size: 32px;
            padding: 18px 18px calc(18px + 40px) 18px;
            background-color: #EBB7B6;
            border-radius: 30px;
            text-align: center;

        }

        & .btn {
            height: 75px;
            font-size: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #344521;
            width: 40%;
            color: white;
            border-radius: 30px;
            margin: auto;
            margin-top: -40px;
        }
    }

    & .inside {
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        background-color: #344521;
        padding: 38px;

        & div {
            width: calc(100% - 38px - 38px);
            max-width: 800px;
            background-color: #EBB7B6;
            margin-bottom: 30px;
            padding: 10px;
            border-radius: 30px;
            text-align: center;
            font-size: 32px;

        }
    }

    & .who {
        & .row {
            display: flex;
            flex-direction: row;

            & .block {
                background-color: #EBB7B6;
                border-radius: 30px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 15px 35px;
                width: 100%;
                margin-top: 20px;
                text-align: center;
                font-size: 32px;

                & img {
                    width: 165px;
                    height: 165px;
                }

                &:first-of-type {
                    margin-right: 10px;
                }

                &:last-of-type {
                    margin-left: 10px;
                }

                &:only-of-type {
                    margin-left: 0;
                    margin-right: 0;
                }
            }
        }
    }

    & .advantages {
        & .items {
            & .item {
                display: flex;
                flex-direction: row;
                font-size: 32px;
                align-items: center;
                color: white;
                background-color: #344521;
                margin-bottom: 40px;
                padding: 15px;
                border-radius: 30px;


                & .num {
                    font-family: 'FoglihtenNo06', sans-serif;
                    margin-right: 15px;
                    font-size: 64px;
                }
            }
        }
    }

    & .how-it-work {
        & .items {
            display: flex;

            & .item {
                border: 6px #EBB7B6 solid;
                border-radius: 30px;
                display: flex;
                flex-direction: column;
                align-items: center;
                padding: 10px 30px;
                margin: 0 10px;
                width: 100%;
                font-size: 32px;

                & img {
                    width: 125px;
                    height: 125px;
                    margin-bottom: 10px;
                }
            }

            & .item:nth-of-type(1) {
                & img {
                    width: 139px;
                    height: 149px;
                }
            }

            & .item:nth-of-type(2) {
                & img {
                    width: 100px;
                    height: 142px;
                }
            }

            & .item:nth-of-type(3) {
                & img {
                    width: 141px;
                    height: 142px;
                }
            }
        }
    }

    & .not-for-you {
        width: calc(min(800px, 100%) - 32px - 32px);
        margin: 0 auto;

        & .block {
            width: calc(100% - 32px - 32px);
            padding: 32px 32px 0 32px;
            border-radius: 30px;
            background-color: #EBB7B6;
            margin: 0 auto;


            & .caption {
                font-size: 40px;
                width: 100%;
                margin-bottom: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: bold;
                font-family: 'Alegreya', sans-serif;

                & img {
                    width: 50px;
                    height: 50px;
                    padding-bottom: 10px;
                    margin-right: 20px;
                }
            }

            & ul {
                padding: 0 30px calc(32px + 40px) 92px;
                margin: 0;

                & li {
                    font-size: 32px;
                    font-family: 'Alegreya', sans-serif;
                }
            }

        }

        & a {
            text-decoration: none;
        }

        & .btn {
            margin-top: -40px;
            font-size: 48px;
            border-radius: 30px;
            background-color: #344521;
            color: white;
            text-align: center;
            width: fit-content;
            padding: 0 40px;
            margin: -40px auto 0 auto;
        }

        & .info {
            font-family: 'Alegreya', sans-serif;
            font-weight: 700;
            font-size: 40px;
            text-align: center;
            margin-top: 60px;
        }
    }

    & .feedback {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .caption {
        font-size: 20px;
        margin: 20px auto;
    }

    .hide-mobile {
        display: none;
    }

    .hide-fullscreen {
        display: block;
    }

    header {
        width: calc(100% - 32px);
        margin: 11px 0 0 16px;
        justify-content: space-between;
        align-items: center;

        & .logo {
            font-size: 36px;
            min-height: auto;
        }

        & nav {
            display: none;
        }

        & .menu-toggle {
            height: 21px;
            padding-bottom: 10px;
        }
    }

    .content {
        width: calc(100% - 20px);
        margin: 0 10px;

        & .main_1 {
            margin: 18px auto 0 auto;
            width: 100%;
        }

        & .your_attention {
            width: 100%;
            margin: 0;

            & .caption {
                margin-top: 17px;
                font-size: 20px;
            }
        }

        & .products {

            & .product {
                margin-bottom: 17px;

                &.product1 {

                    .right {
                        & img {
                            width: 121%;
                            height: auto;
                            margin: 0 -20px;
                        }
                    }
                }

                &.product2 {

                    .right {
                        & img {
                            width: 210px;
                            height: 115px;
                        }
                    }
                }

                .left {
                    margin: 45px 0 36px 29px;
                }

                .right {
                }

                & .caption {
                    font-size: 20px;
                    margin-bottom: 17px;
                }

                & .description {

                    &.short {
                        font-size: 15px;
                        margin-bottom: 21px;
                    }

                    &.long {
                        display: none;
                    }
                }

                & .btn {
                    border-radius: 20px;
                    font-size: 15px;
                    height: 37px;
                    width: 140px;
                }
            }
        }

        & .faq {

            & ul {

                & li {
                    font-size: 15px;

                    &:last-of-type {
                    }

                    & p {
                        font-size: 15px;
                        margin-top: 5px;
                    }

                    & img {
                        margin: 0 5px 0 0;
                    }
                }
            }
        }

        & .feedback {

            & .feed_body {


                & .arrow {
                    width: 38px;
                }

                & .feed img {
                    display: none;
                    width: 100%;

                    &.active {
                        display: block;
                    }

                }
            }
        }

        & .contacts {
            margin-bottom: 20svh;
        }
    }

    .menstruation {
        & header {
            & .menu-toggle svg path {
                stroke: #D03B34;
            }
        }

        & .menu {
            & .menu-toggle svg path {
                stroke: #D03B34;
            }
        }

        & .start {

            & .caption {
                margin-top: 8px;
                font-size: 40px;
            }

            & .subcaption {
                font-size: 20px;
                width: 100%;
                margin: 8px auto 0 auto;
            }

            & img {
                width: 100%;
                max-width: 400px;
                margin: 8px auto 0 auto;
            }

            & button {
                width: 250px;
                height: 38px;
                margin-top: 8px;
                font-size: 20px;
            }
        }

        & .faza {
            margin: 8px auto 0 auto;

            & img {
                width: 330px;
                height: 260px;
            }
        }

        & .programs {
            & .program {
                margin-bottom: 52px;

                & img {
                    width: 60px;
                    height: 15px;
                    margin: 0 8px 0 16px;
                }

                & .title {
                    font-size: 15px;
                }

                & .description {
                    font-size: 15px;
                    margin-top: 17px;
                }
            }
        }

        & .plans {
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            & .plan {
                width: calc(100% - 9px);
                height: fit-content;
                margin-bottom: 37px;

                &:last-of-type {
                    margin-bottom: 0;
                }

                .top {
                    & .caption {
                        width: 100%;
                        font-size: 24px;
                        margin: 20px 0 0 0;
                    }

                    & ul {
                        width: 100%;
                        height: fit-content;
                        margin: 20px auto 10px auto;

                        & li {
                            font-size: 20px;
                            width: 85%;
                        }
                    }
                }

                & .bottom {
                    & .price {
                        text-align: center;
                        font-size: 48px;
                        font-family: 'Alegreya', sans-serif;
                        font-weight: 400;
                        margin-bottom: 20px;

                        &:nth-of-type(2) {
                            margin-top: -35px;
                        }
                    }

                    & button {
                        font-size: 32px;
                        font-family: 'Alegreya', sans-serif;
                        font-weight: 400;
                        position: relative;
                        width: 220px;
                        height: 51px;
                        border-radius: 35px;
                        outline: none;
                        border: none;
                        margin-bottom: 33px;

                    }

                }

            }
        }

        & .doubts {
            width: 100%;

            & .caption {
                margin: 28px 0 0 0;
                font-size: 24px;
            }

            & .subcaption {
                font-size: 20px;

                & span {
                    color: #D03B34;

                }
            }

            & .list {
                display: flex;
                justify-content: center;
                flex-direction: column;
                width: 100%;
                margin-top: 20px;

                & .item {
                    background-color: #E9B3BA;
                    border-radius: 30px;
                    padding: 6px 55px;
                    width: calc(100% - 110px);
                    max-width: 536px;
                    font-size: 20px;
                    margin-bottom: 20px;
                }
            }

            & .button {
                background-color: #D03B34;
                color: white;
                font-family: 'Alegreya', sans-serif;
                font-size: 20px;
                font-weight: 400;
                border-radius: 35px;
                margin: 30px auto 30px auto;
                width: 250px;
                text-align: center;
                padding: 6px;
            }
        }
    }

    .guts {
        & .start {

            & .caption {
                font-size: 24px;

                &:first-of-type {
                    margin-top: 10px;
                }
            }

            & .subcaption {
                font-size: 15px;
            }
        }

        & .guts-important {
            margin-top: 22px;

            & .info {
                font-size: 15px;
                padding-bottom: 35px;
            }

            & .btn {
                height: 35px;
                font-size: 16px;
                margin-top: -18px

            }
        }

        & .inside {
            border-radius: 30px;
            padding: 17px 17px 0 17px;

            & div {
                width: calc(100% - 17px - 17px);
                font-size: 15px;
                margin-bottom: 17px;

            }
        }

        & .who {
            & .row {
                &:first-of-type {
                    & .block {
                        margin-top: 0;
                    }

                }
                & .block {

                    padding: 5px;
                    width: 100%;
                    margin-top: 20px;
                    text-align: center;
                    font-size: 12px;

                    & img {
                        width: 60px;
                        height: 60px;
                    }

                    &:first-of-type {
                        margin-right: 10px;
                    }

                    &:last-of-type {
                        margin-left: 10px;
                    }

                    &:only-of-type {
                        margin-left: 0;
                        margin-right: 0;
                        & span {
                            width: 60%;
                        }
                    }
                }
            }
        }

        & .advantages {
            & .items {
                & .item {
                    font-size: 15px;
                    margin-bottom: 18px;
                    & .num {
                        font-size: 32px;
                    }
                }
            }
        }

        & .how-it-work {
            & .items {
                display: flex;
                flex-direction: column;

                & .item {
                     width: calc(100% - 72px);

                    flex-direction: column;
                    align-items: center;
                    padding: 10px 30px;
                    margin: 0 0 13px 0;

                    font-size: 15px;

                    & img {
                        width: 125px;
                        height: 125px;
                        margin-bottom: 10px;
                    }
                }

                & .item:nth-of-type(1) {
                    & img {
                        width: 121px;
                        height: 130px;
                    }
                }

                & .item:nth-of-type(2) {
                    & img {
                        width: 90px;
                        height: 126px;
                    }
                }

                & .item:nth-of-type(3) {
                    & img {
                        width: 122px;
                        height: 124px;
                    }
                }
            }
        }

        & .not-for-you {
            width: calc(min(800px, 100%) - 32px - 32px);
            margin: 0 auto;

            & .block {
                width: calc(100% - 32px - 32px);
                padding: 32px 32px 0 32px;

                & .caption {
                    font-size: 15px;
                    & img {
                        width: 20px;
                        height: 20px;
                        padding-bottom: 0;
                        margin-right: 5px;
                    }
                }

                & ul {
                    padding: 0 30px calc(32px + 0px) 61px;
                    margin: 0;

                    & li {
                        font-size: 15px;
                    }
                }

            }

            & .btn {
                margin-top: -10px;
                font-size: 20px;
                border-radius: 30px;
                background-color: #344521;
                color: white;
                text-align: center;
                width: fit-content;
                padding: 5px 40px;
                margin: -20px auto 0 auto;
               font-family: 'FoglihtenNo06', sans-serif;
            }

            & .info {
                font-family: 'Alegreya', sans-serif;
                font-weight: 700;
                font-size: 15px;
                text-align: center;
                margin-top: 20px;
            }
        }

        & .feedback {
            margin-bottom: 50px;
        }
    }
}

@media only screen and (max-width: 1000px) {

    header {
        justify-content: space-between;
        align-items: center;

        & nav {
            display: none;
        }
    }

    .hide-mobile {
        display: none;
    }

    .hide-fullscreen {
        display: block;
    }

    & .menu-toggle {
        height: 40px;
    }
}