.elementor-80 .elementor-element.elementor-element-59d3653a{--display:flex;}.elementor-80 .elementor-element.elementor-element-59d3653a:not(.elementor-motion-effects-element-type-background), .elementor-80 .elementor-element.elementor-element-59d3653a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F3F5F894;}.elementor-80 .elementor-element.elementor-element-59d3653a.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-80 .elementor-element.elementor-element-6b48b604 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-80 .elementor-element.elementor-element-6b48b604{text-align:start;font-family:"Tahoma", Sans-serif;}.elementor-80 .elementor-element.elementor-element-40c3e62{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-80 .elementor-element.elementor-element-40c3e62.e-con{--flex-grow:0;--flex-shrink:0;}@media(max-width:1366px){.elementor-80 .elementor-element.elementor-element-6b48b604 > .elementor-widget-container{margin:0px 0px 0px 50px;}}@media(max-width:1024px){.elementor-80 .elementor-element.elementor-element-6b48b604 > .elementor-widget-container{margin:0px 0px 0px 20px;}}@media(max-width:767px){.elementor-80 .elementor-element.elementor-element-6b48b604 > .elementor-widget-container{margin:0px 0px 0px 10px;}}@media(min-width:768px){.elementor-80 .elementor-element.elementor-element-59d3653a{--width:100%;}.elementor-80 .elementor-element.elementor-element-40c3e62{--width:100%;}}@media(max-width:1366px) and (min-width:768px){.elementor-80 .elementor-element.elementor-element-59d3653a{--width:1259px;}}@media(min-width:2400px){.elementor-80 .elementor-element.elementor-element-6b48b604 > .elementor-widget-container{margin:0px 0px 0px 200px;}}/* Start custom CSS for text-editor, class: .elementor-element-6b48b604 *//* Стилизация основного текстового контента */
.main-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    border: 1px solid #eef2f7;
}

/* Заголовки внутри контента */
.content-title {
    color: #2c3e50;
    font-size: 2.2em;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3498db;
    font-weight: 600;
    position: relative;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

/* Подзаголовки */
.content-subtitle {
    color: #34495e;
    font-size: 1.6em;
    margin: 30px 0 15px 0;
    padding-left: 15px;
    border-left: 4px solid #f39c12;
    font-weight: 500;
}

/* Абзацы */
.content-text {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #444;
    line-height: 1.7;
}

/* Списки */
.content-list {
    margin: 20px 0;
    padding-left: 25px;
}

.content-item {
    margin-bottom: 12px;
    padding-left: 10px;
    position: relative;
    color: #555;
}

.content-item::before {
    content: '•';
    color: #3498db;
    font-size: 1.5em;
    position: absolute;
    left: -15px;
    top: -2px;
}

/* Цитаты и важные блоки */
.content-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #e74c3c;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Таблицы (если есть) */
.content-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.content-table th {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 500;
}

.content-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.content-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.content-table tr:hover {
    background-color: #e3f2fd;
    transition: background-color 0.3s;
}

/* Код или технические блоки */
.content-code {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 20px;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    margin: 20px 0;
    overflow-x: auto;
    border: 1px solid #34495e;
}

/* Ссылки внутри текста */
.content-link {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px dashed #3498db;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.content-link:hover {
    color: #e74c3c;
    border-bottom: 1px solid #e74c3c;
}

/* Изображения внутри текста */
.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
}

/* Подписи к изображениям */
.image-caption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: -10px;
    margin-bottom: 25px;
    font-size: 0.95em;
}

/* Разделители */
.content-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
    margin: 30px 0;
    border: none;
}

/* Блоки с предупреждениями/советами */
.content-tip {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #c3e6cb;
    border-left: 5px solid #28a745;
    padding: 20px;
    border-radius: 0 10px 10px 0;
    margin: 20px 0;
}

.content-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffeaa7;
    border-left: 5px solid #ffc107;
    padding: 20px;
    border-radius: 0 10px 10px 0;
    margin: 20px 0;
}

/* Нумерованные списки */
.ordered-list {
    counter-reset: item;
    padding-left: 25px;
}

.ordered-item {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    counter-increment: item;
}

.ordered-item::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background: #3498db;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-size: 0.9em;
}

/* Адаптивность для текста */
@media (max-width: 768px) {
    .main-content {
        padding: 20px;
        margin: 0 10px 30px 10px;
    }
    
    .content-title {
        font-size: 1.8em;
        padding-bottom: 10px;
    }
    
    .content-subtitle {
        font-size: 1.4em;
    }
    
    .content-text {
        font-size: 1em;
    }
}

/* Плавное появление текста */
.content-text, .content-title, .content-subtitle {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-59d3653a *//* Стилизация основного текстового контента */
.main-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    border: 1px solid #eef2f7;
}

/* Заголовки внутри контента */
.content-title {
    color: #2c3e50;
    font-size: 2.2em;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3498db;
    font-weight: 600;
    position: relative;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

/* Подзаголовки */
.content-subtitle {
    color: #34495e;
    font-size: 1.6em;
    margin: 30px 0 15px 0;
    padding-left: 15px;
    border-left: 4px solid #f39c12;
    font-weight: 500;
}

/* Абзацы */
.content-text {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #444;
    line-height: 1.7;
}

/* Списки */
.content-list {
    margin: 20px 0;
    padding-left: 25px;
}

.content-item {
    margin-bottom: 12px;
    padding-left: 10px;
    position: relative;
    color: #555;
}

.content-item::before {
    content: '•';
    color: #3498db;
    font-size: 1.5em;
    position: absolute;
    left: -15px;
    top: -2px;
}

/* Цитаты и важные блоки */
.content-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #e74c3c;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Таблицы (если есть) */
.content-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.content-table th {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 500;
}

.content-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.content-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.content-table tr:hover {
    background-color: #e3f2fd;
    transition: background-color 0.3s;
}

/* Код или технические блоки */
.content-code {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 20px;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    margin: 20px 0;
    overflow-x: auto;
    border: 1px solid #34495e;
}

/* Ссылки внутри текста */
.content-link {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px dashed #3498db;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.content-link:hover {
    color: #e74c3c;
    border-bottom: 1px solid #e74c3c;
}

/* Изображения внутри текста */
.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
}

/* Подписи к изображениям */
.image-caption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: -10px;
    margin-bottom: 25px;
    font-size: 0.95em;
}

/* Разделители */
.content-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
    margin: 30px 0;
    border: none;
}

/* Блоки с предупреждениями/советами */
.content-tip {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #c3e6cb;
    border-left: 5px solid #28a745;
    padding: 20px;
    border-radius: 0 10px 10px 0;
    margin: 20px 0;
}

.content-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffeaa7;
    border-left: 5px solid #ffc107;
    padding: 20px;
    border-radius: 0 10px 10px 0;
    margin: 20px 0;
}

/* Нумерованные списки */
.ordered-list {
    counter-reset: item;
    padding-left: 25px;
}

.ordered-item {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    counter-increment: item;
}

.ordered-item::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background: #3498db;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-size: 0.9em;
}

/* Адаптивность для текста */
@media (max-width: 768px) {
    .main-content {
        padding: 20px;
        margin: 0 10px 30px 10px;
    }
    
    .content-title {
        font-size: 1.8em;
        padding-bottom: 10px;
    }
    
    .content-subtitle {
        font-size: 1.4em;
    }
    
    .content-text {
        font-size: 1em;
    }
}

/* Плавное появление текста */
.content-text, .content-title, .content-subtitle {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}/* End custom CSS */