

/* Start:/local/templates/main_page/template_styles.css?176116185319177*/
 :root {
            --primary: #1fadff;
            --secondary: #fc802d;
            --dark: #1a1a2e;
            --gray: #6c757d;
            --light: #f8f9fa;
            --white: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
			text-decoration:none;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: #0d9ae8;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: white;
        }

        .btn-secondary:hover {
            background-color: #f06e1a;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        section {
            padding: 80px 0;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--white);
            box-shadow: var(--shadow);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
			text-decoration:none;
        }

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }

        .logo-text span {
            color: var(--secondary);
        }

        .location-selector {
            display: flex;
            align-items: center;
            cursor: pointer;
            padding: 8px 16px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        .location-selector:hover {
            background-color: rgba(31, 173, 255, 0.1);
        }

        .location-icon {
            margin-right: 8px;
            color: var(--primary);
            font-size: 18px;
        }

        .current-city {
            font-weight: 600;
        }

        .apply-btn {
            background-color: var(--secondary);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
			text-decoration:none;
        }

        .apply-btn:hover {
            background-color: #f06e1a;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            overflow-y: auto;
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: var(--white);
            margin: 50px auto;
            padding: 40px;
            border-radius: 20px;
            width: 90%;
            max-width: 900px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 28px;
            cursor: pointer;
            color: var(--gray);
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            color: var(--dark);
            transform: rotate(90deg);
        }

        .modal-title {
            text-align: center;
            margin-bottom: 30px;
            color: var(--primary);
        }

        .cities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 15px;
        }

        .city-link {
            padding: 12px 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
            text-align: center;
            font-weight: 500;
			text-decoration:none;
			color:var(--primary);
        }

        .city-link:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        /* Hero Banner */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, #0d9ae8 100%);
            color: white;
            padding: 160px 0 100px;
            position: relative;
            overflow: hidden;
        }



        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .hero-image {
            text-align: center;
        }

        .hero-image-placeholder {
            width: 100%;
            height: 300px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 600;
			background: url(https://img.freepik.com/premium-vector/vector-drawing-wallet-with-money-credit-card-wallet-with-money-gold-coins_606226-856.jpg);
			background-size: cover;
			background-repeat: no-repeat;
        }

        .advantages {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
        }

        .advantage {
            text-align: center;
            flex: 1;
            padding: 0 15px;
        }

        .advantage-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .advantage-text {
            font-weight: 600;
        }

        /* About */
        .about {
            background-color: var(--light);
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 50px;
            color: var(--dark);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            margin: 15px auto 0;
            border-radius: 2px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .about-image {
            text-align: center;
        }

        .about-image-placeholder {
            width: 100%;
			
			
            display: flex;
            align-items: center;
            justify-content: center;
			
        }

        /* Calculator */
        .calculator {
            background-color: var(--white);
        }

        .calculator-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .calculator-form {
            background-color: var(--light);
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--dark);
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e1e5ee;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(31, 173, 255, 0.2);
        }

        .range-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .range-value {
            min-width: 80px;
            text-align: center;
            font-weight: 600;
            color: var(--primary);
        }

        input[type="range"] {
            flex: 1;
            height: 8px;
            -webkit-appearance: none;
            background: #e1e5ee;
            border-radius: 4px;
            outline: none;
        }

        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 22px;
            height: 22px;
            background: var(--primary);
            border-radius: 50%;
            cursor: pointer;
        }

        .calculator-result {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .result-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .result-total {
            font-size: 1.8rem;
            font-weight: 700;
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 2px solid rgba(255, 255, 255, 0.3);
        }

        /* Reviews */
        .reviews {
            background-color: var(--light);
        }

        .reviews-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .review-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary);
        }

        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
            font-size: 1.2rem;
        }

        .review-info {
            flex: 1;
        }

        .review-name {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .review-date {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .review-rating {
            color: #ffc107;
            font-size: 1.2rem;
        }

        .review-text {
            font-style: italic;
            line-height: 1.7;
        }

        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            background-color: var(--white);
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background-color: var(--light);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            content: '-';
            color: var(--secondary);
        }

        .faq-answer {
            background-color: var(--light);
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 20px 25px;
            max-height: 500px;
        }

        /* Contacts */
        .contacts-content {
      
	  
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
        }

        .contact-icon {
            margin-right: 15px;
            color: var(--primary);
            font-size: 24px;
            min-width: 30px;
        }

        .contact-details h4 {
            margin-bottom: 5px;
        }

        .map-container {
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #e1e5ee 0%, #c8d0e7 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-weight: 600;
            font-size: 1.2rem;
        }

        /* Back to top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: var(--shadow);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 30px;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            text-align: center;
        }

        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }

        .footer-logo span {
            color: var(--secondary);
        }

        .footer-text {
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.8;
        }

        .site-map-link {
            color: var(--primary);
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .site-map-link:hover {
            color: var(--secondary);
        }
		.txt-center{
				text-align:center;}
		.about-image-placeholder{

			position:relative;
		}
		.about-image-placeholder img{
			width:100%;
			border-radius: 20px;
			}
        /* Responsive */
        @media (max-width: 992px) {
            .hero-content,
            .about-content,
            .calculator-container,
            .contacts-content {
                grid-template-columns: 1fr;
            }

            .hero-text h1 {
                font-size: 2.2rem;
            }

            .advantages {
                flex-direction: column;
                gap: 30px;
            }

            .advantage {
                padding: 0;
            }
        }

        @media (max-width: 768px) {
			
			.hero-text, .about-text{
				text-align:center;}
			.location-selector{
				display:none;}
            .header-container {
				padding-left:10px;
				padding-right:10px;
                gap: 15px;
            }

            .location-selector {
                order: 3;
                margin-top: 10px;
            }

            .hero {
                padding: 180px 0 80px;
            }

            .hero-text h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .calculator-form,
            .calculator-result {
                padding: 25px;
            }

            .cities-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            }
        }
		
		 @media (max-width: 440px) {
			.logo-text{
				 font-size:18px;
				 }
			.header-container .apply-btn{
				padding: 8px 16px;
				font-weight:normal;
				}
			 }
/* End */
/* /local/templates/main_page/template_styles.css?176116185319177 */
