/* Общие стили */
body {
    margin: 0;
    /*font-family: Arial, sans-serif;*/
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-family: Avenir Next, Noto Sans SC Bold, Noto Sans TC Bold, Noto Sans JP Bold, Noto Sans KR Bold, Tajawal ExtraBold, Arimo Bold, Kanit SemiBold, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.container.tariffs {
    max-width: 100%;
}

.container.reviews {
    max-width: 800px;
}



.reasons-red {
    background-color: rgba(252, 13, 13, 0.66);
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #cc0606;
}




.btn-primary:hover {
    background-color: #000;
    color: #fff;
}

.btn-secondary {
    display: inline-block;
    padding: 8px 16px;
    background-color: #cdf090; /* Салатовый цвет */
    color: #000;
    text-decoration: none;
    border: 2px solid #bfe5cb;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #000; /* Более тёмный салатовый цвет */
    color: #fff;
}

/* Секции */
.section:nth-child(odd) {
    background-color: #ffffff; /* Бежевый фон */
}

.section:nth-child(even) {
    background-color: #f1fdf3; /* Нежно-светло-грязно-салатовый фон */
}
.section-title.white {
    color: #fff;
}

/*.reasons-list b {
    color: #C41E3A;
}*/

.section-title {
    font-size: 2rem;
   /* color: #C41E3A;*/
    margin-bottom: 10px;
    text-align: center;
}

#why-diets-dont-work {
    /*max-width: 800px;*/
    margin: 0 auto 20px auto;
}

#why-diets-dont-work p {
    margin-bottom: 0;

}

.guide-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.guide-card-header-text {
    font-size: 1.4rem;
    margin-left: 5px;
    font-weight: 600;

}

.guide-cards {
    display: flex;
    flex-wrap: wrap;

    gap: 20px;
    justify-content: center;
}

.guide-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px 20px 20px 10px;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background-color: transparent;
    border-radius: 50%;
    /*border: 1px solid #6f9b43;*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.guide-card p {
    margin: 0;
    font-size: 1rem;
    color: #555;
}

.guide-card p strong {
    display: block;
    font-size: 1.1rem;
    color: #344e41;
}

.reasons-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 10px;
    margin-block-start: 0px;

}


.reason {
    margin-bottom: 0;
}

.reason strong{
    color: #25362e;
    font-weight: 600;
    font-size: 1rem;
}
.reason p {
    margin-block-start: 0;
    margin-block-end: 0;
}

.separator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 0;
}


.separator::after {
    content: '...'; /* Use three dots as separators */
    display: inline-block;
    width: auto;
    height: auto;
    background-color: transparent;
    border-radius: 0;
    /*font-size: 5rem;*/ /* Increase font size */
    margin: 0 4px;
}

.author ul {
    list-style: none; /* Remove default bullets */
    padding: 0;
}

.author ul li {
    position: relative;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.author ul li::before {
    content: '•'; /* Custom bullet */
    /*position: absolute;*/
    left: 10px;
    margin-right: 10px;
    color: #cdf090; /* Green color for bullet */
    font-size: 1.2rem; /* Adjust size as needed */
    line-height: 1; /* Align with text */
    top: 0.1em;
}

.accordion {
    border: 1px solid #ddd;
    border-radius: 4px;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    position: relative;
    background-color: #f7f7f7;
    cursor: pointer;
    padding: 10px 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center; /* Center content vertically */
    justify-content: space-between; /* Space between text and icon */
}

.accordion-header .icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-header.active .icon {
    transform: rotate(5deg); /* Rotate to show minus sign */
}

.accordion-content {
    padding: 15px;
    display: none;
    background-color: white;
}

.accordion-content p {
    margin: 0;
}

#practical-guide p {
    text-align: center;
}

#program p {
    text-align: center;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.btn-telegram {
    display: inline-flex;
    align-items: center;
    background-color: #0088cc; /* Telegram blue color */
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;

    justify-content: center;
}
.btn-telegram span {
    padding-top: 4px;
}

.btn-telegram:hover {
    background-color: #007ab8; /* Darker blue on hover */
}

.btn-telegram img {
    margin-right: 8px; /* Space between icon and text */
    width: 20px; /* Adjust icon size */
    height: 20px;
}

.text, .image {
    flex: 1;
    min-width: 300px;
    margin: 10px;
}

.image img {
    max-width: 100%;
    height: auto;
}

.results-list, .faq-list {
    list-style-type: disc;
    text-align: left;
    margin: 0 auto 10px auto;
    max-width: 800px;
    padding-left: 5px;
}

.results-list li, .faq-list li {
    margin: 10px 0;
}

.program-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px auto;
    max-width: 600px;
    padding-left: 20px;
}

.program-list li {
    margin:  0; /* Reduced vertical spacing */
    position: relative;
    padding-left: 20px;
    line-height: 18px;
    letter-spacing: -0.7px; /* Уменьшает расстояние между буквами */
}

.program-list li::before {
    content: '-'; /* Dash before each list item */
    position: absolute;
    left: 0;
    top: 0;
    color: #555;
}

.bonuses-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px auto;
    max-width: 600px;
}

.bonuses-list li {
    position: relative;
    padding-left: 0;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}



/*.bonuses-list li::before {
    content: '\2713'; !* Unicode for a more elegant checkmark *!
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #cdf090; !* Darker green color *!
    color: #fff; !* White color for checkmark *!
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem; !* Smaller font size for a more elegant look *!
    font-weight: normal; !* Normal font weight for a more elegant look *!
}*/

.bonuses-list li ul {
    list-style: circle;
    padding-left: 20px;
}

.bonuses-list li ul li {
    position: static;
    padding-left: 0;
    margin-bottom: 5px;
}

.guide-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px auto;
    max-width: 800px;
}

.guide-list li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.icon {
    font-size: 1.2rem;
    margin-right: 10px;
}

.guide-title {
    font-size: 1.1rem; /* Slightly smaller font size */
    color: #344e41;
    margin: 0;
}

.guide-description {
    font-size: 1rem;
    color: #555;
    margin: 5px 0 0 0;
}

/* Тарифы */
.tariff-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tariff-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.tariff-card h3 {
    margin-block-end: 0;
}

.tariff-card h5 {
    margin-block-start: 0;
    font-weight: 400;
    font-style: italic;
    margin-block-end: 0;
    color: #344e41;
}

p {
    display: block;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    unicode-bidi: isolate;
}

.tariff-price-month {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff0202;
    position: relative;
    height: 30px;
}

.tariff-title {
    font-size: 1.5rem;
    color: #344e41;
    margin-bottom: 10px;
}

.tariff-price-old {
    font-size: 1.5rem;
    color: #6d9e78;
    text-decoration: line-through;
    font-weight: 500;
    margin-block-start: 0;
    margin-block-end: 0;
}

.tariff-price {
    font-size: 2.2rem;
    font-weight: 600;
    color: #6d9e78;

    line-height: 30px;
    margin-top: 10px;
    margin-bottom: 0;
}

.tariff-header {
    font-weight: 600;
}

.tariff-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
    line-height: 17px;
}

.tariff-features li {
    margin-bottom: 10px;
    color: #555;
}

/* Авторы */
.authors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.author {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0; /* Remove padding */
    width: 300px;
    text-align: center;
    overflow: hidden; /* Ensure the image doesn't overflow the card */
}

.author-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 500 / 649;
    object-fit: cover;
    margin: 0; /* Remove margin */
    display: block; /* Ensure the image is a block element */
}

.author h3 {
    font-size: 1.5rem;
    color: #344e41;
    margin-bottom: 10px;
}

.author p {

    color: #555;
    margin: 0 20px 20px 5px;
}

/* Подвал */
.footer {
    /*background-color: #C41E3A;*/
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.section-title.black {
    color: #333;
}

.footer-text {
    margin: 0;
}

.footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

#reviews {
    text-align: center;
    padding: 0 0;
    position: relative;
}



.swiper-button-next, .swiper-button-prev {
    color: #6fad05 !important;
}


@media (min-width: 768px){



    footer {
        position: relative;
        background-image: url('leafs.webp');
        background-size: cover;
        background-position: center;
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

    footer .container {
        position: relative;
        z-index: 2;
    }

    .main-photo-text {
        position: absolute;
        top: 60px;
        left: 245px;
        right: 20px;

    }
    .main-photo-text2 {
        position: absolute;
        top: 200px;
        left: 240px;
        right: 20px;

    }

    .main-photo-wrapper {
        height: 400px;
        width: 600px;
        background-image: url('main_photo_desktop.jpg');
        background-size: cover;
        background-position: center;
        position: relative;
        margin: 0 auto;
    }

    .btn-primary.main {
        font-size: 1.2rem;
        padding: 8px 5px;
        position: absolute;
        bottom: -20px;
        margin: 0 auto;
        right: 20px;
        left: 20px;
        border: 1px solid #ffffff;
        /*background-color: #2d4131;*/
        background-image: url('leafs.webp');
        background-size: cover;
        background-position: center;
        color: white;
        font-weight: 600;
        /*color: #1f3128;*/
        /*color: black;
        background-color: #cdf090;*/
        width: 50%;
        z-index: 10;
        text-align: center;
        justify-content: center;
    }

    .btn-primary-main-text {
        color: white;
        z-index: 11;
    }

    .btn-primary.main::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

    .btn-primary {
        display: flex;
        /*width: fit-content;*/
        padding: 10px 20px;
        /*background-color: #cdf090;*/ /* Салатовый цвет */
        /*color: #000;*/
        text-decoration: none;
        border-radius: 5px;
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0 auto;
        transition: background-color 0.3s;
        width: 200px;
        color: white;
        z-index: 10;
        justify-content: center;
        border: 1px solid #ffffff;
        background-color: #2d4131;
        /*background-image: url('leafs.webp');
        background-size: cover;
        background-position: center;*/
        text-align: center;

    }

    .btn-primary.month {
        border: 1px solid #2d4131;
        background-color: #fff;
        color: #2d4131;
        margin-top: 20px;
    }

    .btn-primary-main-text {
        color: white;
        z-index: 11;
    }




    .header {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 1;
        color: #fff;
        text-align: left;
        padding-top: 0; /* Adjust padding to position text */
        padding-bottom: 0; /* Add padding to ensure text is not overlapped */
        /*min-height: 400px;*/
        background-image: url('leafs.webp');
        background-size: cover;
        background-position: center;
        width: 600px;
        margin: 0 auto;
    }

    header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

    .header-text {
        z-index: 9;
    }

    .header-title {
        text-align: center;
        font-size: 2.5rem;
        color: #fff;
        z-index: 9;
    }

    .header-subtitle {
        font-size: 1.2rem;
        color: #fff;
        /*margin-top: 40px;*/
        text-align: center;
        display: flex;
        justify-content: center;
        z-index: 9;
        margin: 0 auto 30px auto;
    }

    #guide {
        position: relative;
        background-image: url('leafs.webp');
        background-size: cover;
        background-position: center;
    }

    #guide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*background-color: rgba(255, 0, 0, 0.6);*/ /* Light red color with 50% opacity */
        z-index: 1;
    }

    #guide .container {
        position: relative;
        z-index: 2;
    }



    header .container {
        position: relative;
        z-index: 2;
    }


    .header-text {

        max-width: 600px;

    }

    .container.first {
        max-width: 600px;

    }


    body {
         background-color: white;
    }

    .container.guide {
        max-width: 600px;
    }



    .container.results {
        max-width: 600px;
    }

    /*.header-subtitle {
        margin-top: 30px;
        !*width: 400px;*!
    }*/

    .header-text-detailed {
        /*position: absolute;*/

        background-color: rgba(255, 255, 255, 1);
        /*color: black;*/
        padding: 10px;

        font-weight: 500;

        text-align: center;
        color: #344e41;
        line-height: 18px;
        z-index: 9;
        border-radius: 5px;
    }


    .header-content {
        display: flex;
        /*max-width: 800px;*/
        width: 100%;
        margin: 0 auto;
        flex-wrap: wrap;
        z-index: 2;
    }

    .header-text {
        margin: 0 auto;
    }



    .main-photo {
        width: 400px;
        object-fit: cover;
        display: none;

        /*display: block;*/ /* Ensure the image is a block element */

        /*max-width: 100%;*/ /* Set maximum width for desktop */
        height: 400px; /* Maintain aspect ratio */
        /*object-fit: cover;*/
        margin: 0 auto; /* Center the image */
        /*display: block; !* Ensure the image is a block element *!*/
        position: absolute;
        top: 140px;
        right: 0;
        left: 0;
        z-index: -1;

        content: url('main_photo_desktop.jpg'); /* Use desktop image */

    }



    header {

        position: relative;
        background-image: url('leafs.webp');
        background-size: cover;
        background-position: center;
    }

    .swiper-container {
        width: 100%;
        padding-top: 20px;
        padding-bottom: 40px;

        max-width: 100%;
        overflow-x: hidden;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        width: 100%;
        height: auto;
        max-width: 300px;
        border-radius: 10px;
    }

    .guide-card-text {
        display: flex;
        justify-content: center;
        margin: 0 auto;
        text-align: center;
    }




}

/* Адаптивность */



@media (max-width: 768px) {

    .tariff-sale {
        position: absolute;
        width: 200px;
        margin-left: 0;
        top: -45px;
        left: 65px;
    }

    .main-photo-text {
        position: absolute;
        top: 20px;
        left: 120px;
        right: 20px;

    }
    .main-photo-text2 {
        position: absolute;
        top: 140px;
        left: 125px;
        right: 20px;

    }

    .main-photo-wrapper {
        min-height: 250px;
        background-image: url('main_photo_desktop.jpg');
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .btn-primary.main {
        font-size: 1.2rem;
        padding: 8px 5px;
        position: absolute;
        bottom: -20px;
        margin: 0 auto;
        right: 20px;
        left: 20px;
        border: 1px solid #ffffff;
        /*background-color: #2d4131;*/
        background-image: url('leafs.webp');
        background-size: cover;
        background-position: center;
        color: white;
        font-weight: 600;
        /*color: #1f3128;*/
        /*color: black;
        background-color: #cdf090;*/
        width: 80%;
        z-index: 10;
        text-align: center;
        justify-content: center;
    }

    .btn-primary-main-text {
        color: white;
        z-index: 11;
    }

    .btn-primary.main::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

    #tariffs {
        background-image: url('leafs.webp');
        background-size: cover;
        background-position: center;
    }

    #tariffs .section-title {
        color: #fff;
        font-size: 1.4rem;
        font-weight: 600;
    }

    #tariffs::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;

        z-index: 1;
    }


    .btn-primary {
        display: flex;
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 5px;
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0 auto;
        transition: background-color 0.3s;
        width: 200px;
        color: white;
        z-index: 10;
        justify-content: center;
        border: 1px solid #ffffff;
        background-color: #2d4131;
        text-align: center;
    }

    .btn-primary.month {
        border: 1px solid #2d4131;
        background-color: #fff;
        color: #2d4131;
        margin-top: 20px;
    }

    .btn-primary-main-text {
        color: white;
        z-index: 11;
    }






    .header {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 1;
        color: #fff;
        text-align: left;
        padding-top: 0; /* Adjust padding to position text */
        padding-bottom: 0; /* Add padding to ensure text is not overlapped */
        /*min-height: 400px;*/
        background-image: url('leafs.webp');
        background-size: cover;
        background-position: center;
    }

    header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

    .header-text {
        z-index: 9;
    }

    .header-title {
        text-align: center;
        font-size: 2.5rem;
        color: #fff;
        z-index: 9;
    }

    .header-subtitle {
        font-size: 1.2rem;
        color: #fff;
        margin-top: 40px;
        text-align: center;
        z-index: 9;
    }

    /*.header::after {
        content: '';
        display: block;
        position: absolute;
        bottom: -20px; !* Adjust as needed *!
        left: 0;
        width: 100%;
        height: 40px; !* Adjust as needed *!
        background: #fff; !* Background color of the wave *!
        border-radius: 50% 50% 0 0;
        transform: scaleX(1.5);
    }*/

    #guide {
        position: relative;
        background-image: url('leafs.webp');
        background-size: cover;
        background-position: center;
    }

    #guide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*background-color: rgba(0, 0, 0, 0.4);*/
        z-index: 1;
    }

    #guide .container {
        position: relative;
        z-index: 2;
    }

    .guide-card-text {
        display: flex;
        justify-content: center;
        margin: 0 auto;
        text-align: center;
    }





   /* header .container {
        position: relative;
        z-index: 2;
    }*/

    footer {
        position: relative;
        background-image: url('leafs.webp');
        background-size: cover;
        background-position: center;
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

    footer .container {
        position: relative;
        z-index: 2;
    }

    .swiper-container {
        width: 100%;
        padding-top: 20px;
        padding-bottom: 40px;

        max-width: 100%;
        overflow-x: hidden;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        width: 100%;
        height: auto;
        max-width: 300px;
        border-radius: 10px;
    }

    .header-title {
        font-size: 2rem;
    }

    .header-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .content {
        flex-direction: column;
    }

    .tariff-card, .author {
        width: 100%;
    }

    .header {

        flex-direction: column;
        text-align: center;
        padding-top: 0;
        padding-bottom: 10px;

    }

    .main-photo {
        width: 100px;
        /*max-width: 100%;*/ /* Set maximum width for desktop */
        height: 200px; /* Maintain aspect ratio */
        object-fit: cover;
        margin: 0; /* Center the image */
        display: block; /* Ensure the image is a block element */
        position: absolute;
        top: 200px;
        z-index: -1;
        content: url('main_photo_mobile.jpg'); /* Use desktop image */
    }


    .header-content {
        padding-right: 0;
    }



    .header-text {
        color: white;
    }

    .header-content {
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center content vertically */
        height: fit-content; /* Adjust height to match the main photo */
    }

    .header-text-detailed {
        position: absolute;
        /*bottom: 60px;*/
        background-color: rgba(255, 255, 255, 0.84);
        /*color: black;*/
        padding: 10px 10px 10px 10px;
        font-weight: 500;
        width: 100%;
        top: 162px;
        /*list-style-type: disc; *//* Add bullet points */

        color: #333;
        line-height: 18px;
        text-align: center;

        /*margin: 40px auto 0 auto;*/
    }



    .header-subtitle {
        margin: 5px auto;
        font-size: 1.2rem;
    }

    .header-created {
        display: none;
    }




     .btn-secondary {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .header-title {
        font-size: 1.8rem;
        margin: 20px auto 0 auto;
    }

    .section-title {
        font-size: 1.2rem;
    }

}

.snowflake-list {
    list-style-type: none;
    padding-left: 0;
}

.snowflake-list li {
    position: relative;
    padding-left: 25px;
}



.reasons-list.first {
    margin-top: 30px;
}

.li-wrap {
    background-color: #fdd5d5;
    padding: 10px;
    border-radius: 5px;
}

.div-center {
    background-color: #fdd5d5;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    flex-direction: column;

}

.div-center div {
    display: flex;
    justify-content: center;
}