.write-us a {
    font-size: 14px;
    color: #fff;
    margin: 0 0 10px 0;
}

.write-us  .map_link {
    margin-top: 20px;
}

.copyright {
    text-align: center;
}

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

.breadcrumb li{
    display: inline;
}

.menu .dropdown-toggle>a {
    text-transform: uppercase;
}

.current_crumbs a{
    cursor: default;
    color: #54606E;
}

.full-width {
    width: auto;
}

@media (max-width: 767px) {
    .full-width {
        width: 100%;
    }
}

/* =============================================
   MLM Company Landing Page Styles
   ============================================= */

/* Общие стили для лендинга */
.landing-page .page.page2 {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.landing-page .page-block {
    position: relative;
    width: 100%;
}

.landing-page .border-holder {
    width: 100%;
    position: relative;
}

.landing-page .block-inner {
    position: relative;
    width: 960px;
    margin: 0 auto;
    min-height: inherit;
}

.landing-page .page-element {
    position: absolute;
}

/* Формы лендинга */
.landing-page .email-form-messagebox-wrapper {
    display: none;
}

.landing-page .input-holder {
    margin-bottom: 15px;
}

.landing-page .field-title {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.landing-page .form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    box-sizing: border-box;
}

.landing-page .submit-button {
    cursor: pointer;
    border: none;
    border-radius: 3px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.landing-page .submit-button:hover {
    opacity: 0.9;
}

/* Заголовки лендинга */
.landing-page h1 {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.landing-page p {
    margin: 0;
    padding: 0;
}

/* Кнопки */
.landing-page .btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.landing-page .btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Адаптивные стили для лендинга */
@media (max-width: 1024px) {
    .landing-page .block-inner {
        width: 95%;
        max-width: 960px;
    }
    
    .landing-page .page-element {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: auto !important;
        margin-bottom: 20px;
        max-width: 100%;
    }
    
    .landing-page .page-element img {
        max-width: 100%;
        height: auto;
    }
    
    /* Переставляем порядок элементов на мобильных */
    .landing-page #page_block_below_fold .block-inner {
        display: flex;
        flex-direction: column;
    }
    
    /* Главный заголовок */
    .landing-page #element-1 {
        order: 1;
        text-align: center !important;
        margin-bottom: 20px;
    }
    
    /* Левая колонка с описанием */
    .landing-page #element-3,
    .landing-page #element-4,
    .landing-page #element-6 {
        order: 2;
        margin-bottom: 15px;
    }
    
    /* Форма */
    .landing-page #element-2,
    .landing-page #element-19 {
        order: 3;
        margin-bottom: 30px;
    }
    
    /* Остальные элементы */
    .landing-page .page-element:not(#element-1):not(#element-3):not(#element-4):not(#element-6):not(#element-2):not(#element-19) {
        order: 4;
    }
}

@media (max-width: 768px) {
    .landing-page .page-element {
        font-size: 14px !important;
        padding: 0 15px;
    }
    
    .landing-page .page-element h1 {
        font-size: 24px !important;
    }
    
    .landing-page .page-element span[style*="font-size: 48px"],
    .landing-page .page-element span[style*="font-size: 60px"] {
        font-size: 28px !important;
    }
    
    .landing-page .page-element span[style*="font-size: 30px"] {
        font-size: 22px !important;
    }
    
    .landing-page .page-element span[style*="font-size: 24px"] {
        font-size: 20px !important;
    }
    
    .landing-page .page-element span[style*="font-size: 18px"] {
        font-size: 16px !important;
    }
    
    /* Формы на мобильных */
    .landing-page .form-input {
        font-size: 16px; /* Предотвращает зум на iOS */
    }
    
    .landing-page .submit-button {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
}

/* Анимации для лендинга */
.landing-page .page-element {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.landing-page .page-element:nth-child(1) { animation-delay: 0.1s; }
.landing-page .page-element:nth-child(2) { animation-delay: 0.2s; }
.landing-page .page-element:nth-child(3) { animation-delay: 0.3s; }
.landing-page .page-element:nth-child(4) { animation-delay: 0.4s; }
.landing-page .page-element:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Улучшения для форм */
.landing-page .form-input:focus {
    outline: none;
    border-color: #1ebad6;
    box-shadow: 0 0 5px rgba(30, 186, 214, 0.3);
}

.landing-page .submit-button:active {
    transform: translateY(1px);
}

/* Сообщения об ошибках/успехе */
.landing-page .form-message {
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    font-size: 14px;
}

.landing-page .form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.landing-page .form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Стили для элементов списка с галочками */
.landing-page .page-element div[style*="color: #333333"] {
    line-height: 1.6;
}

/* Улучшения для изображений */
.landing-page .page-element img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.landing-page .page-element img:hover {
    transform: scale(1.05);
}

/* Фиксы для старых браузеров */
.landing-page .box,
.landing-page .strip {
    background-clip: padding-box;
}

/* Скрытие стандартных элементов WordPress на лендинге */
.landing-page .wp-block-group,
.landing-page .entry-header,
.landing-page .entry-content,
.landing-page .entry-footer {
    display: none !important;
}

/* Обеспечиваем правильное отображение полосок */
.landing-page .strip {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Стили для кнопок призыва к действию */
.landing-page .conversion_wrapper a {
    display: block;
    text-decoration: none;
}

.landing-page .dynamic-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.landing-page .dynamic-button:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

/* Стили для загрузки */
.landing-page .loading {
    opacity: 0.7;
    pointer-events: none;
}

.landing-page .loading .submit-button::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.col-lg-12 .about-us .about-det {
    width: 100%;
}

.alignfull {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    max-width: 100vw;
}

/* MLM Landing Page Styles */
.mlm-landing {
    background-color: #ffffff;
}

.mlm-hero {
    background-color: #13202b;
    padding: 60px 0;
    position: relative;
}

.mlm-hero h1 {
    font-size: 48px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

.mlm-hero-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.mlm-hero-text {
    flex: 1;
}

.mlm-hero-text h2 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 20px;
}

.mlm-hero-text p {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
}

.mlm-hero-form {
    flex: 0 0 390px;
    background: transparent;
    border: 1px solid #83838b;
    padding: 30px;
}

.mlm-hero-form h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
}

.mlm-hero-form .form-group {
    margin-bottom: 15px;
}

.mlm-hero-form label {
    color: #fffdfd;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.mlm-hero-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ffffff;
    background-color: #ffffff;
    color: #090909;
    border-radius: 4px;
}

.mlm-hero-form .btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #1ebad6;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mlm-hero-form .btn-submit:hover {
    background-color: #008ca5;
}

.mlm-services {
    padding: 80px 0;
    background-color: #ffffff;
}

.mlm-services h2 {
    font-size: 30px;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
}

.mlm-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mlm-service-item {
    padding: 20px;
}

.mlm-service-item h3 {
    font-size: 18px;
    color: #333333;
    margin-bottom: 15px;
}

.mlm-service-item ul {
    list-style: none;
    padding: 0;
}

.mlm-service-item li {
    font-size: 16px;
    color: #333333;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.mlm-service-item li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #333333;
}

.mlm-focus {
    background-color: #eaeaea;
    padding: 80px 0;
    text-align: center;
}

.mlm-focus h2 {
    font-size: 24px;
    color: #000000;
    margin-bottom: 40px;
}

.mlm-focus-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.mlm-focus h3 {
    font-size: 30px;
    color: #000000;
    margin-bottom: 20px;
}

.mlm-focus p {
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
}

.mlm-pricing {
    background-color: #dbdbdb;
    padding: 80px 0;
}

.mlm-pricing h2 {
    font-size: 30px;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
}

.mlm-pricing-note {
    text-align: center;
    margin-top: 60px;
}
.mlm-pricing-note p { 
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.2;
}

.mlm-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.mlm-price-card {
    background-color: #13202b;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.mlm-price-card h3 {
    font-size: 60px;
    color: #ffffff;
    margin-bottom: 20px;
}

.mlm-price-card p {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.4;
}

.mlm-price-card .highlight {
    color: #1ebad6;
}

.mlm-timeline {
    background-color: #ffffff;
    padding: 80px 0;
}

.mlm-timeline h2 {
    font-size: 30px;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
}

.mlm-timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mlm-timeline-item {
    text-align: center;
    position: relative;
}

.mlm-timeline-number {
    width: 55px;
    height: 55px;
    background-color: #1ebad6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #ffffff;
    font-weight: bold;
}

.mlm-timeline-item h3 {
    font-size: 16px;
    color: #333333;
    margin-bottom: 10px;
}

.mlm-timeline-item p {
    font-size: 16px;
    color: #333333;
    line-height: 1.4;
}

.mlm-partners {
    background-color: #eaeaea;
    padding: 80px 0;
}

.mlm-partners h2 {
    font-size: 30px;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}

.mlm-partners-subtitle {
    font-size: 18px;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
}

.mlm-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
}
.mlm-partners-clients-title {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
}
.mlm-partners-logo {
    text-align: center;
    margin-bottom: 30px;
}

.mlm-investment {
    background-color: #13202b;
    padding: 80px 0;
    text-align: center;
}

.mlm-investment h2 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

.mlm-investment h3 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 40px;
}

.mlm-investment-conditions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.conditions-title {
    color: #ffffff;
}

.mlm-investment-item {
    padding: 20px;
}

.mlm-investment-item h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
}

.mlm-investment-item p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.4;
}

.mlm-cta {
    background-color: #dbdbdb;
    padding: 80px 0;
    text-align: center;
}

.mlm-cta h2 {
    font-size: 24px;
    color: #000000;
    margin-bottom: 40px;
}

.mlm-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.mlm-cta-form {
    background-color: #ffffff;
    border: 1px solid #1ebad6;
    border-radius: 20px;
    padding: 40px;
    max-width: 300px;
    width: 100%;
}

.mlm-cta-form h3 {
    font-size: 18px;
    color: #000000;
    margin-bottom: 20px;
}

.mlm-cta-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #7b9dac;
    background-color: #d9e2e5;
    color: #090909;
    border-radius: 4px;
    margin-bottom: 15px;
}

.mlm-cta-form .btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #172b2f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mlm-cta-form .btn-submit:hover {
    background-color: #008ca5;
}

.mlm-btn-primary {
    display: inline-block;
    padding: 20px 40px;
    background-color: #1ebad6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.mlm-btn-primary:hover {
    background-color: #008ca5;
    color: #ffffff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .mlm-hero-content {
        flex-direction: column;
    }
    
    .mlm-hero-form {
        flex: none;
    }
    
    .mlm-services-grid,
    .mlm-pricing-grid,
    .mlm-timeline-grid,
    .mlm-partners-grid,
    .mlm-investment-conditions {
        grid-template-columns: 1fr;
    }
    
    .mlm-cta-content,
    .mlm-focus-content {
        flex-direction: column;
    }
}

/* Contact Form 7 стили для MLM форм */
.mlm-hero-form .wpcf7-form,
.mlm-cta-form .wpcf7-form {
    margin: 0;
}

.mlm-hero-form .wpcf7-form-control-wrap,
.mlm-cta-form .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 15px;
}

.mlm-hero-form input[type="text"],
.mlm-hero-form input[type="email"],
.mlm-cta-form input[type="text"],
.mlm-cta-form input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ffffff;
    background-color: #ffffff;
    color: #090909;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.mlm-cta-form input[type="text"],
.mlm-cta-form input[type="email"] {
    border: 1px solid #7b9dac;
    background-color: #d9e2e5;
}

.mlm-hero-form .wpcf7-submit,
.mlm-cta-form .wpcf7-submit {
    width: 100%;
    padding: 15px;
    background-color: #1ebad6;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.mlm-cta-form .wpcf7-submit {
    padding: 12px;
    background-color: #172b2f;
}

.mlm-hero-form .wpcf7-submit:hover {
    background-color: #008ca5;
}

.mlm-cta-form .wpcf7-submit:hover {
    background-color: #008ca5;
}

.mlm-hero-form .wpcf7-response-output,
.mlm-cta-form .wpcf7-response-output {
    margin: 10px 0 0 0;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
}

.mlm-hero-form .wpcf7-mail-sent-ok,
.mlm-cta-form .wpcf7-mail-sent-ok {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mlm-hero-form .wpcf7-validation-errors,
.mlm-hero-form .wpcf7-mail-sent-ng,
.mlm-cta-form .wpcf7-validation-errors,
.mlm-cta-form .wpcf7-mail-sent-ng {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.mlm-hero-form .wpcf7-spinner,
.mlm-cta-form .wpcf7-spinner {
    margin: 0 10px;
}

/* Скрываем стандартные лейблы CF7, используем свои */
.mlm-hero-form .wpcf7-form label,
.mlm-cta-form .wpcf7-form label {
    /*display: none;*/
}
.wpcf7-form p {
    margin-bottom: 0!important;
}
.wpcf7-response-output {
    margin: 0!important;
}

/* Стили для плейсхолдеров */
.mlm-hero-form input::placeholder,
.mlm-cta-form input::placeholder {
    color: #999;
    opacity: 1;
}

.mlm-hero-form input::-webkit-input-placeholder,
.mlm-cta-form input::-webkit-input-placeholder {
    color: #999;
}

.mlm-hero-form input::-moz-placeholder,
.mlm-cta-form input::-moz-placeholder {
    color: #999;
    opacity: 1;
}

.mlm-hero-form input:-ms-input-placeholder,
.mlm-cta-form input:-ms-input-placeholder {
    color: #999;
}

/* slider */
.clients-slider .slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-height: 80px!important;
}

.clients-slider .slick-slide img {
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: center;
}