

/* Start:/local/templates/main_page/template_styles.css?176314823821079*/
 /* Основные стили и переменные цветов */
        :root {
            --primary-dark: #2E3740;
            --primary-accent: #FF461B;
            --light-bg: #f8f9fa;
            --text-dark: #333;
            --text-light: #fff;
            --border-radius: 8px;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--light-bg);
        }
        
        /* Фиксированный хедер */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #fff;
            box-shadow: var(--shadow);
            z-index: 1000;
            padding: 15px 0;
        }
        ol, ul{
			margin-left:20px;
			}
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
			text-decoration:none;
        }
        
        .logo-circle {
            width: 40px;
            height: 40px;
            background-color: #FF461B;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 20px;
            margin-right: 12px;
        }
        
        .logo-text {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-dark);
            white-space: nowrap;
        }
        
        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .location-selector {
            display: flex;
            align-items: center;
            cursor: pointer;
            padding: 8px 15px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            white-space: nowrap;
        }
        
        .location-selector:hover {
            background-color: #f0f0f0;
        }
        
        .location-selector i {
            margin-right: 8px;
            color: var(--primary-accent);
        }
        
        .location-selector span {
            font-weight: 600;
            color: var(--primary-dark);
            white-space: nowrap;
        }
        
        .apply-btn {
            background-color: var(--primary-accent);
            color: var(--text-light);
            padding: 12px 20px;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }
        
        .apply-btn:hover {
            background-color: #e03c15;
            transform: translateY(-2px);
        }
        
        /* Модальное окно выбора города */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            overflow-y: auto;
            padding: 20px;
        }
        
        .modal-content {
            max-width: 1000px;
            margin: 40px auto;
            background-color: #fff;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
			height: -webkit-fill-available;
			height: 100%;
			height: -moz-available;          /* WebKit-based browsers will ignore this. */
			height: -webkit-fill-available;  /* Mozilla-based browsers will ignore this. */
			height: stretch;
			overflow-y: scroll;

        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .modal-title {
            font-size: 24px;
            color: var(--primary-dark);
        }
        
        .close-modal {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #777;
            transition: var(--transition);
        }
        
        .close-modal:hover {
            color: var(--primary-accent);
        }
        
        .city-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .city-list a {
            display: block;
            padding: 10px 15px;
            background-color: #f8f9fa;
            border-radius: var(--border-radius);
            color: var(--primary-dark);
            text-decoration: none;
            transition: var(--transition);
			font-size:14px;
        }
        
        .city-list a:hover {
            background-color: var(--primary-accent);
            color: var(--text-light);
        }
        
        /* Основной баннер - отступы задаются динамически */
        .main-banner {
            background: linear-gradient(rgba(46, 55, 64, 0.85), rgba(46, 55, 64, 0.85)), 
                        url('/local/templates/main_page/images/centrofinans-onlajn-zajm.webp');
            background-size: cover;
            background-position: center;
            padding: 0 20px;
            text-align: center;
            color: var(--text-light);
            display: flex;
            align-items: center;
            min-height:500px;
        }
        
        .banner-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 30px 0;
        }
        
        .banner-title {
            font-size: 36px;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .banner-subtitle {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .banner-btn {
            background-color: var(--primary-accent);
            color: var(--text-light);
            padding: 15px 40px;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            display: inline-block;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }
        
        .banner-btn:hover {
            background-color: #e03c15;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Преимущества */
        .advantages {
            padding: 80px 20px;
            background-color: #fff;
        }
        
        .section-title {
            text-align: center;
            font-size: 32px;
            color: var(--primary-dark);
            margin-bottom: 50px;
        }
        
        .advantages-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .advantage-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .advantage-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(255, 70, 27, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary-accent);
            font-size: 28px;
        }
        
        .advantage-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        /* Как получить займ */
        .steps {
            padding: 80px 20px;
            background-color: var(--light-bg);
        }
        
        .steps-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .step {
            display: flex;
            margin-bottom: 50px;
            align-items: center;
        }
        
        .step-number {
            min-width: 50px;
            height: 50px;
            background-color: var(--primary-accent);
            color: var(--text-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: bold;
            margin-right: 30px;
        }
        
        .step-content {
            flex: 1;
        }
        
        .step-title {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        /* Форма заявки */
        .application {
            padding: 80px 20px;
            background: linear-gradient(to right, #2E3740, #1c2127);
            color: var(--text-light);
        }
        
        .form-container {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        
        .form-title {
            text-align: center;
            font-size: 28px;
            margin-bottom: 30px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-input {
            width: 100%;
            padding: 14px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.2);
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 16px;
        }
        .form-input option{
			color:#fff;
			background-color:#454a51;}
        .form-input:focus {
            outline: none;
            border-color: var(--primary-accent);
        }
        
        .form-submit {
            width: 100%;
            padding: 16px;
            background-color: var(--primary-accent);
            color: var(--text-light);
            border: none;
            border-radius: var(--border-radius);
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 10px;
        }
        
        .form-submit:hover {
            background-color: #e03c15;
            transform: translateY(-2px);
        }
        
        /* Новые блоки */
        .benefits-section {
            padding: 80px 20px;
            background-color: #fff;
        }
        
        .benefits-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .benefits-title {
            font-size: 32px;
            color: var(--primary-dark);
            margin-bottom: 30px;
        }
        
        .benefits-list {
            text-align: left;
            margin-bottom: 40px;
        }
        
        .benefits-list li {
            margin-bottom: 15px;
            font-size: 18px;
            line-height: 1.6;
        }
        
        /* Слайдер отзывов */
        .reviews-section {
            padding: 80px 20px;
            background-color: var(--light-bg);
        }
        
        .reviews-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .review-slide {
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-align: center;
            display: none;
        }
        
        .review-slide.active {
            display: block;
        }
        
        .review-text {
            font-size: 18px;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .review-author {
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        .review-rating {
            color: #FFD700;
            margin: 15px 0;
            font-size: 20px;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .slider-dot.active {
            background-color: var(--primary-accent);
        }
        
        /* Залог ПТС */
        .pts-section {
            padding: 80px 20px;
            background-color: white;
        }
        
        .pts-container {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .pts-image {
            flex: 1;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .pts-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .pts-content {
            flex: 1;
        }
        
        .pts-title {
            font-size: 32px;
            color: var(--primary-dark);
            margin-bottom: 20px;
        }
        
        .pts-list li {
            margin-bottom: 15px;
            font-size: 18px;
            line-height: 1.6;
        }
        
        /* Частые вопросы */
        .faq-section {
            padding: 80px 20px;
            background-color: var(--light-bg);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .faq-question {
            background-color: white;
            padding: 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question::after {
            content: '\f078';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            transition: var(--transition);
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            background-color: white;
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 300px;
        }
        
        /* Контакты */
        .contacts-section {
            padding: 80px 20px;
            background-color: white;
        }
        
        .map-container {
            width: 100%;
            height: 500px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            margin: 0 auto;
            max-width: 1200px;
        }
        
        /* Футер */
        footer {
            background-color: var(--primary-dark);
            color: var(--text-light);
            padding: 30px 20px;
            text-align: center;
        }
        .phone-r{
			margin-bottom: 40px;
			text-align: center;
			}
		 .phone-ra{
			
			text-decoration:none;
			font-size:22px;
			color:#FF461B !important;
			font-weight:bold;
			cursor:pointer;
			 }
		 .phone-r span{
			text-decoration:none;
			font-size:22px;
			color:#000;
			font-weight:bold;
			 }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .copyright {
            margin-bottom: 15px;
        }
        
        .sitemap-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .sitemap-link:hover {
            color: var(--primary-accent);
        }
        	ul li{
				margin-left:20px;}
        
		.content-txt{
			font-size:18px;
			max-width:1200px;
			margin:0 auto;
			margin-top:30px;
		}
		.content-txt p, .content-txt-m p{
			margin-bottom:20px;
		}
		.content-txt-m{
			font-size:18px;
			max-width:1200px;
			margin:0 auto;
			margin-bottom:30px;
		}
		/* Адаптивность */
		
		
        @media (max-width: 768px) {
		.phone-r a{
			display:block;}
		.phone-r a, .phone-r span{
			font-size:16px;
			}
            .banner-title {
                font-size: 28px;
            }
            
            .banner-subtitle {
                font-size: 18px;
            }
            
            .step {
                flex-direction: column;
                text-align: center;
            }
            
            .step-number {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .form-container {
                padding: 30px 20px;
            }
            
            .pts-container {
                flex-direction: column;
            }
            
            .map-container {
                height: 400px;
            }
        }
        
        @media (max-width: 650px) {
            .header-container {
                flex-wrap: nowrap;
                justify-content: space-between;
            }
            
            .header-right {
                gap: 10px;
            }
            
            .apply-btn {
                display: none;
            }
            
            .banner-title {
                font-size: 24px;
            }
            
            .section-title {
                font-size: 26px;
            }
            
            .main-banner {
                min-height: 350px;
            }
        }
        
        @media (max-width: 480px) {
            .header-container {
                padding: 0 10px;
            }
            
            .logo-circle {
                width: 26px;
                height: 26px;
                font-size: 18px;
            }
            
            .logo-text {
                font-size: 12px;
            }
            
            .location-selector {
                padding: 8px 10px;
            }
            
            .location-selector i {
                font-size: 14px;
            }
            
            .location-selector span {
                font-size: 12px;
            }
            
            .banner-title {
                font-size: 22px;
            }
            
            .banner-btn {
                padding: 12px 30px;
                font-size: 16px;
            }
            
            .main-banner {
                min-height: 300px;
            }
        }
/* End */
/* /local/templates/main_page/template_styles.css?176314823821079 */
