 .RWreviews-container {
            margin: 0 auto;
            padding: 20px 20px 80px 20px;
            position: relative;
            overflow: hidden;
            width: 70%;
            touch-action: pan-x;
        }
        modal-nav modal-next{
			
		}
        .RWreviews-wrapper {
            display: flex;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: grab;
            -webkit-overflow-scrolling: touch;
            -webkit-user-select: none;
            -webkit-touch-callout: none;
            -webkit-tap-highlight-color: transparent;
            user-select: none;
            gap: 2%;
        }
        
        .RWreviews-wrapper.RWgrabbing {
            cursor: grabbing;
            transition: none;
        }
        
        .RWreview-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            padding: 24px;
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 0 0 100%;
            min-width: 100%;
            min-height: 300px;
            max-height: 500px;
            -webkit-user-drag: none;
            -webkit-touch-callout: none;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        
        .RWreview-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }
        
        .RWreview-avatar {
            width: 0px;
            height: 0px;
            border-radius: 0%;
            overflow: hidden;
            margin-bottom: 0px;
            border: 0px solid #f0f0f0;
        }
        
        .RWreview-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .RWreview-name {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 16px;
            color: #333;
            text-align: center;
        }
        
        .RWreview-text {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            text-align: center;
            flex: 1;
            position: relative;
            padding: 0 4px;
            margin-bottom: 16px;
            max-height: 200px;
            overflow: hidden;
            -webkit-user-select: text;
            user-select: text;
        }
        
        .RWreview-text.RWcollapsed {
            max-height: 120px;
            position: relative;
            width: 105%;
        }
        
        .RWreview-text.RWcollapsed::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 30px;
            background: linear-gradient(transparent, white);
            pointer-events: none;
        }
        
        .RWreviews-nav {
            position: absolute;
            bottom: 0px;
            left: 0%;
            transform: translateX(-50%);
            display: none;
            gap: 0px;
            z-index: 0;
            width: 0px;
            font-size: 0px;
        }
        
        .RWnav-button {
            width: 44px;
            height: 44px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 2px 12px rgba(0,0,0,0.15);
            color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            outline: none;
            transition: all 0.3s ease;
            font-size: 20px;
            font-weight: bold;
            -webkit-tap-highlight-color: transparent;
        }
        
        .RWnav-button:hover {
            background: #f8f8f8;
            transform: scale(1.05);
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }
        
        .RWnav-button:active {
            transform: scale(0.95);
        }
        
        .RWnav-button.RWdisabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        
        .RWpagination-dots {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            gap: 8px;
            z-index: 10;
        }
        
        .RWdot {
            width: 8px;
            height: 8px;
            background: #ccc;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .RWdot.RWactive {
            background: #333;
            transform: scale(1.3);
        }
        
        .RWscroll-hint {
            text-align: center;
            margin-top: 16px;
            font-size: 14px;
            color: #888;
            opacity: 0.8;
            animation: RWfadeInOut 3s infinite;
        }
        
        @keyframes RWfadeInOut {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 0.4; }
        }
        
        /* ÃÅ“ÃÂ¾ÃÂ´ÃÂ°ÃÂ»Ã‘Å’ÃÂ½ÃÂ¾ÃÂµ ÃÂ¾ÃÂºÃÂ½ÃÂ¾ */
        .RWmodal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.8);
            backdrop-filter: blur(5px);
            animation: RWfadeIn 0.3s ease;
        }
        
        .RWmodal.RWactive {
            display: block;
        }
        
        @keyframes RWfadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .RWmodal-content {
            background-color: #fefefe;
            margin: 50px auto;
            padding: 0;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow: hidden;
            position: relative;
            animation: RWslideIn 0.3s ease;
        }
        
        @keyframes RWslideIn {
            from { 
                transform: translateY(-50px);
                opacity: 0;
            }
            to { 
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .RWmodal-header {
            padding: 20px;
            background: #134FA9;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .RWmodal-title {
            font-size: 24px;
            font-weight: 600;
            margin: 0;
        }
        
        .RWclose {
            background: none;
            border: none;
            color: white;
            font-size: 32px;
            cursor: pointer;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.2s;
        }
        
        .RWclose:hover {
            background-color: rgba(255,255,255,0.2);
        }
        
        .RWmodal-body {
            position: relative;
            height: 70vh;
            overflow: hidden;
        }
        
        .RWmodal-reviews-wrapper {
            display: flex;
            height: 100%;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .RWmodal-review-card {
            flex: 0 0 100%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
            overflow-y: auto;
        }
        
        .RWmodal-review-name {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 24px;
            color: #333;
            text-align: center;
        }
        
        .RWmodal-review-text {
            font-size: 18px;
            line-height: 1.7;
            color: #555;
            text-align: left;
            max-width: 600px;
            width: 100%;
        }
        
        .RWmodal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }
        
        .RWmodal-nav.RWleft {
            left: 20px;
        }
        
        .RWmodal-nav.RWright {
            right: 20px;
        }
        
        .RWmodal-nav-button {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.9);
            border: none;
            border-radius: 50%;
            color: #333;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
        }
        
        .RWmodal-nav-button:hover {
            background: white;
            transform: scale(1.1);
        }
        
        .RWmodal-nav-button.RWdisabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        
        .RWmodal-nav-button.RWdisabled:hover {
            transform: none;
        }
        
        .RWmodal-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
        }
        
        .RWmodal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .RWmodal-dot.RWactive {
            background: #667eea;
            transform: scale(1.3);
        }
        
        /* ÃÂÃÂ´ÃÂ°ÃÂ¿Ã‘â€šÃÂ¸ÃÂ²ÃÂ½ÃÂ¾Ã‘ÂÃ‘â€šÃ‘Å’ ÃÂ´ÃÂ»Ã‘Â ÃÂ¼ÃÂ¾ÃÂ±ÃÂ¸ÃÂ»Ã‘Å’ÃÂ½Ã‘â€¹Ã‘â€¦ Ã‘Æ’Ã‘ÂÃ‘â€šÃ‘â‚¬ÃÂ¾ÃÂ¹Ã‘ÂÃ‘â€šÃÂ² */
        @media (max-width: 768px) {
            .RWmodal-content {
                margin: 5% auto;
                width: 95%;
                height: 95%;
            }
            
            .RWmodal-review-card {
                padding: 15px 50px;
                height: 90%;
            }
            
            .RWmodal-review-name {
                font-size: 18px;
                margin-bottom: 5px;
            }
            
            .RWmodal-review-text {
                font-size: 15px;
                line-height: 1.6;
            }
            
            .RWmodal-nav-button {
                width: 44px;
                height: 44px;
                font-size: 20px;
            }
            
            .RWmodal-nav.RWleft {
                left: 5px;
            }
            
            .RWmodal-nav.RWright {
                right: 5px;
            }
        }
        
        @media (max-width: 480px) {
			.RWmodal-dots {
    position: absolute;
    bottom: 10px !important;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}
			.modal-next{
				background: #134FA9 !important;
			}
			.modal-prev{
					background: #134FA9 !important;
			}
            .RWreviews-container {
                padding: 16px 16px 4% 16px;
                width: 90%;
            }
            
            .RWreview-card {
                padding: 20px;
                border-radius: 10px;
                min-height: 250px;
            }
            
            .RWreview-name {
                font-size: 20px;
            }
            
            .RWreview-text {
                font-size: 15px;
                line-height: 1.5;
            }
            
            .RWnav-button {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }
        
        .RWreviews-container * {
            -webkit-user-select: none;
            -webkit-touch-callout: none;
            -webkit-tap-highlight-color: transparent;
        }
        
        .RWreview-text, .RWmodal-review-text {
            -webkit-user-select: text;
            user-select: text;
        }
.footer-block {font-size: 14px;font-weight: 400;line-height: 1.5;padding: 73px 0 87px;font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;}
.footer-row {display: grid;grid-template-columns: repeat(3, 1fr);grid-gap: 24px;margin-bottom: 36px;}
.footer-column {}
.footer a:link {
		color:  #FFFFFF;
    text-decoration: none;
		list-style: none;
	}
.footer a:visited {
		color:  #FFFFFF;
    text-decoration: none;
	}
.footer-title {font-weight: 600;font-size: 18px;line-height: 1.2;margin-bottom: 16px !important;}
.footer-text {max-width: 320px;width: 100%;}
.footer-contacts {}
.footer-list {}
.footer-subscription-form {}
.footer-social-media {}
.footer-copyright {}
.footerwhite {width: 95%;margin: auto;padding: 30px 0px;max-width: 400px;}
.box1 {width: 25%;float: right;}
.box2 {width: 53%;}
.icon {}
.GLcontainer5 {padding-left: 20px;}
.headerFreeForm {}
.contentFreeForm {display: grid;grid-template-columns: 1fr 1fr;gap: 0;padding: 4% 0 30px 0;}
.image-sectionFreeForm {position: relative;overflow: hidden;max-height: 500px;}
.furniture-image {}
.form-sectionFreeForm {padding: 0px 40px;max-height: 500px;}
.form-introFreeForm {font-size: 0.8rem;margin-bottom: 5px;color: #000;font-family: 'Gilroy-Light';margin-bottom: 15px;font-weight: 500;/*! font-weight: 500; */line-height: 1.1;margin-top: 15px;}
 .form-introFreeForm h2 {
    font-size: 1.2rem;
    /* margin-bottom: 5px; */
    color: #000;
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    line-height: 1.1;
}
#furnitureFormFreeForm {}
.form-groupFreeForm {
            margin-bottom: 15px;
        }
        
.error {}
.errorFreeForm {}
.phone-inputFreeForm {}
.country-codeFreeForm {}
.flagFreeForm {}
.checkbox-groupFreeForm {}
.submit-btnFreeForm {}

/* ID Ãƒâ€˜Ã‚ÂÃƒÂÃ‚ÂµÃƒÂÃ‚Â»ÃƒÂÃ‚ÂµÃƒÂÃ‚ÂºÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã¢â‚¬Â¹ */
#name {}
#email {}
#phone {}
#privacy {}
#nameError {
    display: none;}
#emailError {
    display: none;}
#phoneError {
    display: none;}
#privacyError {
    display: none;}

.bayblock{
	position: fixed !important;
  top: 149px !important;
  right: 19% !important;
  width: 15%;
    z-index: 999;
}
.titleblock{
	position: fixed;
  top: 0;
  left: 20%;
  right: 0;
  border-radius: 0;
  transform: translateZ(0);
  will-change: transform;
  z-index: 1000;
  width: 60%;
	background-color: white;
	height: 50px;
}

  .jdSlider {
            position: relative;
            width: 100%;
            /* max-width: 800px; */
            margin: 0 auto;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            background: #000;
        }

        .jdSliderContainer {
            position: relative;
            width: 100%;
            height: 400px;
        }

        .jdSliderTrack {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .jdSliderSlide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }

        .jdSliderImage {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .jdSliderBtn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: bold;
            color: #333;
            transition: all 0.3s ease;
            z-index: 10;
            user-select: none;
        }

        .jdSliderBtn:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .jdSliderBtn:active {
            transform: translateY(-50%) scale(0.95);
        }

        .jdSliderBtnPrev {
            left: 15px;
        }

        .jdSliderBtnNext {
            right: 15px;
        }

        .jdSliderDots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .jdSliderDot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .jdSliderDot.jdSliderDotActive {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.2);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .jdSliderContainer {
                height: 300px;
            }
            #buySide{
                display: none;
            }
            .titleblock {
              display: none !important;
            }
            #buySideM{
                display: block !important;
                float:none;
                width:90%;
                background: white;
                border-radius: 20px;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                margin: auto;
                margin-bottom: 10%;
            }
            .navigation {
                display: none !important;
            }
            .jdSliderBtn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .jdSliderBtnPrev {
                left: 10px;
            }
            
            .jdSliderBtnNext {
                right: 10px;
            }
        }
  
  .section {
            min-height: 500px;
            margin-bottom: 30px;
            padding: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            border-left: 4px solid #e9ecef;
            transition: all 0.3s ease;
        }

        .section.active {
            border-left-color: #007bff;
            box-shadow: 0 4px 30px rgba(0,123,255,0.1);
        }

        .section h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 28px;
        }

        .section p {
            color: #6c757d;
            font-size: 16px;
            margin-bottom: 15px;
        }

        .progress-tracker {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .stuck {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            border-radius: 0;
            transform: translateZ(0);
            will-change: transform;
            z-index: 800;
            width: 100%;
            padding-left: 18% !important;
            padding-top: 70px !important;
        }

        .progress-tracker-placeholder {
            height: 0;
            opacity: 0;
            transition: height 0.3s ease;
        }

        .progress-tracker-placeholder.active {
            height: 84px; /* ÃƒÂÃ…Â¸Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¼ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â½ÃƒÂÃ‚Â°Ãƒâ€˜Ã‚Â ÃƒÂÃ‚Â²Ãƒâ€˜Ã¢â‚¬Â¹Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â° Ãƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚ÂµÃƒÂÃ‚ÂºÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â° */
        }

        .progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .progress-title {
            font-size: 18px;
            font-weight: 600;
        }

        .progress-percentage {
            font-size: 24px;
            font-weight: bold;
            color: #ffd700;
        }

        .progress-stages {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .stage {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 15px;
            background: rgba(255,255,255,0.1);
            border-radius: 20px;
            font-size: 14px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .stage.completed {
            background: rgba(40, 167, 69, 0.9);
            border-color: #28a745;
            transform: scale(1.05);
        }

        .stage.current {
            background: rgba(255, 193, 7, 0.9);
            border-color: #ffc107;
            animation: pulse 2s infinite;
        }

        .stage.pending {
            background: rgba(255,255,255,0.1);
            opacity: 0.7;
        }

        .stage-icon {
            font-size: 16px;
        }

        .stage-text {
            font-weight: 500;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .intro-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            margin-bottom: 30px;
        }

        .intro-section h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .intro-section p {
            font-size: 20px;
            opacity: 0.9;
            max-width: 600px;
        }

        .section-number {
            position: absolute;
            top: -10px;
            left: 20px;
            background: #007bff;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
        }

        .section {
            position: relative;
        }

        .demo-info {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            font-size: 12px;
            max-width: 200px;
            z-index: 2000;
        }

        .progress-bar {
            width: 100%;
            height: 6px;
            background: rgba(255,255,255,0.2);
            border-radius: 3px;
            margin-top: 15px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #ffd700, #ffed4e);
            border-radius: 3px;
            transition: width 0.3s ease;
            width: 0%;
        }
		
		
 .carousel-container {
            /*! max-width: 1200px; */
            background: white;
            /*! border-radius: 16px; */
            padding: 0 40px;
            /*! box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
            width: 100%;
            margin-bottom: 4%;
        }

        .carousel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 4%;
            width: 100%;
        }

        .carousel-title {
            text-align: left;
            padding: 4px 12px 6px;
            background: #134FA9;
            border-radius: 4px;
            color: #fff;
            display: inline-block;
            font-weight: 600 !important;
            font-size: 24px !important;
            line-height: 1.1;
            margin: 0;
            margin-bottom: 0px;
            margin-bottom: 0px;
            font-family: 'Gilroy', sans-serif;
        }

        .carousel-controls {
            display: flex;
            gap: 8px;
        }

        .carousel-btn {
            width: 44px;
            height: 44px;
            border: none;
            background: #f0f0f0;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 18px;
            color: #666;
        }

        .carousel-btn:hover {
            background: #e0e0e0;
            color: #333;
        }

        .carousel-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            gap: 16px;
        }

        .carousel-slide {
            flex: 0 0 auto;
            width: 300px;
            height: 350px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .carousel-slide:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .carousel-slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0);
            transition: background 0.3s ease;
            pointer-events: none;
        }

        .carousel-slide:hover::after {
            background: rgba(0, 0, 0, 0.1);
        }

        /* ÃƒÂÃ…â€œÃƒÂÃ‚Â¾ÃƒÂÃ‚Â´ÃƒÂÃ‚Â°ÃƒÂÃ‚Â»Ãƒâ€˜Ã…â€™ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ÃƒÂÃ‚Âµ ÃƒÂÃ‚Â¾ÃƒÂÃ‚ÂºÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            max-width: 50vw;
            max-height: 90vh;
            position: relative;
        }

        .modal-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 8px;
        }

        .modal-close {
            position: absolute;
            top: -40px;
            right: 0;
            width: 32px;
            height: 32px;
            border: none;
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .modal-close:hover {
            background: white;
        }

        /* ÃƒÂÃ‚ÂÃƒÂÃ‚Â´ÃƒÂÃ‚Â°ÃƒÂÃ‚Â¿Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â²ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã…â€™ */
        @media (max-width: 768px) {
            .carousel-container {
                width: 100%;
                padding: 0% 5% 4% 5%;
            }
			.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10%;
    width: 100%;
}
.reviews-container {
  margin: 0 auto;
  padding: 4% 5% 8% 5% !important;
  position: relative;
}
            .carousel-title {
                font-size: 20px !important;
            }

            .carousel-slide {
                width: 250px;
                height: 250px;
            }

            .carousel-controls {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .carousel-slide {
                width: 200px;
                height: 200px;
            }
        }

        /* ÃƒÂÃ‹Å“ÃƒÂÃ‚Â½ÃƒÂÃ‚Â´ÃƒÂÃ‚Â¸ÃƒÂÃ‚ÂºÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã¢â‚¬Â¹ ÃƒÂÃ‚Â´ÃƒÂÃ‚Â»Ãƒâ€˜Ã‚Â touch Ãƒâ€˜Ã†â€™Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¹Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â² */
        .touch-indicator {
            text-align: center;
            margin-top: 16px;
            color: #666;
            font-size: 14px;
            display: none;
        }

        @media (hover: none) {
            .touch-indicator {
                display: block;
            }
        }
.container_answer {
            max-width: 70%;
            /*! margin: 0 auto; */
            padding: 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            /*! background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
            /*! min-height: 112vh; */
            transform: translateY(0px) !important;
        }

        .title_answer {
            font-size: 2.5rem;
            font-weight: 300;
            color: #2c3e50;
            margin-bottom: 40px;
            text-align: center;
            letter-spacing: -0.5px;
        }

        .accordion_answer {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .accordion_answer:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .question_answer {
            padding: 20px 25px;
            cursor: pointer;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
            font-size: 1rem;
            font-weight: 500;
            color: #2c3e50;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .question_answer::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #134fa9;
        }

        .question_answer:hover::before {
            left: 100%;
        }

        .question_answer:hover {
            background: #134fa9;
            color: white;
        }

        .icon_answer {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            color: #667eea;
            font-weight: bold;
        }

        .question_answer:hover .icon_answer {
            color: white;
        }

        .accordion_answer.active .icon_answer {
            transform: rotate(45deg);
        }

        .content_answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: linear-gradient(135deg, #f8f9ff 0%, #f1f3ff 100%);
        }

        .content_answer.active {
            max-height: 500px;
            padding: 25px 30px;
        }

        .answer_text_answer {
            color: #555;
            line-height: 1.7;
            font-size: 1.05rem;
            margin: 0;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease 0.1s;
        }

        .content_answer.active .answer_text_answer {
            opacity: 1;
            transform: translateY(0);
        }

        .highlight_answer {
            background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }

        .divider_answer {
            height: 1px;
            background: linear-gradient(90deg, transparent, #ddd, transparent);
            margin: 0 30px;
        }

        @media (max-width: 768px) {
            .container_answer {
                padding: 15px;
                width: 100% !important;
                transform: translateY(0) !important;
                max-width: 100%;
                min-height: 100%;
            }

            .title_answer {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .question_answer {
                padding: 20px;
                font-size: 1.1rem;
            }

            .content_answer.active {
                padding: 20px;
            }
        }

        .fade_in_answer {
            animation: fadeInUp 0.6s ease forwards;
        }

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

a:focus, a:hover {
    color: inherit;
    text-decoration: none;
}

:focus, a:focus {
    outline: 0;
    text-decoration: none;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus, 
.btn:active:focus, 
.btn:focus {
    outline: 0;
    outline-offset: 0;
}

.lite-page .container,
.lite-page .my-container,
.lt-block-wrapper.block-cover .cover-wrapper .container {
    max-width: 1145px;
    width: 100%;
}
@media screen and (max-width: 1190px) {
	.container {
    width: 90% !important;
    margin: auto;
}
}
.container {
    /*! max-width: 1145px; */
    width: 58%;
	margin: auto;
}
@media screen and (max-width: 768px) {
    .container {
    /*! max-width: 1145px; */
    width: 90%;
	margin: auto;
}
   .menu-login-btn{
    font-weight: 500;
    line-height: 1;
    min-height: 47px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    width: 55%;
    border: 1px solid #134fa9;
  }
.menu-mobile-scroll-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}
}
.lt-block-wrapper.block-cover .cover-wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
}

.lite-page:not(.block-set-editor) .mobile-image,
.lite-page:not(.block-set-editor) .only-mobile-block {
    display: none;
}
.block-set .lt-anchor.lt-system-block.lt-invisible-block.lt-view {
    height: 0;
}
.lite-page {
    display: block;
}
.gc-fade-wrapper .gc-fade {
    z-index: 99;
}
@media screen and (max-width: 1260px) {
    .lite-page .container,
    .lite-page .my-container,
    .lt-block-wrapper.block-cover .cover-wrapper .container {
        max-width: 1180px;
    }
}
@media screen and (max-width: 1190px) {
    .lite-page .container,
    .lite-page .my-container,
    .lt-block-wrapper.block-cover .cover-wrapper .container {
        max-width: 850px;
        padding: 0 30px !important;
    }
    .lite-page .small-container .container {
        max-width: 850px;
    }

    .lite-page .small-container .my-container{
        max-width: 850px;
    }
    .lite-page .my-container .builder {
        padding: 0;
    }
    .lite-page:not(.block-set-editor) .mobile-image,
    .lite-page:not(.block-set-editor) .only-mobile-block {
        display: block;
    }
    .desktop-image,
    .desktop-block {
    	display: none;
    }
}

@media screen and (max-width: 768px) {
    .lite-page .container,
    .lite-page .my-container,
    .lt-block-wrapper.block-cover .cover-wrapper .container {
        max-width: 100vw !important;
        padding: 0 4.7vw !important;
    }

    .lite-page .my-container .builder {
        padding: 0;
    }
}
@media screen and (max-width: 640px) {
  .menu-block {
    font-size: 5vw;
    padding: 3.8vw 0;
  }
}
.reviews-container {
    margin: 0 auto;
    padding: 20px 20px 4% 20px !important;
    position: relative;
}
.headerFreeForm{
 text-align: left;
    padding: 4px 12px 6px;
    background: #134FA9;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    font-weight: 600 !important;
    font-size: 12px !important;
    line-height: 1.1;
    margin: 0;
    margin-bottom: 0px;
    margin-bottom: 0px;
    font-family: 'Gilroy';
}
  .form-groupFreeForm label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #000;
            font-size: 1.5rem;
            font-family: 'Gilroy', sans-serif;
            display: none;
        }
.proposal{
	
}
.headerH1{
	text-align: left;
	padding: 4px 12px 6px;
	background: #134FA9;
	border-radius: 4px;
	color: #fff;
	display: inline-block;
	font-weight: 600 !important;
	font-size: 12px !important;
	line-height: 1.1;
	margin: 0;
	margin-bottom: 0px;
	margin-bottom: 0px;
	font-family: 'Gilroy';
	margin: 8% 1% 2% 1%;
}
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
.footer-list li:not(:last-child) {
    margin-bottom: 14px;
}
.footer-list ul {
    font-size: 16px;
    line-height: 1.1;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer {
  background: #134fa9;
  color: white;
}
 .checkbox-groupFreeForm {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin: 30px 0;
        }
      .icon{
    width:45%;
    display: none;
}
        .submit-btnFreeForm {
            width: 100%;
            background: #134fa9;
            color: white;
            border: none;
            padding: 10px 18px;
            border-radius: 12px;
            font-size: 1.3rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
            font-family: 'Gilroy', sans-serif;
        }
        
        .submit-btnFreeForm:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }
        
        .submit-btnFreeForm:active {
            transform: translateY(0);
        }
        
        .contact-btnFreeForm {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25d366;
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
        }
        
        .contact-btnFreeForm:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
        }
        
        .errorFreeForm {
            color: #ff4757;
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }
        
        .input-errorFreeForm {
            border-color: #ff4757 !important;
            box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1) !important;
        }
        .RWmodal-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex
;
    gap: 12px;
}
        @media (max-width: 768px) {
            .contentFreeForm {
                grid-template-columns: 1fr;
                padding: 0;
            }
            .GLcontainer5 {
                height: 852px;
}
			.RWmodal-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}
			.RWmodal-header {
    padding: 15px;
    background: #134FA9;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
            .form-introFreeForm h2 {
    font-size: 1.1rem;
    /* margin-bottom: 5px; */
    color: #000;
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    line-height: 1.1;
}
			.RWmodal-reviews-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
			.RWmodal-body {
    position: relative;
    height: 85%;
    overflow: hidden;
}
            .headerFreeForm h1 {
                text-align: left;
                padding: 4px 12px 6px;
                background: #134FA9;
                border-radius: 4px;
                color: #fff;
                display: inline-block;
                font-weight: 600 !important;
                font-size: 20px !important;
                line-height: 1.1;
                margin: 0;
                margin-bottom: 0px;
                font-family: 'Gilroy', sans-serif;
            }
            .GLcontainer5 {
  padding-left: 0px;
  /*! padding: 20px 20px 30px 20px; */
  width: 100%;
  padding: 10% 5% 8% 5%;
  background-color: white;
  max-height: 795px;
}
            .furniture-image{
                width:100%;
            }
			.headerH1{
				text-align: left;
				padding: 4px 12px 6px;
				background: #134FA9;
				border-radius: 4px;
				color: #fff;
				display: inline-block;
				font-weight: 600 !important;
				font-size: 10px !important;
				line-height: 1.1;
				margin: 0;
				margin-bottom: 0px;
				margin-bottom: 0px;
				font-family: 'Gilroy';
				margin: 0% 1% 4% 4%;
			}
			   
            .headerFreeForm {background: white;padding: 0px;padding-bottom: 10%;}
            .form-sectionFreeForm {
                padding: 0 20px;
                max-height: 340px;
            }
            .footerwhite {
  width: 370px;
  margin: auto;
  padding: 30px 30px 30px 13px;
}
            .image-sectionFreeForm {
  position: relative;
  overflow: hidden;
  max-height: 430px;
}
            #furnitureFormFreeForm{
                padding-bottom: 50px;
                margin-bottom: 50px;
            }
            #rawHtml3827631{
                padding-top: 80px;
            }
            .phone-inputFreeForm {
                flex-direction: column;
            }
            
            .country-codeFreeForm {
                border-radius: 12px 12px 0 0;
                justify-content: center;
                display: none;
            }
            
            .phone-inputFreeForm input {
                border-radius: 12px;
                border: 2px solid #e0e0e0;
                /*! border-top: none; */
            }
        }  
        .checkbox-groupFreeForm input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin: 0;
            accent-color: #667eea;
        }
        
        .checkbox-groupFreeForm label {
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.4;
        }
        
        .privacy-linkFreeForm {
            color: #ff6b6b;
            text-decoration: none;
        }
        
        .privacy-linkFreeForm:hover {
            text-decoration: underline;
        }
   .form-groupFreeForm input {
            width: 100%;
            padding: 5px 10px;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            /*! font-size: 2rem; */
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.9);
        }
        
        .form-groupFreeForm input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }
        
        .phone-inputFreeForm {
            display: flex;
            align-items: center;
        }
        
        .country-codeFreeForm {
            background: #134fa9;
            color: white;
            padding: 15px 15px;
            border-radius: 12px 0 0 12px;
            font-weight: 600;
            border: 2px solid #667eea;
            display: none;
            align-items: center;
            gap: 8px;
        }
        
        .flagFreeForm {
            width: 20px;
            height: 15px;
            background: linear-gradient(to bottom, #ff0000 33%, #ffffff 33%, #ffffff 66%, #ff0000 66%);
            border-radius: 2px;
            position: relative;
        }
        
        .flagFreeForm::after {
            content: '+';
            position: absolute;
            left: 6px;
            top: 2px;
            color: white;
            font-size: 8px;
            font-weight: bold;
        }
        
        .phone-inputFreeForm input {
            border-radius: 5px;
            /*! border-left: none; */
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            /*! background: #f8f9fa; */
        }

        .course-wrapper {
            width: 63%;
            max-width: 1400px;
            margin: 0 auto;
            /*! background: #f8f9fa; */
            min-height: 100vh;
        }
@media screen (min-width: 769px) and and (max-width: 1100px) {
     .course-wrapper {
            width: 95%;
            max-width: 1400px;
            margin: 0 auto;
            /*! background: #f8f9fa; */
            min-height: 100vh;
        }
    .container {
  max-width: 1145px;
  width: 90%;
  margin: auto;
}
	.content {
    padding: 25px;
    width: 64% !important;
}
	 .container {
  max-width: 1145px;
  width: 90%;
  margin: auto;
}
	.GLcontainer {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    width: 63% !important;
}
	.sidebarSide {
    background: white;
    border-radius: 20px;
    padding: 10px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    float: right;
    width: 32% !important;
    margin-top: 3%;
}
}
@media screen and (max-width: 1300px) {
     .course-wrapper {
            width: 95%;
            max-width: 1400px;
            margin: 0 auto;
            /*! background: #f8f9fa; */
            min-height: 100vh;
        }
   
}
        .containerBD {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 40px;
            /*! box-shadow: 0 4px 20px rgba(0,0,0,0.1); */
        }

        .header {
            background: white;
            padding-top: 20px;
            /*! box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
        }

        .breadcrumb {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
        }

        .breadcrumb a {
            color: #007bff;
            text-decoration: none;
        }

        .hero {
            background: white;
            padding-top: 10px;
            margin-bottom: 1%;
        }

        .hero-content {
            /* display: grid; */
            /* grid-template-columns: 1fr 350px; */
            /* gap: 40px; */
            align-items: center;
        }

        .hero-left {
            position: relative;
            margin-top: 3%;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            /*! margin-bottom: 20px; */
            line-height: 1.2;
        }

        .course-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 30px;
        }

        .hero-image {
            position: relative;
            /* background: linear-gradient(135deg, #f5e6d3 0%, #e8d5c4 100%); */
            border-radius: 20px;
            /*! padding: 40px; */
            overflow: hidden;
            min-height: 400px;
        }

        .vk-logo {
            position: absolute;
            color: #ff6b35;
            font-weight: bold;
            font-size: 24px;
        }

        .vk-logo:nth-child(1) { top: 20px; left: 40px; }
        .vk-logo:nth-child(2) { top: 80px; right: 60px; color: #ffa726; }
        .vk-logo:nth-child(3) { bottom: 120px; left: 20px; color: #ff6b35; }
        .vk-logo:nth-child(4) { bottom: 60px; right: 40px; color: #ffa726; }
        .vk-logo:nth-child(5) { top: 160px; left: 60px; color: #ffa726; }
        .vk-logo:nth-child(6) { bottom: 200px; right: 20px; color: #ff6b35; }

        .hero-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 10;
        }

        .hero-text h2 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: #ff6b35;
            font-weight: 600;
        }

        .vk-interface {
            position: absolute;
            right: -50px;
            top: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            padding: 15px;
            width: 280px;
            transform: rotate(5deg);
        }

        .vk-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .vk-posts {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            margin-bottom: 15px;
        }

        .vk-post {
            background: #f0f0f0;
            border-radius: 8px;
            height: 80px;
            position: relative;
            overflow: hidden;
        }

        .vk-post img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .sidebar {
            background: white;
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            top: 20px;
        }
        .sidebarSide {
            background: white;
            border-radius: 20px;
            padding: 10px 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            /*! top: 20px; */
            float: left;
            width: 31%;
            margin-top: 3%;
            margin: 1%;
        }
#buySideM{
    display: none;
}
        .price {
            text-align: center;
            margin-bottom: 25px;
        }

        .old-price {
            font-size: 1.1rem;
            color: #999;
            text-decoration: line-through;
            margin-right: 10px;
        }
.CouurseTitle{
    font-size: 1.5rem;
  color: #2c3e50;
  font-weight: 700;
}
.lessons-count{
     font-size: 1.2rem;
            color: #2c3e50;
            font-weight: 600;
}
        .new-price {
            font-size: 1.4rem;
            color: #2c3e50;
            font-weight: 700;
        }

        .btn-primary {
            background: #134fa9;
            color: white;
            border: none;
            padding: 18px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            width: 100%;
            cursor: pointer;
            margin-bottom: 15px;
            transition: transform 0.2s;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: #134fa9;
            border: 2px solid #134fa9;
            padding: 16px 30px;
            border-radius: 50px;
            font-size: 1rem;
            width: 100%;
            cursor: pointer;
            margin-bottom: 25px;
            transition: all 0.2s;
        }

        .btn-secondary:hover {
            background: #134fa9;
            color: white;
        }

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

        .course-features li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
            font-size: 0.95rem;
        }

        .course-features li::before {
            content: "•";
            color: #134fa9;
            position: absolute;
            left: 0;
        }

        .navigation {
            background: white;
            padding: 20px 0;
            margin-bottom: 30px;
            border-bottom: 1px solid #eee;
            display: block;
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-links a {
            color: #666;
            text-decoration: none;
            font-weight: 500;
            padding-bottom: 10px;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
        }

        .nav-links a.active,
        .nav-links a:hover {
            color: #000;
            border-bottom-color: #134fa9;
            border-radius: 0px;
            font-weight: 600;
        }

        .content {
            background: white;
            border-radius: 20px;
            padding: 60px;
            /*! box-shadow: 0 5px 20px rgba(0,0,0,0.05); */
            margin-bottom: 10px;
            width: 70%;
        }

        .content h2 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 25px;
        }

        .content p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.7;
        }

        .chat-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #134fa9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            transition: transform 0.2s;
            display: none;
        }

        .chat-widget:hover {
            transform: scale(1.1);
        }

        .chat-widget::after {
            content: "ÃƒÂ°Ã…Â¸Ã¢â‚¬â„¢Ã‚Â¬";
            font-size: 24px;
        }

        @media (max-width: 768px) {
             .containerBD {
                padding: 0 15px;
                margin-top: 0px !important;
            }
            .course-wrapper {
                width: 100%;
            }
.hero {
 display: block !important;
}
            .containerBD {
                padding: 0 15px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

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

            .sidebar {
                /*! order: -1; */
                position: static;
            }
             .course-features li {
            padding: 5px 0;
            position: relative;
            padding-left: 25px;
            font-size: 1rem;
        }
            
            
            
            
            
            
            
            .new-price {
  font-size: 1.4rem;
  color: #2c3e50;
  font-weight: 700;
}
.btn-primary {
  background: #134fa9;
  color: white;
  border: none;
  padding: 13px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  margin-bottom: 15px;
  transition: transform 0.2s;
}
            
         
            .nav-links {
                flex-wrap: wrap;
                gap: 20px;
                display: none;
            }   
            
            
            
            
            }


            .nav-links a {
                font-size: 14px;
            }

            .vk-interface {
                position: static;
                transform: none;
                margin: 20px auto 0;
            }

            .hero-image {
                min-height: 300px;
                /*! padding: 30px; */
            }

           

            .content {
                padding: 3% 25px;
                width: 100%;
                margin-bottom: 0px;
            }
        

        .dots {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #ff6b35;
            border-radius: 50%;
        }

        .dots:nth-of-type(1) { top: 50px; left: 100px; }
        .dots:nth-of-type(2) { top: 150px; right: 80px; }
        .dots:nth-of-type(3) { bottom: 100px; left: 60px; }
        .dots:nth-of-type(4) { bottom: 180px; right: 120px; }
		
		

        
        .GLcontainer {
			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            /*! max-width: 800px; */
            /*! margin: 0 auto; */
			background: white;
			border-radius: 12px;
			overflow: hidden;
            /*! box-shadow: 0 4px 20px rgba(0,0,0,0.1); */
			width: 100%;
			}
        .GLheaderTOP {
            /*! background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            padding-top: 10px;
            text-align: left;
            color: #2c3e50;
        }
        
        .GLheaderTOP h1 {
            text-align: left;
            padding: 4px 12px 6px;
            background: #134FA9;
            border-radius: 4px;
            color: #fff;
            display: inline-block;
            font-weight: 600 !important;
            font-size: 25px !important;
            line-height: 1.1;
            margin: 0;
            margin-bottom: 0px;
            font-family: 'Gilroy', sans-serif;
            font-size: 24px !important;
            margin-bottom: 3%;
        }
        .GLheader {
            /*! background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            padding: 0 25px;
            text-align: left;
            color: #2c3e50;
        }
        
        .GLheader h1 {
            text-align: left;
            padding: 4px 12px 6px;
            background: #134FA9;
            border-radius: 4px;
            color: #fff;
            display: inline-block;
            font-weight: 600 !important;
            line-height: 1.1;
            margin: 0;
            margin-bottom: 0px;
            margin-bottom: 5%;
            font-family: 'Gilroy', sans-serif;
            font-size: 24px !important;
            margin-bottom: 2%;
        }
        
        .GLheader p {
            font-size: 16px;
            opacity: 0.9;
        }
        
        .GLcontent {
            padding: 20px 40px 0px 40px;
        }
        
        .GLweek {
            margin-bottom: 40px;
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 25px;
        }
        
        .GLweek:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        
        .GLweek-header {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .GLweek-image {
            flex-shrink: 0;
            width: 120;
            height: 90;
            background: #134fa96b;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 12px;
            text-align: center;
            border: 2px solid #134fa9;
            color: white;
            text-align: center;
            font-weight: 900;
            font-size: 48px;
        }
        .GLweek-image span {
 text-shadow: 
        -1px -1px 0 #134fa9,  /* Верх-лево */
        1px -1px 0 #134fa9,   /* Верх-право */
        -1px 1px 0 #134fa9,   /* Низ-лево */
        1px 1px 0 #134fa9;
        }
        .GLweek-info {
            flex: 1;
        }
        .GLweek-description {
            font-size: 15px;
            color: #4b5563;
            line-height: 1.5;
        }
        .GLweek-tags {
            font-size: 13px;
            color: #9ca3af;
            font-weight: 500;
        }
        .GLweek-number {
            font-size: 12px;
            font-weight: 600;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }
        
        .GLweek-title {
            font-size: 20px;
            font-weight: 700;
            color: #495057;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .GLweek-description {
            font-size: 15px;
            color: #6c757d;
            line-height: 1.6;
        }
        
        .GLlesson {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            margin-top: 15px;
        }
        
        .GLlesson-header {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .GLlesson-image {
            flex-shrink: 0;
            width: 80px;
            height: 60px;
            background: white;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 10px;
            text-align: center;
            border: 1px solid #dee2e6;
        }
        
        .GLlesson-info {
            flex: 1;
        }
        
        .GLlesson-number {
            font-size: 11px;
            font-weight: 600;
            color: #868e96;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 3px;
        }
        
        .GLlesson-title {
            font-size: 16px;
            font-weight: 600;
            color: #495057;
            margin-bottom: 8px;
            line-height: 1.3;
        }
        
        .GLlesson-description {
            font-size: 14px;
            color: #6c757d;
            line-height: 1.5;
        }
        
        @media (max-width: 768px) {
            .GLcontainer {
                /*! margin: 0px 10px; */
                width: 100%;
                padding: 4% 5% 8% 5%;
            }
            
            .GLheader {
                padding-bottom: 8% !important;
                padding: 0px;
            }
            
            .GLheader h1 {
                font-size: 20px !important;
                margin-bottom: 7%;
            }
            
            .GLcontent {
                padding: 0px;
            }
            .modal-content {
    max-width: 95%;
    max-height: 90%;
    position: relative;
}
            .GLweek-header {
                flex-direction: column;
                gap: 15px;
                margin-bottom: 0px;
            }
            .modal-close {
    position: absolute;
    top: -0px;
    right: 0;
    width: 42px;
    height: 42px;
    border: none;
    background: #134FA9;
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
            .GLweek-image {
                width: 100%;
                height: 196px;
            }
            .footer-title {font-weight: 600;font-size: 16px;line-height: 1.2;margin-bottom: 16px !important;}
.footer-text {max-width: 320px;width: 100%;font-size: 14px;}
.footer-contacts {}
.footer-list {font-weight: 600;font-size: 16px;line-height: 1.2;}
.footer-subscription-form {}
.footer-social-media {}
.footer-copyright {}
.footerwhite {width: 95%;margin: auto;padding: 30px 0px;max-width: 400px;}
            .footer-row {display: grid;grid-template-columns: repeat(1, 2fr);grid-gap: 30px;margin-bottom: 36px;}
.footer-column {}
			 .GLheaderTOP h1 {
            text-align: left;
            padding: 4px 12px 6px;
            background: #134FA9;
            border-radius: 4px;
            color: #fff;
            display: inline-block;
            font-weight: 600 !important;
            line-height: 1.1;
            margin: 0;
            margin-bottom: 4%;
            margin-top: 5%;
            font-family: 'Gilroy', sans-serif;
            font-size: 20px !important;
        }
            .content {
    width: 100%;
    padding: 4% 5% 8% 5%;
    margin-bottom: 0px;
    }
            .GLlesson-header {
                flex-direction: column;
                gap: 10px;
            }
            
            .GLlesson-image {
                width: 100%;
                height: 50px;
            }
        }