@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Bold.eot');
    src: local('Manrope Bold'), local('Manrope-Bold'),
    url('/fonts/Manrope-Bold.eot?#iefix') format('embedded-opentype'),
    url('/fonts/Manrope-Bold.woff2') format('woff2'),
    url('/fonts/Manrope-Bold.woff') format('woff'),
    url('/fonts/Manrope-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Semibold.eot');
    src: local('Manrope Semibold'), local('Manrope-Semibold'),
    url('/fonts/Manrope-Semibold.eot?#iefix') format('embedded-opentype'),
    url('/fonts/Manrope-Semibold.woff2') format('woff2'),
    url('/fonts/Manrope-Semibold.woff') format('woff'),
    url('/fonts/Manrope-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Regular.eot');
    src: local('Manrope Regular'), local('Manrope-Regular'),
    url('/fonts/Manrope-Regular.eot?#iefix') format('embedded-opentype'),
    url('/fonts/Manrope-Regular.woff2') format('woff2'),
    url('/fonts/Manrope-Regular.woff') format('woff'),
    url('/fonts/Manrope-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Light.eot');
    src: local('Manrope Light'), local('Manrope-Light'),
    url('/fonts/Manrope-Light.eot?#iefix') format('embedded-opentype'),
    url('/fonts/Manrope-Light.woff2') format('woff2'),
    url('/fonts/Manrope-Light.woff') format('woff'),
    url('/fonts/Manrope-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Thin.eot');
    src: local('Manrope Thin'), local('Manrope-Thin'),
    url('/fonts/Manrope-Thin.eot?#iefix') format('embedded-opentype'),
    url('/fonts/Manrope-Thin.woff2') format('woff2'),
    url('/fonts/Manrope-Thin.woff') format('woff'),
    url('/fonts/Manrope-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Medium.eot');
    src: local('Manrope Medium'), local('Manrope-Medium'),
    url('/fonts/Manrope-Medium.eot?#iefix') format('embedded-opentype'),
    url('/fonts/Manrope-Medium.woff2') format('woff2'),
    url('/fonts/Manrope-Medium.woff') format('woff'),
    url('/fonts/Manrope-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-ExtraBold.eot');
    src: local('Manrope ExtraBold'), local('Manrope-ExtraBold'),
    url('/fonts/Manrope-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('/fonts/Manrope-ExtraBold.woff2') format('woff2'),
    url('/fonts/Manrope-ExtraBold.woff') format('woff'),
    url('/fonts/Manrope-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}
:root {
    --main-color: #151414;
    --light-color: #F4F1E9;
    --light-green-color: #A9B488;
    --green-color: #5E7255;
    --beige-color: #DBC093;
    --dark-beige-color: #C89663;
    --light-beige-color: rgba(219, 192, 147, 0.57);
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

p {
    margin-bottom: 0;
}

strong  {
    font-weight: 600;
}

.main-color {
    color: var(--main-color)!important;
}

.light-color {
    color: var(--light-color)!important;
}

.bg-green {
    background: var(--green-color)!important;
}

.color-green {
    color: var(--green-color)!important;
}

.light-green-color {
    color: var(--light-green-color)!important;
}

.bg-beige {
    background: var(--beige-color)!important;
}

.bg-light-beige {
    background: var(--light-beige-color)!important;
}

.color-beige {
    color: var(--beige-color)!important;
}

.bg-dark-beige {
    background: var(--dark-beige-color)!important;
}

.color-dark-beige {
    color: var(--dark-beige-color)!important;
}

.bg-banner-light-green{
    background: #A9B488!important;
}

body {
    font-size: 16px;
    font-family: "Manrope", cursive;
    font-weight: 300;
    font-style: normal;
    color: var(--main-color);
    letter-spacing: -0.5px;
    line-height: 100%;
}

h1,h2 {
    font-weight: 600;
}

h2 {
    font-size: 22px;
}

p {
    font-weight: 300;
}

.btn-main {
    padding: 30px;
    border-radius: 100px;
    background: var(--green-color);
    display: inline-block;
    transition: .3s;
    color: var(--light-color);
    font-size: 16px;
    text-decoration: none;
    margin-top: 15px;
    font-weight: 500;
}

.btn-main span {
    display: inline-block;
    line-height: 90%;
}

.btn-main img {
    display: inline-block;
    padding-left: 10px;
}

.btn-main:hover img {
    display: inline-block;
    vertical-align:middle;
    cursor: pointer;
}

.btn-main:hover {
    padding: 25px;
    border-radius: 50px;
    background: var(--beige-color);
    display: inline-block;
    transition: .3s;
    color: var(--main-color);
    transform: translateY(-5px);
    cursor: pointer;
}

.wrap {
    overflow-x: hidden;
}

.offcanvas {
    background: #ffffff url('/img/icons/img-menu-bg.svg') right no-repeat !important;
    background-size: 50% !important;
}

.menu-social {
    padding: 0;
    padding-top: 15px;
    margin: 0;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-social li {
    display: inline-block;
}

.menu-social li a {
    display: block;
    padding-left: 8px;
    transition: .3s;
}

.menu-social li:first-child a {
    padding-left: 0;
}

.menu-social li a:hover {
    transform: translateY(-3px);
}

.menu-social-xs {
    width: 100%;
}

.nav-item .nav-link {
    font-size: 16px;
    transition: .3s;
    color: var(--main-color);
    padding-bottom: 20px ;
}

.nav-item .nav-link:hover {
    transform: translateY(-3px);
}

.navbar-nav.nav-items-light .nav-link {
    color: var(--main-color)!important;
}

.navbar-nav.nav-items-light .nav-link:hover {
   transform: translateY(-3px);
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--main-color);
}

.nav-link {
    letter-spacing: -0.5px;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon-dark {
    filter: invert(1)!important;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}
.navbar-toggler-icon:focus {
    box-shadow: none;
    border: none;
}
.offcanvas-header {
    margin-bottom: 30px;
}
.banner-wrap {
    position: relative;
    z-index: 0;
}

.banner {
    position: relative;
    z-index: 0;
}

.banner-wrap:before {
    content: '';
    position: absolute;
    top:15%;
    left: 5%;
    background: url('/img/icons/icon-flower-green-leafs.svg') no-repeat;
    background-size: cover;
    width: 40%;
    height: 40%;
    z-index: 0;
    transition: .4s;
    will-change: transform;
}

.banner-wrap:after {
    content: '';
    position: absolute;
    top:3%;
    left: 30%;
    background: url('/img/icons/icon-flower-green-lg.svg') no-repeat;
    background-size: cover;
    width: 70%;
    height: 60%;
    z-index: 0;
    transition: .7s;
    will-change: transform;
}

.banner-img {
    position: relative;
    z-index: 1;
    display: block;
}

.banner-img:before {
    content: '';
    position: absolute;
    bottom:-4%;
    left: -9%;
    background: url('/img/icons/icon-flower-green-lg-2.svg') no-repeat;
    background-size: cover;
    width: 40%;
    height: 40%;
    z-index: 0;
    will-change: transform;
    transition: .9s;
}

.banner-img:after {
    content: '';
    position: absolute;
    top:40%;
    left: 70%;
    background: url('/img/icons/icon-flower-green-leafs-short.svg') no-repeat;
    background-size: cover;
    width: 20%;
    height: 20%;
    z-index: -1;
    transform: rotate(13deg);
    will-change: transform;
    transition: 1s;
}

.banner-img img {
    position: relative;
    transition: .4s;
    display: block;
    transform: translate(0) rotateZ(0) perspective(1px);
    will-change: transform;
}

h1 {
    font-size: 30px;
    line-height: 110%;
}

.banner:hover:before {
    transform:  scale(1.1) rotate(5deg) translate(10px, 0) ;
}

.banner:hover .banner-wrap:before {
    transform: scale(1.15) rotate(-5deg) translate(-2px, -2px);
}

.banner:hover .banner-wrap:after {
    transform: scale(1.1) ;
}

.banner:hover .banner-img:before {
    transform: scale(1.10) rotate(-5deg) translate(-15px, -5px);
}

.banner:hover .banner-img:after {
    transform: scale(1.15) rotate(22deg) translate(10px, -5px);
}

.banner:hover .banner-img img {
    transform: scale(1.01) translateY(-3px);
}

.banner-text  p {
    color: var(--light-color);
    font-size: 16px;
    margin-top: 25px;
    letter-spacing: -0.5px;
    line-height: 130%;
    font-weight: 300;
    margin-bottom: 15px;
}

.banner-text h1 {
    font-weight: 600;
    font-size: 44px;
    letter-spacing: -1.2px;
    line-height: 90%;
}

.banner-text {
    margin-bottom: 40px;
    margin-top: 80px;
}

.banner-text-bauch p {
	 color: #000000;
    font-size: 16px;
    margin-top: 25px;
    letter-spacing: -0.5px;
    line-height: 130%;
    font-weight: 300;
    margin-bottom: 15px;
}

.content-bg {
    padding-top: 80px;
    background: #ffffff;
    border-radius: 40px 40px 0 0;
    position: relative;
    z-index: 1;
}

.content-top {
    margin-bottom: 20px;
}

.content-top h2 {
    font-size: 28px;
    line-height: 100%;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: -1.5px;
}

.content-top p {
    font-size: 16px;
    color: var(--main-color);
    font-weight: 300;
    margin-bottom: 15px;
    line-height: 130%;
    width: 80%;
    letter-spacing: -1.2px;
}

.content-top .main-content-p {
    width: 190px;
}

.content-bottom {
    margin-top: 40px;
}

.content-bottom img {
   display: block;
    margin-bottom: 30px;
}

.content-bottom strong {
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 100%;
    font-weight: 600;
    letter-spacing: -1.2px;
}

.content-bottom p {
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.5px;
    font-weight: 300;
}

.content-bottom > div {
    margin-bottom: 20px;
}


.content-bottom > div:last-child {
    margin-bottom: 0;
}

.about-us {
    position: relative;
    margin-top: 80px;
    padding-bottom: 0;
}

.about-us:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    bottom:0;
    left: 0;
    background: var(--green-color);
    z-index: 0;
    border-radius: 30px;
}

.about-us > div {
    position: relative;
    z-index: 0;
    padding: 20px 20px 0 20px;
}

.about-us h2 {
    margin-top: 0;
}

.about-us-img img {
   display: block;
    margin: 0 auto;
}

.about-us-text h2 {
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: -1.2px;
}

.about-us-text img {
    display: block;
    margin-bottom: 10px;
}

.about-us-text p {
    font-size: 16px;
    color: var(--light-color);
    line-height: 140%;
    font-weight: 300;
}

.about-us p {
    font-weight: 300;
    line-height: 130%;
    letter-spacing : -0.5px;
    margin-bottom: 20px;
}

.for-you {
    margin-top: 80px;
}

.for-you-block {
    margin-bottom:10px;
}

.for-you-block:last-child {
    margin-bottom: 0;
}

.for-you-block:first-child > div {
    border-radius: 30px;
    padding: 40px 20px 0 20px;
    min-height: 500px;
    background: rgba(200, 150, 99, 0.4) url('/img/design/for-you-woman-1_1.png') right bottom no-repeat;
    background-size: 69%;
}

.for-you-block:first-child > div p {
    line-height: 130%;
}

.for-you-block-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 130%;
    letter-spacing: -0.5px;
}

.for-you-block-text p {
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.5px;
}

.for-you-block:last-child > div {
    border-radius: 40px;
    padding: 25px;
    min-height: 500px;
    background: rgba(169, 180, 136, 0.3) url('/img/design/for-you-woman-2.png') right bottom no-repeat;
    background-size: 60%;
}

.reviews {
    margin-top: 80px;
}

.star-full {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url('/img/icons/icon-star-full.svg') center no-repeat;
    background-size: cover;
    transition: .3s;
}

.star-empty {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url('/img/icons/icon-star-empty.svg') center no-repeat;
    background-size: cover;
    transition: .3s;
}
.reviews-block > div {
    padding: 25px;
    border: 1px solid #F3F1E9;
    border-radius: 20px;
    min-height: 175px;
}

.reviews-title {
    margin-bottom: 20px;
}

.reviews-block strong {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.reviews-block p {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 130%;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.reviews-block p:last-child {
    margin-bottom: 0;
}

.reviews-block span {
    font-size: 14px;
    font-weight: 800;
    text-decoration: underline;
}

.reviews-block span:hover {
    cursor: pointer;
}

.videos {
    margin-top: 43px;
    margin-bottom: 150px;
}

.videos iframe {
    border-radius: 30px;
    width: 100%;
    min-height: 540px
}

.how-it-work-video iframe {
    border-radius: 30px;
    width: 100%;
    min-height: 240px
}

.articles {
    margin-top: 80px;
}

.articles-block a {
    display: block;
}


.articles-block  {
    margin-bottom: 30px;
}

.articles-block a > img {
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 20px;
    transition: .3s;

}

.articles-block a:hover > img {
   transform: translateY(-5px);
}

.articles-block a strong {
    display: block;
    font-size: 22px ;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--main-color);
    transition: .3s;
    letter-spacing: -1.2px;
}

.articles-block a:hover strong {
    color: var(--dark-beige-color);
}

.articles-block a p {
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -.5px;
    color: var(--main-color);
}

.btn-article {
    margin-top: 20px;
    display: block;
    transition: .3s;
    font-weight: 500;
}

.btn-article img {
    margin-left: 5px;
    transition: .3s;
}

.btn-article:hover  {
   transform: translateX(3px);
    cursor: pointer;
}

.btn-article:hover img {
   transform: translateX(3px);
}

.articles-btn-top a {
    background:transparent;
    border: 1px solid var(--main-color);
}


.articles-btn-top a:hover {

    border: 1px solid transparent;
}

.connection {
    margin-top: 80px;
    background: #F3F1E9;
    border-radius: 40px 40px;
    position: relative;
    z-index: 1;
}

.connection > div {
    padding: 40px 19px 0 20px ;
}

.connection h2 {
    margin-bottom: 20px;
}

.main .connection h2{
    font-size: 36px;
    line-height: 100%;
    font-weight: 600;
    letter-spacing: -1.2px;
}

.connection p {
    font-size: 16px;
    letter-spacing: -0.5px;
    line-height: 130%;
    font-weight: 300;
}
.connection-img img {
    display: block;
    margin: 0 auto 0 auto;
}

.block-text img {
    display: block;
    margin-bottom: 10px;
}

.connection .btn-main {
    margin-top: 40px;
}

footer {
    background: var(--main-color);
    border-radius:  40px 40px 0 0;
    padding-top:40px;
}

.footer-bottom {
    padding-bottom: 40px;
    margin-top: 40px;
}


.footer-bottom > div {
    padding-top: 40px;
    border-top:1px solid rgba(255, 255, 255, 0.4);

}

.footer-menu ul {
    padding-left: 0;
    margin-bottom: 0;
}

.footer-menu ul li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-menu a {
    color: rgba(244, 241, 233, 0.5);
    padding-top: 10px;
    padding-bottom: 10px;
    transition: .3s;
    font-weight: 300;
    font-size: 16px;
}

.footer-menu a:hover {
    color: rgba(244, 241, 233, 1);
}

footer .follow a {
    display: inline-block;
    transition: .3s;
    margin-right: 10px;
}

footer .follow a:last-child {
   margin-right: 0;
}

footer .follow a:hover {
    transform: translateY(-3px);
}

.footer-bottom .footer-menu ul {
    margin-bottom: 0;
    margin-top: 10px;
}

.footer-bottom .footer-menu ul li {
    margin-right: 10px;
    display: inline-block;
}

.footer-developer span {
    font-weight: 300;
    color: rgba(244, 241, 233, .5);
}

.footer-developer span a {
    transition: .3s;
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
}

.footer-developer span a:hover {
    transition: .3s;
    transform: translateY(-3px);
}

@media(min-width: 768px) {

    h1 {
        font-size: 40px;
        line-height: 90%;
    }

    h2 {
        font-size: 26px;
    }

    .navbar {
        padding-top: 20px;
        padding-bottom: 20px
    }

    .menu-social {
        border: none;
        padding-top: 0;
        margin-top: 0;
    }

    .banner:before {
        content: '';
        position: absolute;
        top: 75%;
        left: 80%;
        background: url('/img/icons/icon-2-flower.svg') no-repeat;
        background-size: contain;
        width: 30%;
        height: 30%;
        z-index: -2;
        transition: .6s;
        will-change: transform;

    }

    .banner h1 {
        margin-top:0;
    }

    .main .banner-text {
        margin-bottom: 40px;
    }

    .main .banner-img {
        margin-top: 40px;
    }


    .banner:hover .banner-wrap:after {
        transform: scale(1.1) translate(10px, -15px) rotate(8deg);
    }

    .banner-text {
        margin-bottom: 0;
    }

    .banner-text h1 {
        padding-left: 0;
        padding-right: 0;
    }

    .banner-text p {
        padding-left: 0;
        padding-right: 0;
    }

    .content-top h2 {
        font-size: 26px;
        margin-bottom: 0;
    }

    .content-top p {
        font-size: 16px;
        width: 70%;
        margin:  0 0 0 auto;
    }

    .content-bottom > div {
        margin-bottom: 0;
    }

    .content-bottom strong {
        font-size: 20px;
    }

    .about-us {
        padding-bottom: 0;
    }

    .for-you-block {
        margin-bottom: 0;
    }

    .for-you-block:first-child > div {
        padding: 40px;
    }

    .for-you-block:last-child > div {
        padding: 40px;
    }

    .for-you-block-text h3 {
       width: 100%;
    }

    .for-you-block-text p {
        min-height: 134px;
    }

    .connection-img img {
        max-height: 400px;
    }

    .footer-bottom .footer-menu ul li {
        display: block;
    }

}

@media(min-width: 992px) {

    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 30px;
    }

    .offcanvas {
        background: transparent!important;
        background-size: unset;
    }

    .nav-item .nav-link {
        font-size: 14px;
        padding-bottom: 10px;
        margin-right: 10px;
    }

    .navbar-nav.nav-items-light .nav-link {
        color: var(--light-color)!important;
    }

    .menu-social-xs {
        width: auto;
    }

    .btn-main {
        font-size: 16px;
    }

    .content-bg {
        padding-top: 90px;
    }

    .content-top {
        margin-bottom: 40px;
    }

    .content-top h2 {
        font-size: 30px;
    }

    .content-top p {
        font-size: 18px;
        width: 50%;
    }

    .banner-text {
        margin-top: 0;
    }

    .main .banner-text {
        margin-bottom: 0;
    }

    .main .banner-img {
        margin-top: 0;
    }

    .banner-img {
        border-bottom: none;
    }

    .about-us:before {
        height: 100%;
    }

    .about-us-text h2 {
        margin-bottom: 25px;
    }

    .about-us-text img {
        display: block;
        margin-bottom: 30px;
    }

    .about-us-img img {
        border-bottom: none;
    }

    .for-you-block-text h3 {
       font-size: 30px;
    }

    .connection {
        background: transparent;
    }

    .connection:before {
        content: '';
        width: 100%;
        height: 90%;
        position: absolute;
        bottom: 0;
        left: 0;
        background: #F3F1E9;
        border-radius: 40px;
        z-index: -1;
    }

    .connection-img img {
        max-height: none;
        margin: 0 0 0 auto;
    }

    .block-text img {
        margin-bottom: 20px;
    }
    .footer-bottom .footer-menu ul li {
        display: inline-block;
    }


}

@media(min-width: 1200px) {

    .about-us:before {
        height: 90%;
    }

    .special-programs-page .about-us:before {
        height: 94%;
    }

    .for-you-block:first-child > div {
        padding: 45px;
        min-height: 700px;
        background-size: 80%;
    }

    .for-you-block:last-child > div {
        padding: 45px;
        min-height: 700px;
        background-size: 70%;
    }

    .for-you-block:first-child > div p {
        width: 70%;
    }

    .for-you-block:last-child > div p {
        width: 70%;
    }

}

@media(min-width: 1440px) {

    h1 {
        font-size: 66px;
    }

    h2 {
        font-size: 46px;
    }
    .navbar {
        padding-top: 35px;
        padding-bottom: 35px
    }

    .btn-main {
        padding: 34px;
    }

    .btn-main:hover {
        padding: 34px;
    }

    .nav-item .nav-link {
        margin-right: 20px;
    }

    .nav-item .nav-link {
        font-size: 14px;
    }

    .content-bg {
        padding-top: 90px;
    }

    .content-top {
        margin-bottom: 60px;
    }
    .content-top h2 {
        font-size: 46px;
    }

    .content-top p {
        font-size: 18px;
        width: 48%;
    }

    .content-bottom img {
        margin-bottom: 30px;
    }

    .content-bottom strong {
        margin-bottom: 0;
        min-height: 60px;
        font-size: 22px;
    }

    .banner h1 {
        font-size: 66px;
    }

    .about-us {
        margin-top: 130px;
    }

    .about-us:before {
        height: 90%;
    }

    .about-us-text h2 {
        margin-bottom: 30px;
        font-size: 46px;
    }

    .about-us-text p {
        margin-bottom: 30px;
    }

    .about-us-text p:last-child {
        margin-bottom: 0;
    }

    .about-us-text img {
        margin-bottom: 30px;
    }

    .for-you {
        margin-top: 150px;
    }

    .for-you-block-text h3 {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .reviews {
        margin-top: 0px;
    }

    .articles {
        margin-top: 150px;
    }

    .connection {
        background: transparent;
        margin-top: 110px;

    }

    .main .connection h2{
        font-size: 56px;
        line-height: 90%;
        margin-bottom: 40px;
    }

    .connection:before {
        height: 90%;
    }

    .block-text p {
        font-size: 16px;
    }
}

/* Program page*/
.program-page .content-bottom {
    margin-top: 30px;

}
.program-page .banner-text h1 {
    color: var(--main-color);
}

.program-page .banner-text p {
    color: var(--main-color);
}

.program-page .banner-wrap:before {
    content: '';
    position: absolute;
    top:8%;
    left: 8%;
    background: url('/img/icons/icon-banner-leafs.svg') no-repeat;
    background-size: cover;
    width: 15%;
    height: 15%;
    z-index: 0;
    transition: .4s;
    will-change: transform;
}

.program-page .banner-wrap:after {
    content: '';
    position: absolute;
    top:3%;
    left: 50%;
    background: url('/img/icons/icon-banner-flower-lg-beige.svg') no-repeat;
    background-size: cover;
    width: 50%;
    height:50%;
    z-index: 0;
    transition: .7s;
    will-change: transform;
}

.program-page .banner-img:after {
    content: '';
    position: absolute;
    top:55%;
    left: 48%;
    background: url('/img/icons/icon-banner-flower-md-beige.svg') no-repeat;
    background-size: cover;
    width: 35%;
    height: 35%;
    z-index: -1;
    transform: rotate(0deg);
    will-change: transform;
    transition: 1s;
}

.program-page .banner-img:before {
    display: none;
}

.banner-img img {
    position: relative;
    transition: .4s;
    display: block;
    transform: translate(0) rotateZ(0) perspective(1px);
    will-change: transform;
}

.offers {
    margin-top: 80px;
}

.offers .content-top p {
    width: 100%;
    margin-top: 24px;
}

.offers .offers-item {
    margin-bottom: 25px;
}

.offers .offers-item > div {
    padding: 25px 20px 0 20px;
    border-radius: 30px;
    position: relative;
    z-index: 0;
    min-height: 100%;
}

.offers .offers-item > div:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #f7f0e5;
    border-radius: 30px;
    z-index: -1;
}

.offers .offers-item .content-bottom {
    margin-top: 0;
}

.offers .offers-item .offers-img img {
    margin: 30px auto 0 auto;
    display: block;
}
.offers .content-bottom > div {
     margin-bottom: 0;
}

.about-program {
    border-radius: 30px;
    margin-top: 55px;
    padding: 20px 5px 0px 5px;
}



.about-program .content-top h2 {
    color: var(--light-color);

}

.about-program p {
    color: var(--light-color);
    margin-top: 20px;
}
.warning {
    margin-top: 80px;
}

.flower-text {
    margin-bottom: 20px;
}

.flower-text img {
    display: block;
    margin-bottom: 30px;
}

.flower-text p {
    font-weight: 300;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.5px;
}

.dishes {
    margin-top: 60px;
}

.dishes .content-top {
    margin-bottom: 30px;
}

.dishes .dishes-block {
    margin-bottom: 30px;
}


.dishes-block:last-child {
    margin-bottom: 0;
}


.dishes .flower-text img {
    margin-bottom: 30px;
    margin-left: 0;
}

.dishes img {
    display: block;
    margin: 0 auto;
    border-radius: 30px;
}

.how-it-work {
    margin-top: 80px;
}

.how-it-work h2 {
    margin-bottom: 20px;
}

.how-it-work .content-top p {
    font-size: 16px;
    width: 100%;
    font-weight: 300;
    letter-spacing: -0.5px;
    line-height: 130%;
}

.how-it-work-video > div {
    border-radius: 30px;
}

.prices {
    margin-top: 0px;
}

.prices .content-top p {
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.5px;
    font-weight: 600;
}

.prices-block {
    margin-bottom: 30px;
}

.prices-block:last-child {
    margin-bottom: 0;
}

.prices-block > div {
    padding: 30px 20px 35px 20px;
    background: rgba(169, 180, 136, 0.4);
    border-radius: 40px;
    min-height: 700px;
}

.prices-block > div h3 {
    font-size: 26px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: -1.2px;
}
.flower-list {
    padding: 0;
    margin-bottom: 0;
}

.flower-list li{
    list-style: none;
    margin-bottom: 20px;
}

.flower-list li img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.flower-list li span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: -0.5px;
    line-height: 130%;
}

.add-flower-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 130%;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.prices-block .flower-list {
    margin-left: 0;
    margin-bottom: 0;
    padding: 0;
}

.prices-block .flower-list li {
    list-style: none;
    margin-bottom: 20px;
}

.prices-block .flower-list li img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

.prices-block .flower-list li span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: -0.5px;
    line-height: 130%;
}

.price-number  {
    text-align: center;
    margin-bottom: 10px;
}

.price-number > span {
    font-size: 16px;
    font-weight: 300;
    display: block;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.price-number > strong {
    font-size: 26px;
    font-weight: 600;
}

.price-number > strong > span {
    font-size: 18px;
    font-weight: 600;
    text-decoration: line-through;
}

.price-number > strong > span > img{
    padding-left: 10px;
    padding-right: 10px;
    transform: translateY(-2px);
    vertical-align: middle;

}

.date-start {
    display: inline-block;
    padding: 10px 20px;
    background: var(--light-color);
    color: var(--green-color);
    font-weight: 500;
    border-radius: 20px;
    margin-top: 30px;
}

.date-start-bauch {
    display: inline-block;
    padding: 10px 20px;
    background: var(--light-color);
    color: var(--green-color);
    font-weight: 500;
    border-radius: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.date-start-bauch p {
	color: #000000;
}

.program-page  .banner .date-start {
    margin-bottom: 20px;
    margin-top: 0;
}
.program-page .connection-img{
    margin-top: 15px;
}
.sports-band {
    margin-top: 80px;
}

.sports-band .content-top h2 {
    margin-bottom: 20px;
}

.sports-band .content-top p {
    width: 100%;
}

.sports-band .container > div {
    padding: 30px 25px 30px 25px;
    background: rgba(183, 236, 235, 0.4);
    border-radius: 40px;
}

.band-img img {
    display: block;
    margin: 15px 0 0 auto;
}

.sports-band .flower-list-header {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.5px;
    display: block;
    margin-top: 30px;
    margin-bottom: 20px;
}

.connection.your-moment:before {
    background:transparent;
}

.connection.your-moment {
    background: rgba(219, 192, 147, 0.6);
}
.faq {
    margin-top: 80px;
}

.faq .content-top {
    margin-bottom: 30px;
}

.faq .faq-open-block, .faq .faq-open-green-block {
    background: #F7F7F7;
    margin-bottom: 20px;
    border-radius: 20px;
}

.faq .faq-open-block .open-block-top, .faq .faq-open-green-block .open-block-top {
    padding: 15px;
    transition: .3s;
    border-radius: 20px;
    font-weight: 600;

}
.faq .faq-open-block .open-block-top:hover, .faq .faq-open-green-block .open-block-top:hover {
    cursor: pointer;
    background: #eeeded;
}

.faq .faq-open-block .open-block-top span, .faq .faq-open-green-block .open-block-top span {
    font-size: 18px;
    letter-spacing: -0.5px;
    line-height: 100%;
    font-weight: 600;
    width: 85%;
    display: block;
}

.faq .faq-open-block .open-block-bottom, .faq .faq-open-green-block .open-block-bottom {
    padding: 10px 15px 25px 15px;
    display: none;
}

.faq-open-block.block-opened .open-block-bottom, .faq-open-green-block.block-opened .open-block-bottom {
    display: block!important;
}

.faq-open-block.block-opened .open-block-bottom p, .faq-open-green-block.block-opened .open-block-bottom p {
    font-weight: 300;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.5px;
}

.faq-open-block.block-opened .open-block-bottom p, .faq-open-green-block.block-opened .open-block-bottom p {
    font-weight: 300;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {

    .program-page .banner-text {
        margin-bottom: 40px;
    }

    .program-page .banner-img {
        margin-top: 140px;
    }

    .program-page .banner:before {
        content: '';
        position: absolute;
        top: 75%;
        left: 80%;
        background: url('/img/icons/icon-banner-flowers-beige.svg') no-repeat;
        background-size: contain;
        width: 30%;
        height: 30%;
        z-index: -2;
        transition: .6s;
        will-change: transform;
    }

    .offers .content-top p {
        width: 90%;
    }

    .prices .content-top p {
        width: 90%;
    }

    .sports-band .container > div {
        padding: 50px;
        padding-bottom: 0px;
        padding-right: 0px;
    }

    .sports-band .content-top p {
        margin: 0 0 0 0;
        width: 100%;
    }

    .program-page .banner-text h1 {
        font-size: 42px;
    }

    .offers .content-top p {
        margin-top: 0;
    }

    .dishes .dishes-block:last-child {
        margin-bottom: 30px;
    }

    .how-it-work .content-top p {
        font-size: 16px;
        width: 70%;
        margin: 0 auto 0 auto;
    }

    .special-programs-page .prices-block strong {
        /*padding-left: 20px;
        padding-right: 20px;*/
    }
}


@media (min-width: 992px) {
    .program-page .banner-text {
        margin-bottom: 0;
    }

    .program-page .banner-img {
        margin-top: 0;
    }
    .program-page .connection-img{
        margin-top: 0;
    }

    .how-it-work .content-top p {
        width: 50%;
    }

    .flower-text {
        margin-bottom: 40px;
    }
    .warning .flower-text p{
        width: 60%;
    }
    .prices-block > div {
        padding: 30px 30px 40px 30px;
    }

    .prices-block > div {
        min-height: 905px;
    }

    .program-page .banner-text h1 {
        font-size: 44px;
    }

}

@media (min-width: 1200px) {

}

@media (min-width: 1440px) {

    .program-page .content-bottom {
        margin-top: 70px;

    }
    .offers {
        margin-top: 150px;
    }
	.offers-bauch {
        margin-top: 0px;
    }
    .offers .content-top p {
        width: 70%;
    }

    .offers .offers-item {
        margin-bottom: 5px;

    }

    .offers .offers-item > div {
        padding: 0 20px 0 20px;
    }

    .offers .offers-item > div:before {
        height: 96%;
    }

    .about-program {
        margin-top: 150px;
    }

    .warning {
        margin-top: 150px;
    }

    .how-it-work {
        margin-top:150px;
        margin-bottom: 150px;
    }

    .how-it-work .content-top h2 {
        width: 40%;
        margin-right: auto;
        margin-left: auto;
    }

    .how-it-work .content-top p {
        width: 36%;
    }

    .program-page .prices .content-top p {
        width: 73%;
    }

    .program-page .prices .content-top h2 {
        width: 88%;
    }

    .program-page .connection p {
        width: 74%;
        margin-bottom: 20px;
    }

    .prices {
        margin-top: 0px;
    }

    .prices-block > div h3 {
        font-size: 26px;
    }

    .sports-band {
        margin-top: 150px;
    }

    .faq {
        margin-top: 150px;
    }

    .program-page .banner-text h1 {
        font-size: 66px;
    }

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

    .program-page .offers .offers-item .offers-img img {
        margin: 0 auto 0 auto;
    }

    .connection.your-moment {
        background: transparent;
    }

    .connection.your-moment:before {
        background: rgba(219, 192, 147, 0.6);
    }

    .faq .faq-open-block .open-block-top span {
        width: 94%;
    }

}

/* Program page*/
.special-programs-page .banner-text p {
    color: var(--main-color);
}

.special-programs-page .banner-wrap:before {
    content: '';
    position: absolute;
    top: 15%;
    left: 0;
    background: url('/img/icons/icon-flower-special-programs-lg.svg') no-repeat;
    background-size: cover;
    width: 43%;
    height: 43%;
    z-index: 0;
    transition: .4s;
    will-change: transform;
}

.special-programs-page .banner-wrap:after {
    content: '';
    position: absolute;
    top: 77%;
    left: -10%;
    background: url('/img/icons/icon-flower-special-programs-xs.svg') no-repeat;
    background-size: cover;
    width: 34%;
    height: 44%;
    z-index: 0;
    transition: .7s;
    will-change: transform;
    transform: rotate(15deg);
}

.special-programs-page .banner-img:after {
    content: '';
    position: absolute;
    top:5%;
    left: 30%;
    background: url('/img/icons/icon-flower-special-programs-md.svg') no-repeat;
    background-size: cover;
    width: 55%;
    height: 55%;
    z-index: -1;
    transform: rotate(0deg);
    will-change: transform;
    transition: 1s;
}


.special-programs-page .banner-img:before {
    display: none;
}

.special-programs-page .banner:after {
    content: '';
    position: absolute;
    top: 79%;
    left: 69%;
    background: url('/img/icons/icon-flower-special-programs-arrows.svg') no-repeat;
    background-size: contain;
    width: 15%;
    height: 30%;
    z-index: 1;
    transform: rotate(6deg);
    will-change: transform;
    transition: .6s;
}

.special-programs-page .banner:hover .banner-img:after {
    transform:  scale(1.1) rotate(5deg) translate(13px, 0) ;
}

.special-programs-page .banner:hover:after {
    transform:  rotate(8deg) translateY(-13px) ;
}

.course {
    margin-top: 80px;
}

.course-blocks .flower-text {
    margin-bottom: 30px;
}

.course-blocks .flower-text > div {
    border-radius: 20px;
    padding: 20px;
    min-height: 200px;
}

.course-block-green {
    background: #eef0e7;
}

.course-block-beige {
    background: #f8f2e9;
}

.course-blocks .flower-text > div p{
    font-weight: 300;
}

.special-programs-page .course .content-top p {
    margin-top: 20px;
}


.special-programs-page .flower-text p {
    overflow-wrap: break-word;
}

.special-programs-page .flower-text > div {
    min-height: 225px;
}

.text-top {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 30px;
    display: block;
    letter-spacing: -1.2px;
    line-height: 100%;
}

.special-programs-page .offers .offers-item > div {
    padding: 20px 20px 0 20px;
}

.special-programs-page .connection {
    background: #A9B488!important;
}

.special-programs-page .connection:before {
    background: #A9B488!important;
}

.special-programs-page .course .content-top p {
    width: 100%;

}

.special-programs-page .course-text-bottom {
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -1.2px;
    font-size: 18px;
}

.price-number > strong > span {
    font-size: 18px;
    font-weight: 600;
    text-decoration: line-through;
  vertical-align: middle;
}

.special-programs-page .prices-block > strong {
    font-weight: 300;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
}

.special-programs-page .prices .content-top {
    margin-bottom: 40px;
}

.special-programs-page .connection h2 {
    font-size: 28px;
    line-height: 90%;
    letter-spacing: -1.2px;
    font-weight: 600;
}

.special-programs-page .connection .block-text img{
    margin-bottom: 30px;
}


.special-programs-page .connection .block-text p{
    font-size: 16px;
    font-weight: 300;
    line-height: 130%;
    letter-spacing: -0.5px;
}
@media (min-width: 768px) {

    .special-programs-page .banner:before {
        content: '';
        position: absolute;
        top: 75%;
        left: 80%;
        background: url('/img/icons/icon-flower-special-programs-group.svg') no-repeat;
        background-size: contain;
        width: 30%;
        height: 30%;
        z-index: -2;
        transition: .6s;
        will-change: transform;
    }

    .special-programs-page .banner:after {
        top: 65%;
        left: 35%;
    }
    .special-programs-page .prices-block > div {
       min-height: 1026px;
    }

    .special-programs-page .course .content-top p {
        margin-top: 0;
    }

    .special-programs-page .banner-text {
        margin-top: 0!important;
    }

    .special-programs-page .banner-img img {
        margin-top: 50px;
    }

    .special-programs-page .connection h2 {
        width: 60%;
    }

}

@media (min-width: 992px) {
    .special-programs-page .connection {
        background: transparent!important;
    }
    .special-programs-page .banner-img img {
        margin-top: 0;
    }

    .special-programs-page .offers .offers-item .offers-img img {
        margin-top: 0;
    }

    .special-programs-page .connection h2 {
        width: 100%;
    }

}

@media (min-width: 1200px) {

}

@media (min-width: 1440px) {

    .special-programs-page .banner:after {
        top: 65%;
        left: 28%;
    }

    .course {
        margin-top: 150px;
    }

    .course-blocks .flower-text > div p{
       font-size: 18px;
    }

    .special-programs-page .course .content-top p {
        width: 67%;
    }

    .text-top {
        font-size: 22px;
        margin-bottom: 40px;

    }

    .program-page .banner-text h1 {
        font-size: 66px;
    }

    .special-programs-page .flower-text > div {
        min-height: 195px;
        padding: 30px;
    }

    .special-programs-page .course-text-bottom {
        font-size: 26px;
    }

    .special-programs-page .content-bottom p {
        width: 100%;
    }

    .special-programs-page .connection h2 {
        font-size: 56px;
    }

    .special-programs-page .offers .offers-item > div {
        padding: 30px 30px 0 30px;
    }

    .special-programs-page .connection h2 {
        margin-bottom: 35px;
    }

    .special-programs-page .connection .block-text p {
        width: 67%;
    }
    .special-programs-page .connection h2 {
        width: 113%;
    }

    .special-programs-page .faq h2 {
        margin-bottom: 40px;
    }
}

.pointer {
    cursor: pointer;
}

.modal-header {
    padding: 0;
    border-bottom: none;
}


.modal-title {

}

.modal-body{
    padding: 0;
}

.modal-p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
    margin-top: 10px;
}

.modal-content {
    color: #151414;
    background-color: var(--bs-modal-bg);
    border: none;
    border-radius: 20px;
    outline: 0;
    padding: 25px;
}

.form-check{
    color: rgba(21, 20, 20, 0.6);
}

.modal-body .modal-input {
    background: #D4D6D71A;
    padding: 20px 20px;
    border-radius: 60px;
}

.modal-body .modal-input input {
    color: var(--main-color);
    background: transparent;
    border: none;
}

.modal-body .modal-input input:focus, .modal-body .modal-input input:active {
    border: none;
    box-shadow: none;
}

.modal-body .modal-input img {
    padding-right: 5px;
}

.form-check-input {
    width: 25px;
    height: 25px;
    border: 1px solid #5E7255;
}

.form-check-label {
    line-height: 90%;
    transform: translateY(2px);
    margin-left: 10px;
}

.form-check-input:checked:focus {
    box-shadow: none;
    border: none;
    outline: none;
}

.form-check-input[type=checkbox] {
    width: 25px;
    height: 25px;
    border: 1px solid #5E7255;
}

.form-check-input[type=checkbox]:focus {
    width: 25px;
    height: 25px;
    box-shadow: none;
}

.form-check-input:checked[type=checkbox] {
    width: 25px;
    height: 25px;
    background: #5E7255;
    box-shadow: none;
}

.form-check {
    margin-bottom: 15px;
}

.form-check:last-child {
    margin-bottom: 5px;
}

.form-check-label.rules  {
    line-height: 150%;
    font-size: 12px!important;
}

.rules a {
    border-bottom: 1px solid var(--main-color) ;
    color: var(--main-color);
}

.modal-footer {
    border-top: none;
    display: block;
}

.modal-footer .btn-main {
   padding-left: 60px;
    padding-right: 60px;
}

@media (min-width: 992px) {

    .modal-content {
        padding: 50px;
    }

    .modal-footer .btn-main {
        padding-left: 100px;
        padding-right: 100px;
    }
}

.modal-title-block {
    font-size: 36px;
    font-weight: 600;
    display: block;
    margin-top: 20px;
    margin-bottom: 25px;
    text-align: center;
    line-height: 40px;
}

#form-sent-block {
    padding: 80px 0;
    text-align: center;
}

#form-sent-block span {
    font-size: 36px;
    font-weight: 600;
    display: block;
    margin-top: 20px;
    margin-bottom: 40px;
    text-align: center;
    line-height: 40px;
}

#form-sent-block p {
    padding: 0 7%;
    margin-bottom: 15px;
}

#form-sent-block p:last-child {
    margin-bottom: 0;
}

#prices-agree-checkbox-block-1, #prices-agree-checkbox-block-2, #prices-agree-checkbox-block-3,
#prices-agree-checkbox-block-4, #prices-agree-checkbox-block-5, #prices-agree-checkbox-block-6 {
    font-size: 14px;
}

.menu-social li:first-child {
    color: var(--main-color);
    margin-bottom: 30px;
}

.text p {
    line-height: 180%;
    margin-bottom: 20px;
    font-weight: 300!important;
    letter-spacing: -0.5px!important;
}

.text p strong{
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    .footer-bottom {
        text-align: center;
    }
}

.bg-3rd-page-badge {
    background-color: rgba(244, 241, 233, .3);
}

.mh-47 {
    min-height: 47px;
}

.program-page .banner-text {
    margin-top: 30px;
}

.special-programs-page .banner-text {
    margin-top: 30px;
}

@media (min-width: 992px) {
    .program-page .banner-text {
        margin-top: 0;
    }

    .special-programs-page .banner-text {
        margin-top: 0;
    }
}

.none {
    display: none!important;
}

.start-beige {
    position: relative;
}

.start-beige:before {
    content: '';
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(21, 20, 20, 0.6);
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 40px;
}

.start-beige-block {
    position: absolute;
    border-radius: 40px;
    padding: 30px 26px 40px 26px;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background:#F1E6D4;
    z-index: 1;
    width: 90%;
}

.start-beige-block strong {
    font-size: 26px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -1.2px;
    display: block;
    text-align: center;
    margin-bottom: 15px;
}

.start-beige-block .date-start {
    margin-top: 0;
    color: #C89663;
    margin-bottom: 15px;
    background: #FCFCFC;
    font-weight: 600;
}

.start-beige-block p {
    font-size: 16px;
    color: #151414;
    line-height: 130%;
    font-weight: 400;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 30px;
}

.start-green {
    position: relative;
}

.start-green:before {
    content: '';
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(21, 20, 20, 0.6);
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 40px;
}

.start-green-block {
    position: absolute;
    border-radius: 40px;
    padding: 30px 26px 40px 26px;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: #E5E9DB;
    z-index: 1;
    width: 90%;

}

.start-green-block strong {
    font-size: 26px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -1.2px;
    display: block;
    text-align: center;
    margin-bottom: 15px;
}

.start-green-block .date-start {
    margin-top: 0;
    color: #5E7255;
    margin-bottom: 15px;
    background: #FCFCFC;
    font-weight: 600;
}

.start-green-block p {
    font-size: 16px;
    color: #151414;
    line-height: 130%;
    font-weight: 400;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 30px;
}

.form-check-input:checked[type=radio] {
    background: #5E7255!important;
}
.form-check-input:checked {
    background-color:#5E7255;
    border-color: #5E7255;
}

#form-packet-send-btn {
    padding-left: 90px;
    padding-right: 90px;
}

.book  {
    margin-top: 80px;
    background: rgba(219, 192, 147, 0.6);
    border-radius: 40px 40px;
    position: relative;
    z-index: 1;
}

.book > div {
    padding: 40px 15px 20px 17px;
}

.book h2 {
    font-size: 36px;
    line-height: 100%;
    font-weight: 600;
    letter-spacing: -1.2px;
    margin-bottom: 35px;
}

.book .block-text img {
    display: block;
    margin-bottom: 20px;
}

.book p {
    font-size: 16px;
    letter-spacing: -0.5px;
    line-height: 130%;
    font-weight: 400;
}

.book .btn-main {
    margin-top: 20px;
}

.book-img img {
    display: block;
    margin: 0 auto 0 auto;
}

.book-text {
    margin-top: 40px;
}

.book-text .course-text-bottom {
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -1.2px;
}

.book-text .course-blocks .flower-text > div {
    border-radius: 20px;
    padding: 20px 18px 20px 20px;
    min-height: 231px;
}

.book-text .course-blocks .flower-text {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .book > div {
        padding: 40px 15px 40px 17px;
    }

    .book .btn-main {
        margin-top: 35px;
    }

    .book-text .course-text-bottom {
        width: 85%;
        margin: 0 auto 0 auto;
    }

}

@media (min-width: 992px) {
    .book-text .course-blocks .flower-text > div {
        min-height: 200px;
    }

}

@media (min-width: 1200px) { }

@media (min-width: 1440px) {

    .book {
        margin-top: 120px;
    }

    .book h2 {
        font-size: 46px;
        margin-bottom: 35px;
        width: 94%;
    }

    .book p {
        width: 73%;
    }

    .book-text {
        margin-top: 60px;
    }

    .book-text .course-text-bottom {
        margin-bottom: 60px;
        font-size: 26px;
    }

    .book-text .course-text-bottom {
        width: 51%;
    }

}

.blog .banner {
    padding-bottom: 0;
}


.blog:before  {
    display: none;
}


.blog .banner:before  {
    display: none;
}

.blog .banner-img:before,.blog .banner-img:after  {
    display: none;
}

.blog .banner-wrap:before, .blog .banner-wrap:after  {
    display: none;
}

.blog .banner {
    padding-bottom: 60px;
}

.blog .banner-text {
    margin-bottom: 40px;
    margin-top: 60px;
}
.breadcrumb {
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.breadcrumb-item, .breadcrumb-item.active {
    color: var(--light-color);
    font-size: 12px;
    font-weight: 400;
    line-height:90%;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: -0.5px;
}

.breadcrumb-item a {
    color: var(--light-color);
    font-size: 12px;
    font-weight: 400;
    line-height: 90%;
    display: inline-block;
    margin-right: 10px;
    letter-spacing: -0.5px;
}

.breadcrumb-item+.breadcrumb-item {
    position: relative;
    padding-left: 13px;
}

.breadcrumb-item+.breadcrumb-item::before {
    padding-right: 0;
    background: var(--light-color);
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 100%;
}
.blog .banner-text {
    margin-top: 50px;
}

.blog .banner-text h1 {
    font-size: 34px;
    letter-spacing: -1.2px;
    line-height: 95%;
    font-weight: 600;
}

.blog .banner-text p {
    margin-top: 20px;
    margin-bottom: 10px;
}

.blog .content-top p {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -.5px;
    margin-top: 20px;
    width: 100%;
}

.blog .book-text .course-text-bottom {
    font-weight: 600;
    font-size: 18px;
    margin-top: 40px;
    letter-spacing: -1.2px;
    margin-bottom: 40px;
    text-align: center;
}


.blog .book-text .flower-text {
    overflow-wrap: break-word;
}

.blog .book-text .course-blocks .flower-text > div {
    min-height: 200px;
}

.blog .book-text .course-blocks .flower-text > div {
    padding: 20px 18px 20px 17px;
}

.blog .for-you-block:last-child > div {
    border-radius: 40px;
    padding: 40px 20px 0 20px;
    min-height: 665px;
    background: rgba(169, 180, 136, 0.3) url('/img/design/woman-blog-11.png') center bottom no-repeat;
    background-size: 95%;
    margin-top: 80px;
}

.blog .for-you-block-text p {
    min-height: auto;
    width: 100%;
}

.blog .for-you-block-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 130%;
    letter-spacing: -1.2px;
}

.blog .for-you-block-text .btn-main {
    margin-top: 20px;
}

.blog-btn-header .btn-main {
    background: #F3F1E9;
    padding: 10px 26px;
    color: #5E7255;
    font-size: 14px;
    letter-spacing: -1.2px;
    font-weight: 600;
}

.blog .articles .content-top p {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    margin: 20px 0 0 0;
    letter-spacing: -.5px;
}

.blog .articles-block a p {
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -.5px;
    color: var(--main-color);
}

.blog .articles-block a > img {
    margin: 0 auto 30px auto;
}

.blog .content-top {
    margin-bottom: 24px;
}

@media (min-width: 768px) {

    .blog .for-you-block:last-child > div {
        min-height: 665px;
        background-size: 55%;
    }

    .blog .for-you-block-text p {
        width: 60%;
    }

}

@media (min-width: 992px) {

    .blog .banner-text h1 {
        font-size: 44px;
    }

    .blog .content-top p {
        margin-top: 30px;

    }

    .blog .book-text .course-blocks .flower-text > div {
        min-height: 171px;
    }

    .blog .for-you-block:last-child > div {
        margin-top: 0;
    }

    .blog .for-you-block-text p {
        width: 100%;
    }

    .blog .for-you-block:last-child > div {
        background-size: 90%;
        min-height: 766px;
        padding: 30px 39px 0 30px;
    }

    .blog .for-you-block-text .btn-main {
        margin-top: 40px;
    }

    .blog .for-you-block-text h3 {
        font-size: 28px;
    }

    .blog .articles .content-top p {
        width: 66%;
        margin: 30px 0 0 0;
    }


}

@media (min-width: 1200px) {

    .blog .book-text .course-text-bottom {
        font-size: 26px;
        margin-top: 54px;
        margin-bottom: 40px;
        text-align: left;
    }

    .blog .for-you-block:last-child > div {
        padding: 45px;
        min-height: 707px;
        background-size: 70%;
    }

    .blog .for-you-block:last-child > div p {
        width: 100%;
    }

    .blog .content-top {
        margin-bottom: 53px;
    }
}

@media (min-width: 1440px) {

    .blog .banner-text h1 {
        font-size: 56px;
        line-height: 95%;
    }

    .blog .banner-text p {
        font-size: 18px;
    }

    .blog .for-you-block:last-child > div {
        background-size: 85%;
        min-height: 749px;
    }

    .blog .articles {
        margin-top: 150px;
    }
}


/*Blog article page*/

.blog-article {
    margin-bottom: 80px;
}
.blog-article .blog-article-banner {
    background-size: cover!important;
    border-radius: 40px 40px 0 0;
}

.blog-article-banner {
    min-height: 600px;
}

.blog-article .banner {
    padding-top: 0;
    padding-bottom: 0;
}

.blog-article .banner-text {
    margin: 0;
}

.blog-article .banner-text > div {
    background: #5E7255;
    padding: 20px;
    border-radius: 30px;
    min-height: 300px;
    margin: 0;
}

.blog-article .breadcrumb {
    margin-top: 0;
}

.blog-article-banner {
    margin-top: 30px;
    padding-top: 0;
    padding-bottom: 0;
}

.blog-article .banner-text h1 {
    margin-bottom: 30px;
}

.blog-article .for-you-block:first-child > div {
    min-height: auto;
    padding: 30px;
    background: rgba(169, 180, 136, 0.3);
    margin-bottom: 10px;
}

.blog-article .for-you-block:last-child > div {
    min-height: auto;
    padding: 30px;
    border-radius: 30px;
    margin-top: 0;
    background: rgba(200, 150, 99, 0.2);
}

.blog.blog-article .blog-article-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -.5px;
    margin-bottom: 30px;
}

.blog.blog-article .blog-article-text img {
    max-width: 100%;
}

.blog.blog-article .blog-article-text a {
    color: #C89663;
}

.blog.blog-article .blog-article-text a:hover {
    text-decoration: underline;
}

.blog-article-img  {
    margin-bottom: 30px;
}

.blog-article-img img {
    display: block;
    margin: 0 auto 0 auto;
}

.blog.blog-article ul {
    padding: 0;
    margin: 0 0 0 22px;
}

.blog.blog-article  ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -.5px;
    margin-bottom: 10px;
}

.blog-article-small-wrap {
    margin-top: 80px;
}

.blog-article-small {
    margin-bottom: 20px;
}

.blog-article-small:last-child{
    margin-bottom: 0;
}

.blog-article-small a {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -1.2px;
    line-height: 130%;
    transition: .3s;
    color: var(--main-color);
    display: inline-block;
}

.blog-article-small a span{
    border-bottom: 1px solid var(--main-color);
}

.blog-article-small a:hover {
    color: var(--green-color);
}

.blog-article-small img {
    display: block;
    margin:  0 auto 0 auto;
    border-radius: 20px;
}

@media (min-width: 768px) {
    .blog-article .banner-text > div {
        padding: 40px 30px 30px 30px;

    }

    .blog.blog-article .for-you-block-text p {
        width: 100%;
    }

    .blog-article .for-you-block:first-child > div, .blog-article .for-you-block:last-child > div {
        min-height: 366px;
    }
}

@media (min-width: 992px) {
    .blog-article-banner {
        margin-top: 0;
    }

    .blog-article .banner-text > div {
        padding: 40px;
        min-height: 400px;

    }

    .blog-article .breadcrumb {
        margin-bottom: 20px;
    }

    .blog-article .for-you-block:first-child > div, .blog-article .for-you-block:last-child > div {
        padding: 30px 39px 40px 30px;
        min-height: auto;
    }

    .blog-article .for-you-block:first-child > div {
        margin-bottom: 20px;
    }

    .blog-article-small-wrap {
        margin-top: 40px;
    }

    .blog-article-small a {
        font-size: 18px;
    }
}

/*Calculator*/

.calculator {
    margin-top: 150px !important;
}

.calculator .content-top h2 {
    margin-bottom: 20px;
    text-align: center;
    line-height: 100%;
    font-weight: 600;
    letter-spacing: -1.8px;
}
.calculator .content-top h2 span {
    color: #C89663;
}

.calculator .content-top p {
    font-size: 16px;
    width: 100%;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 130%;
    text-align: center;
}

.calculator-form .container > div {
    padding: 20px 20px 0 20px;
    background: linear-gradient(290deg,rgba(255, 255, 255, 0.4) 10%, rgba(219, 192, 147, .4) 100%);
    border-radius: 40px;
    border: 1px solid rgb(239 230 213);
}

.calculator-download {
    margin-top: 60px;
}

.calculator-download .container > div {
    padding: 60px 14px 0 15px;
    background: linear-gradient(237deg,rgba(255, 255, 255, 0.4) 10%, rgba(219, 192, 147, .4) 100%);
    border-radius: 40px;
    border: 1px solid rgb(239 230 213);
    min-height: 600px;
    position: relative;
}

.calculator-download h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 130%;
    font-weight: 600;
    letter-spacing: -1.2px;
}

.calculator-download p {
    text-align: center;
    font-size: 16px;
    line-height: 130%;
    font-weight: 400;
    letter-spacing: -.5px;
}

.calculator-form .calculator-img img {
    display: block;
    margin: 21px 0 0 auto;
}

.calculator-form .calculator-input{
    border: 1px solid rgba(132, 142, 153, 0.2);
}

.calculator-body .calculator-input {
    background: #ffffff;
    padding: 20px 20px;
    border-radius: 60px;
    opacity: 1;
    margin-bottom: 14px;
}

.calculator-input input {
    color: var(--main-color);
    background: transparent;
    border: none;
    opacity: .5;
}

.calculator-body .calculator-input input:focus, .calculator-body .calculator-input input:active {
    border: none;
    box-shadow: none;
    background: transparent;
    opacity: 1;
}

.calculator-body .calculator-input img {
    padding-right: 5px;
    opacity: .5;
}

.calculator-body .calculator-input:focus-within img , .calculator-body .calculator-input:active img {
    opacity: 1;
}

.calculator-goal {
    font-size: 18px;
    letter-spacing: -1.2px;
    display: block;
    margin-left: 10px;
    margin-top: 35px;
    margin-bottom: 20px;
}

.calculator-body .form-check-label {
    line-height: 90%;
    transform: translateY(2px);
    margin-left: 10px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -1.2px;
    color: #151414;
}

.calculator-body .form-check-label:hover {
    cursor: pointer;
}

.form-check-input[type=checkbox] {
    width: 25px;
    height: 25px;
    background: transparent;
    border: 1px solid #5E7255;
}

.calculator-body .form-check {
    margin-bottom: 8px;
}

.calculator-body .form-check:hover {
    cursor: pointer;
}

.calculator-body .form-check-input:hover {
    cursor: pointer;
}

.calculator-download {
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.calculator-download:before {
    content: '';
    position: absolute;
    bottom:0;
    left: 50%;
    background: url('/img/icons/animation/icon-2-flower1.svg') top no-repeat;
    background-size: 100%;
    width: 202px;
    height: 263px;
    transform: translateX(-50%);
    z-index: 1;
    animation: flower-move linear infinite 10s;

}

.calculator-download:after {
    content: '';
    position: absolute;
    bottom:20px;
    left: 50%;
    background: url('/img/icons/animation/icon-leaf-animation.svg') left top no-repeat;
    background-size: 70%;
    width: 162px;
    height: 105px;
    transform: translateX(-3px);
    animation: lines-move linear infinite 10s;
}

.calculator-download > div {
    overflow: hidden;
}
.calculator-beige-block {
    background: rgba(219, 192, 147, 0.2)!important;
}

.calculator-program .prices-block > div {
    padding: 30px 19px 40px 17px;
    min-height: 552px;
}

.calculator-program .prices-block .flower-list li img {
    margin-right: 12px;
}

.calculator-program .prices-block > div h3 {
    padding: 0 10px;
}

.calculator-program .prices-block strong {
    margin-top: 40px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -1.2px;
    line-height: 130%;
    display: block;
    margin-bottom: 30px;
}
.calculator-program .prices-block .flower-list li span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 130%;
    width: 77%;
}

.calculator-program .prices-block .btn-main {
    padding: 25px 50px;
}


@keyframes flower-move {
    0%{
        transform: translateX(-50%) skew(0, 0deg) scale(1);
    }

    50%{
        transform: translateX(-50%) skew(4deg, -13deg) scale(1.1);
    }

    100%{
        transform: translateX(-50%) skew(0deg, 0deg) scale(1);
    }
}

@keyframes lines-move {
    0%{
        transform: translateX(-3px) scale(1.0) rotate(0) skew(0deg, 0deg);
    }

    50%{
        transform: translateX(15px) scale(1.2) rotate(13deg) skew(12deg, 10deg)
    }

    100%{
        transform: translateX(-3px) scale(1) rotate(0) skew(0deg, 0deg);
    }
}

@media (min-width: 768px) {

    .calculator .content-top h2 {
        letter-spacing: -1.2px;
    }

    .calculator .content-top p {
        font-size: 16px;
        width: 70%;
        margin: 0 auto 0 auto;
    }

    .calculator-form .container > div {
        padding: 40px 40px 0 40px;
        background: linear-gradient(78deg,rgba(255, 255, 255, 0.4) 5%, rgba(219, 192, 147, .5) 100%);
    }

    .calculator-download .container > div {
        padding: 40px 40px 0 40px;
        background: linear-gradient(78deg,rgba(255, 255, 255, 0.4) 5%, rgba(219, 192, 147, .5) 100%);
    }

    .calculator-download p {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
    .calculator-download:before {
        bottom:0;
        left: 50%;
        width: 250px;
        height: 320px;
    }

    .calculator-download:after {
        content: '';
        position: absolute;
        bottom:20px;
        left: 50%;
        background-size: 70%;
        width: 195px;
        height: 129px;
    }

    .calculator-program .prices-block .flower-list li span {
        width: 81%;
    }
}

@media (min-width: 992px) {
    .calculator .content-top p {
        width: 50%;
    }

    .calculator-form .calculator-img img {
        margin: 0 0 0 auto;
    }

    .calculator .content-top h2 {
        font-size: 36px;
    }

    .calculator-program .prices-block > div {
        padding: 40px 40px 40px 40px;
        min-height: 400px;
    }

    .calculator-program .prices-block > div h3 {
        padding: 0 18px;
    }
}

@media (min-width: 1200px) {

}

@media (min-width: 1440px) {
    .calculator-program.prices {
        margin-top: 80px;
    }
    .calculator-form .container > div {
        width: 1200px;
        margin-left:auto ;
        margin-right: auto;
    }

    .calculator-program .container{
        width: 1230px;
        margin-left:auto ;
        margin-right: auto;
    }

    .calculator-download .container > div {
        width: 1200px;
        margin-left:auto ;
        margin-right: auto;
    }

    .calculator .content-top h2 {
        width: 51%;
        margin-right: auto;
        margin-left: auto;
        font-size: 46px;
    }

    .calculator-program .prices-block > div h3 {
        padding: 0 5px;
        text-align: left;
    }

    .calculator-form-block .content-top {
        margin-bottom: 40px;
    }

    .calculator .content-top p {
        width: 40%;
    }

    .calculator-program .prices-block .flower-list {
        min-height: 228px;
    }
}

.price-note {
    font-size: 14px!important;
}

.container-4-wochen {
	margin-top: 100px;
}

.was-dich-erwartet {
	margin-bottom: 50px;
}