/* Обновленные цвета и градиенты */
:root {
    --primary-gradient: linear-gradient(135deg, #4CD4CA 0%, #8C77EA 100%);
    --secondary-gradient: linear-gradient(135deg, #8C77EA 0%, #4CD4CA 100%);
    --primary-color: #4CD4CA;
    --secondary-color: #8C77EA;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
        letter-spacing: 1px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    
    color: var(--text-color);
    background-color: var(--light-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Общие стили для градиентных секций */
.gradient-section {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 80px 0;
}

/* Обновленные стили кнопок */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 10px;
    min-width: 160px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 212, 202, 0.3);
    background: var(--secondary-gradient);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}


/* Hero секция */
.hero-section {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.05;
    transform: skewX(-15deg) translateX(100px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: center;
    padding: 80px 0;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color);
    animation: fadeInUp 1s ease;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    color: #666;
    animation: fadeInUp 1s ease 0.2s;
}

.discount {
    display: inline-block;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 18px;
    margin: 15px 0;
    animation: pulse 2s infinite;
    box-shadow: 0 5px 15px rgba(76, 212, 202, 0.2);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    font-size: 16px;
    animation: fadeInUp 1s ease 0.4s;
}

.hero-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

/* Форма в hero секции */
.hero-form {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.6s ease-out;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: 0;
}

.hero-form h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-color);
    text-align: center;
}

.hero-form p {
    color: var(--text-color);
    margin-bottom: 24px;
    text-align: center;
}

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

.hero-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 14px;
}

.hero-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hero-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 212, 202, 0.2);
    outline: none;
}

.hero-form .btn-primary {
    width: 100%;
    margin-top: 8px;
}

.hero-form .form-footer {
    margin-top: 16px;
    text-align: center;
    color: var(--text-color);
    font-size: 14px;
}

.hero-form .form-footer i {
    color: var(--primary-color);
    margin-right: 8px;
}

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

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 0;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-form {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero-form {
        padding: 24px;
        margin: 0 auto;
        border-radius: 20px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 350px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-form {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        border-radius: 20px;
    }

    .cta-form {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 120px 0 60px;
    }

    .hero-text {
        text-align: center;
        padding-right: 0;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-form {
        padding: 25px;
        margin: 0 auto;
        border-radius: 20px;
    }

    .cta-form {
        padding: 25px;
        margin: 0 auto;
        border-radius: 20px;
    }
}

/* Секции */
section {
    padding: 80px 0;
    position: relative;
}

section h2 {
    font-weight: 500;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
}

/* Before and After */
.before-after-section {
    background-color: var(--light-gray);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.result-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
}

.result-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.result-item:hover img {
    transform: scale(1.05);
}

/* Trust Section */
.trust-section {
    background-color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Types Section */
.types-section {
    background-color: var(--light-gray);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.type-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.type-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.type-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Pricing Section */
.pricing-section {
    background-color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.price-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.price-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.price-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.price {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: bold;
    margin-top: 15px;
}

.pricing-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.pricing-note {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.pricing-info .btn-primary {
    margin: 0 auto;
}

/* Procedure Section */
.procedure-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.procedure-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.05;
}

.procedure-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 80px;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.procedure-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 40px;
}

.procedure-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 6px;
    background: var(--primary-gradient);
    transform: translateY(-50%);
    z-index: -1;
    border-radius: 3px;
}

.procedure-steps div {
    background: var(--white);
    padding: 40px;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.4s ease;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
}

.procedure-steps div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.procedure-steps div:hover {
    transform: translateY(-15px) scale(1.05);
    color: var(--white);
}

.procedure-steps div:hover::before {
    opacity: 1;
}

.procedure-steps div::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 3px solid var(--gradient-middle);
    opacity: 0;
    transition: all 0.4s ease;
}

.procedure-steps div:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

.procedure-conclusion {
    text-align: center;
    font-size: 28px;
    margin-top: 60px;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite;
}

@media (max-width: 1024px) {
    .procedure-steps {
        padding: 0 20px;
    }

    .procedure-steps div {
        width: 150px;
        height: 150px;
        padding: 30px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .procedure-steps {
        flex-direction: column;
        gap: 50px;
        padding: 0;
    }

    .procedure-steps::before {
        display: none;
    }

    .procedure-steps div {
        width: 180px;
        height: 180px;
        padding: 40px;
        font-size: 22px;
    }

    .procedure-section h2 {
        font-size: 32px;
        margin-bottom: 60px;
    }

    .procedure-conclusion {
        font-size: 24px;
        margin-top: 40px;
    }
}

/* Reviews Section */
.reviews-section {
    background-color: var(--light-gray);
    padding: 80px 0;
    overflow: hidden;
}

.reviews-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px;
}

.reviews-container {
    overflow: hidden;
    margin: 0 -15px;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-item {
    min-width: calc(33.333% - 30px);
    margin: 0 15px;
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.review-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    position: relative;
    color: var(--text-color);
    font-style: italic;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -10px;
    font-size: 40px;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.3;
}

.review-info {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.review-name {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.review-position {
    font-size: 14px;
    color: #666;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: var(--white);
}

.slider-arrow.prev {
    left: 0;
}

.slider-arrow.next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 1200px) {
    .review-item {
        min-width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .review-item {
        min-width: calc(100% - 30px);
    }

    .reviews-slider {
        padding: 0 30px;
    }

    .review-text {
        font-size: 15px;
    }
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    background: linear-gradient(135deg, rgba(76, 212, 202, 0.05) 0%, rgba(140, 119, 234, 0.05) 100%);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-weight: 500;
    margin: 0;
    font-size: 18px;
    color: var(--text-color);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
    opacity: 1;
}

/* Final CTA */
.final-cta {
    background: var(--primary-gradient);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-text {
    text-align: left;
}

.cta-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white);
    text-align: left;
}

.cta-text p {
    font-size: 18px;
    margin-bottom: 0;
    opacity: 0.9;
}

.cta-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.cta-form .form-group {
    margin-bottom: 20px;
}

.cta-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 14px;
    text-align: left;
}

.cta-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 212, 202, 0.2);
    outline: none;
}

.cta-form .btn-primary {
    width: 100%;
    margin-top: 10px;
    background: var(--primary-gradient);
}

.cta-form .form-footer {
    margin-top: 16px;
    text-align: center;
    color: var(--text-color);
    font-size: 14px;
}

.cta-form .form-footer i {
    color: var(--primary-color);
    margin-right: 8px;
}

@media (max-width: 992px) {
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: 500px;
    }

    .cta-text {
        text-align: center;
    }

    .cta-form {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .final-cta {
        padding: 60px 0;
    }

    .cta-text h2 {
        font-size: 28px;
    }

    .cta-form {
        padding: 30px 20px;
    }
}

/* Contacts Section */
.contacts-section {
    background-color: #1a1a1a;
    color: var(--white);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 40px;
}

.contact-info h3,
.address-info h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--primary-color);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Модальное окно */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    width: 90%;
    max-width: 500px;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-title {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-color);
}

.form-container {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 212, 202, 0.2);
    outline: none;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
/* Адаптивность */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

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

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }

    .pricing-grid,
    .trust-grid,
    .types-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-form {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Grids */
    .pricing-grid,
    .trust-grid,
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Video Review */
    .video-review-content {
        grid-template-columns: 1fr;
    }

    /* Procedure */
    .procedure-steps {
        flex-direction: column;
        gap: 30px;
    }

    .procedure-steps::before {
        display: none;
    }

    .procedure-steps div {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .contacts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .map-container {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }

    /* Hero */
    .hero-section {
        padding: 100px 0 50px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-stats {
        font-size: 14px;
        gap: 15px;
    }

    .hero-form {
        margin: 0 auto;
        border-radius: 20px;
        padding: 30px 20px;
    }

    /* Grids */
    .pricing-grid,
    .trust-grid,
    .types-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .price-item,
    .trust-item,
    .type-item {
        padding: 20px;
    }

    /* Reviews */
    .review-item {
        min-width: 100%;
        margin: 0;
        padding: 20px;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
    }

    /* FAQ */
    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }

    /* CTA */
    .cta-content {
        padding: 0;
    }

    .cta-form {
        margin: 0 auto;
        border-radius: 20px;
        padding: 30px 20px;
    }

    .contacts-grid {
        grid-column: auto;
    }

    .map-container {
        grid-column: auto;
    }

    .map-container iframe {
        height: 250px;
    }

    .menu-bar {
        width: 35px;
        height: 35px;
        padding: 8px;
    }

    .menu-bar span {
        width: 22px;
        margin: 3px auto;
    }

    .mobile-menu {
        width: 100%;
    }

    .hero-form .btn-primary,
    .cta-form .btn-primary,
    .modal-form .btn-primary {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
        margin-top: 15px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .price-item h3 {
        font-size: 20px;
    }

    .price {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }

    /* Hero */
    .hero-text h1 {
        font-size: 28px;
    }

    .discount {
        font-size: 16px;
        padding: 10px 20px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    /* Video Review */
    .video-review-quote {
        padding: 15px;
    }

    .video-review-quote p {
        font-size: 14px;
    }

    .feature-item {
        font-size: 14px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contacts-grid {
        gap: 20px;
    }

    .map-container iframe {
        height: 200px;
        border-radius: 10px;
    }

    .contact-info h3,
    .address-info h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .cta-form {
        margin: 0 auto;
        border-radius: 20px;
        padding: 20px;
    }

    .price-item h3 {
        font-size: 18px;
    }

    .price {
        font-size: 20px;
    }

    .price-item {
        padding: 20px 15px;
    }
}

/* Фиксы для очень маленьких экранов */
@media (max-width: 360px) {
    .header-buttons {
        gap: 5px;
    }

    .btn-primary {
        padding: 6px 12px;
        font-size: 12px;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .procedure-steps div {
        width: 160px;
        height: 160px;
        padding: 20px;
        font-size: 16px;
    }
}

/* Pains Section */
.pains-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pains-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="rgba(0,160,160,0.05)" points="0,100 100,0 100,100"/></svg>');
    background-size: cover;
    opacity: 0.5;
}

.pains-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.pains-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pains-grid p {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pains-grid p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.pains-grid p:hover {
    transform: translateY(-5px);
    color: var(--white);
}

.pains-grid p:hover::before {
    opacity: 1;
}

.pains-grid p span {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.pains-grid p:hover span {
    transform: scale(1.2);
}

.pains-conclusion {
    text-align: center;
    font-size: 24px;
    margin-top: 40px;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite;
}

/* Video Review Section */
.video-review-section {
    background: linear-gradient(135deg, rgba(76, 212, 202, 0.1) 0%, rgba(140, 119, 234, 0.1) 100%);
    padding: 80px 0;
}

.video-review-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.video-review-text {
    padding-right: 20px;
}

.video-review-quote {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.video-review-quote p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-color);
}

.video-review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.video-review-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.video-review-features {
    display: grid;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.feature-item p {
    margin: 0;
    font-size: 16px;
    color: var(--text-color);
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #000;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    z-index: 1;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button i {
    color: var(--white);
    font-size: 30px;
    margin-left: 5px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--secondary-gradient);
}

.video-container.playing .play-button {
    display: none;
}

/* Адаптив для этих секций */
@media (max-width: 992px) {
    .pains-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }

    .video-review-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .video-review-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .pains-section h2 {
        font-size: 28px;
    }

    .pains-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pains-grid p {
        font-size: 16px;
        padding: 20px;
    }

    .pains-conclusion {
        font-size: 20px;
        padding: 0 20px;
    }

    .video-review-quote {
        padding: 20px;
    }

    .video-review-quote p {
        font-size: 16px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 24px;
        margin-left: 3px;
    }
}

@media (max-width: 576px) {
    .pains-grid {
        padding: 0 15px;
    }

    .pains-grid p {
        padding: 15px;
        font-size: 14px;
    }

    .video-review-section {
        padding: 50px 0;
    }

    .video-review-content {
        padding: 0 15px;
    }

    .video-review-quote {
        padding: 15px;
    }

    .video-review-features {
        gap: 10px;
    }

    .feature-item {
        font-size: 14px;
    }

    .feature-item i {
        font-size: 18px;
    }
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

.section-cta .btn-primary {
    min-width: 200px;
    padding: 15px 30px;
    font-size: 18px;
}

.section-cta .btn-primary i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.section-cta .btn-primary:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .section-cta {
        margin-top: 30px;
    }

    .section-cta .btn-primary {
        min-width: 180px;
        padding: 12px 24px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .section-cta {
        margin-top: 25px;
    }

    .section-cta .btn-primary {
        width: 100%;
        max-width: 300px;
    }
}

/* Слайдер сравнения до/после */
.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    cursor: col-resize;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.before-image {
    z-index: 1;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.comparison-slider-handle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: col-resize;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.comparison-slider-handle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.image-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-weight: bold;
    border-radius: 4px;
}

.before-image .image-label {
    left: 20px;
}

.after-image .image-label {
    right: 20px;
}

@media (max-width: 768px) {
    .comparison-slider {
        height: 300px;
    }
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.05;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.map-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.map-container iframe {
    width: 100%;
    height: 600px;
    border: none;
}

@media (max-width: 992px) {
    .map-section {
        padding: 60px 0;
    }

    .map-container iframe {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .map-section {
        padding: 40px 0;
    }

    .map-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .map-container iframe {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 300px;
    }
}

h1, .h1, h2, .h2, h3, .h3 {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-transform: uppercase;
    display: inline-block;
        font-weight: 500;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 400;
    color: #666;
}
/*header and footer*/
.fix {
    z-index: 101;
    position: fixed;
}

.men-fix {
    width: 100%;
    background: linear-gradient(90deg, rgba(131, 232, 185, 1) 0%, rgba(134, 110, 175, 1) 100%);
}

.ar-container {
    position: relative;
    box-sizing: content-box;
    max-width: 1230px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.header__flex {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.header__flex-text {
    display: flex;
    flex-direction: column;
    align-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
}

.logo img {
    max-width: 250px;
}

.header__flex-social {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.non-mob {
    display: block;
}

.header-phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.header-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.phone {
    position: relative;
    color: #fff;
    font-size: 21px;
    line-height: 32px;
    font-weight: 500;
    text-decoration: none;
    padding-left: 25px;
    margin-right: 25px;
}

.whatsapp {
    margin-right: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    line-height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    padding-left: 29px;
}

.phone:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(https://factorsmile.ae/assets/new-home/img/icon/phone-call.png);
    background-size: cover;
}

.whatsapp:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(https://factorsmile.ae/assets/new-home/img/icon/whatsapp.png);
    background-size: cover;
}

.time {
    color: #fff;
    font-size: 12px;
    line-height: 14px;
}

.lang {
    margin: 0;
    margin-right: 0px;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.lang {
    margin: 0;
    margin-right: 0px;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.lang-item {
    position: relative;
}

.lang-item:nth-child(1):before {
    position: absolute;
    content: "/";
    text-align: center;
    width: 10px;
    right: 0;
    color: #fff;
}

.lang-item:nth-child(1):before {
    position: absolute;
    content: "/";
    text-align: center;
    width: 10px;
    color: #fff;
    left: 120%;
}

.lang-item span {
    color: #fff;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 500;
}

.lang-item a {
    color: #fff;
    font-size: 14px;
    line-height: 1;
    text-decoration: underline;
    text-transform: uppercase;
    font-weight: 500;
}

#ar-modalen {
    --clr-font-main: hsla(0 0% 20% / 100);
    --btn-bg-1: hsl(0deg 66.34% 40.48%);
    --btn-bg-2: hsl(0deg 98.8% 65.87%);
    --btn-bg-color: hsla(360 100% 100% / 1);
    --radii: 0.5em;
    cursor: pointer;
    padding: 5px 10px;
    min-width: 120px;
    min-height: 35px;
    font-size: var(--size, 1rem);
    font-weight: 500;
    transition: 0.8s;
    background-size: 280% auto;
    background-image: linear-gradient(325deg, var(--btn-bg-2) 0%, var(--btn-bg-1) 55%, var(--btn-bg-2) 90%);
    border: none;
    border-radius: var(--radii);
    color: var(--btn-bg-color);
    box-shadow: 0px 0px 20px rgba(71, 184, 255, 0.5), 0px 5px 5px -1px rgba(58, 125, 233, 0.25), inset 4px 4px 8px rgba(175, 230, 255, 0.5), inset -4px -4px 8px rgba(19, 95, 216, 0.35);
}

#ar-modalen:hover {
    background-position: right top;
}

.btn-default {
    background: rgb(216, 68, 82);
    color: #fff;
}

.btn-default {
    background: rgb(216, 68, 82);
    color: #fff;
}

.btn {
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/*menu com*/
.main-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 0px;
    padding: 0;
    list-style: none;
    justify-content: space-between;
}

.main-menu>li {
    display: inline-flex;
}

.main-menu>li+li {
    margin-left: 20px;
}

.main-menu>li>a {

    position: relative;

    color: #fff;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
    letter-spacing: 0.2px;
    font-size: 18px;
    text-decoration: none;
}

.main-menu>li>a:hover {
    text-decoration: none;
    color: #96dfcf;
}

.main-menu li {
    margin: 0;
    white-space: nowrap;
}

.main-menu li.menu-children {
    position: relative;
    margin-right: 12px;
}

.main-menu li.menu-children:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.main-menu ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px 30px;
    background-color: #fff;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    position: absolute;
    z-index: 20;
    min-width: 220px;
    top: 100%;
    left: -30px;
    opacity: 0;
    border-radius: 10px;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 200ms cubic-bezier(0.43, 0.59, 0.16, 1.25);
}

.main-menu ul:after {
    left: 55px;
    right: unset;
}

.logo img:hover {
    max-width: 250px;
    filter: drop-shadow(2px 4px 6px #866EAF);
    animation: jump 1.5s linear 0s 1 normal none;
}

@keyframes jump {

    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0);
    }

    60% {
        transform: translateY(-5px);
    }

    80% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(0);
    }
}

.main-menu ul:after {
    content: '';
    position: absolute;
    top: 1px;
    right: 25px;
    width: 25px;
    height: 15px;
    background: url(/assets/img/arrow-menu.png) 100% 100% no-repeat;
    transform: translateY(-100%);
}

.main-menu ul:before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(50% - 13px);
    width: 1px;
    height: calc(100% - 20px);
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
}

.main-menu ul li {
    display: block;
    padding: 0 10px;
    line-height: 1.1;
}

.main-menu ul li:last-child {
    margin-bottom: 0;
}

.main-menu ul li a {
    display: block;
    color: #8374B1;
    font-size: 14px;
    transition: all .3s;
    text-decoration: none;
    font-weight: 500;
}

.main-menu ul li a:hover {
    color: #96dfcf;
    text-decoration: none;
}

.main-menu ul ul {
    top: 0;
    left: 100%;
}

/*menu com end*/
/*mobile menu*/
.menu-bar {
    display: none;
    transition: all 0.3s ease-in-out;
    transition-delay: 0.2s;
    position: fixed;
    top: 20px;
    right: 40px;
    width: 30px;
    height: 30px;
    z-index: 9999999;
    box-sizing: content-box;
}

.menu-bar span {
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    display: inline-block;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 10px;
    width: 22px;
}

.menu-bar span:before,
.menu-bar span:after {
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    content: '';
    display: block;
    height: 3px;
    position: absolute;
    width: 30px;
}

.menu-bar span:before {
    top: -8px;
}

.menu-bar span:after {
    top: 8px;
}

.triggered .menu-bar span {
    width: 0;
}

.triggered .menu-bar span:before {
    transform: rotate(45deg);
    top: 0;
}

.triggered .menu-bar span:after {
    transform: rotate(-45deg);
    top: 0;
}

.menu {
    transition: all 0.3s ease-in-out;
    background: linear-gradient(to left, rgba(134, 110, 175, 1), rgba(131, 232, 185, 1));
    height: 100vh;
    opacity: 0;
    padding: 15px;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    width: 100vw;
    z-index: 9999998;
    overflow-y: auto;
}

.menu ul {
    transition: all 0.3s ease-in-out;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu ul li {
    transition: all 0.3s ease-in-out;
}

.menu ul li a,
.menu ul li ul li.has-children1 a {
    color: #fff;
    display: inline-block;
    font-family: Verdana, sans-serif;
    font-size: 20px;
    padding: 8px 15px;
    position: relative;
    text-decoration: none;
    outline: none;
}

.menu ul li span {
    display: inline-block;
    height: 24px;
    top: 5px;
    position: relative;
    width: 24px;
}

.menu ul li span:before,
.menu ul li span:after {
    background-color: #BFE2FF;
    content: '';
    display: block;
    height: 3px;
    position: absolute;
    width: 15px;
}

.menu ul li span:before {
    top: 50%;
    transform: translateY(-50%);
}

.menu ul li span:after {
    transition: all 0.15s ease-in-out;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
}

.menu ul li span.subtriggered:after {
    transform: translateY(-50%) rotate(0);
}

.menu ul li ul li a {
    padding: 8px 30px;
    font-size: 18px;
    color: #fff;
}

.triggered .menu {
    opacity: 1;
    transform: translateY(0);
}

.menu ul ul {
    display: none;
}

.menu ul .subtriggered+ul {
    display: block;
}


/*mobile-menu end*/
.re {
    background: red;
    line-height: 0;
}

.uk-margin input::placeholder {
    color: rgb(169, 169, 169);
}

.footer {
    padding-top: 30px;
    padding-bottom: 35px;
    background: url(/assets/img/bg-footer.png), linear-gradient(90deg, rgba(131, 232, 185, 1) 0%, rgba(134, 110, 175, 1) 100%);
    color: #fff;
    background-position: center top;
    background-repeat: no-repeat;
}

.footer-content {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
}

.footer-content__block-adress {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-content__block-logo {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
}

.footer-item-title {
    display: block;
}

.underline-one {
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.adress {
    font-size: 20px;
}

.footer-park {
    margin: 10px 0;
    border-radius: 5px;
    border: 2px solid;
    padding: 2px 10px;
    animation: sharedw 5s linear 0s infinite normal none;
}

@keyframes sharedw {

    0% {
        transform: rotate(-3deg);
    }

    2% {
        transform: rotate(3deg);
    }

    4% {
        transform: rotate(-3deg);
    }

    6% {
        transform: rotate(3deg);
    }

    8% {
        transform: rotate(-3deg);
    }

    10% {
        transform: rotate(3deg);
    }

    12% {
        transform: rotate(-3deg);
    }

    14% {
        transform: rotate(3deg);
    }

    16% {
        transform: rotate(-3deg);
    }

    18% {
        transform: rotate(-3deg);
    }

    20% {
        transform: rotate(0deg);
    }
}

.footer__color {
    color: #fff;
    font-size: 18px;
}

.footer-content__block-menu .menu {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 10px;
}

.menu-link {
    display: block;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
}

.menu-link {
    cursor: pointer;
}

.social {
    margin: 0;
    margin-bottom: 25px;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.social-item {
    margin-right: 20px;
}

.social-link {
    display: block;
    font-size: 0;
    width: 50px;
    height: 50px;
    background-size: cover;
}

.social-link-vat {
    background-image: url(/assets/new-home/img/icon/whatsa.png);
}

.social-link-fb {
    background-image: url(/assets/new-home/img/icon/facebook.png);
}

.social-link-ins {
    background-image: url(/assets/new-home/img/icon/instagram.png);
}

.social-link-yt {
    background-image: url(/assets/new-home/img/icon/yt.png);
}

@media only screen and (min-width: 320px) and (max-width: 900px) {
    .footer {
        padding-top: 30px;
        padding-bottom: 5px;
    }

    .footer-content__block-adress {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: flex-start;
    }

    .footer-content {
        gap: 10px;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
    }

    .adress {
        text-align: center;
        font-size: 16px;
    }

    .social-link {
        display: block;
        font-size: 0;
        width: 30px;
        height: 30px;
        background-size: cover;
    }
}

@media only screen and (min-width: 320px) and (max-width: 1015px) {
    .main-menu>li>a {
        font-size: 14px;
    }
}

@media only screen and (min-width: 360px) and (max-width: 900px) {
    .menu-bar {
        display: block;
        transition: all 0.3s ease-in-out;
        transition-delay: 0.2s;
        position: fixed;
        top: 17px;
        right: 27px;
        width: 30px;
        height: 30px;
        z-index: 9999999;
        box-sizing: content-box;
    }
}

@media only screen and (min-width: 310px) and (max-width: 359px) {
    .menu-bar {
        display: block;
        transition: all 0.3s ease-in-out;
        transition-delay: 0.2s;
        position: fixed;
        top: 13px;
        right: 27px;
        width: 30px;
        height: 30px;
        z-index: 9999999;
        box-sizing: content-box;
    }
}

@media only screen and (min-width: 320px) and (max-width: 900px) {
    .non-mob {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .header__flex {
        padding: 10px 20px;
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        gap: 40px;
        align-items: center;
    }

    .logo img {
        max-width: 150px;
        width: 100%;
    }

    .header__flex-text {
        margin-right: 50px;
        display: flex;
        flex-direction: column;
        align-content: space-between;
        flex-wrap: wrap;
        gap: 0px;
    }

    #ar-modalen {
        --clr-font-main: hsla(0 0% 20% / 100);
        --btn-bg-1: hsl(0deg 66.34% 40.48%);
        --btn-bg-2: hsl(0deg 98.8% 65.87%);
        --btn-bg-color: hsla(360 100% 100% / 1);
        --radii: 0.5em;
        cursor: pointer;
        padding: 2px 5px;
        min-width: 90px;
        min-height: 25px;
        font-size: 14px;
        font-weight: 500;
        transition: 0.8s;
        background-size: 280% auto;
        background-image: linear-gradient(325deg, var(--btn-bg-2) 0%, var(--btn-bg-1) 55%, var(--btn-bg-2) 90%);
        border: none;
        border-radius: var(--radii);
        color: var(--btn-bg-color);
        box-shadow: 0px 0px 20px rgba(71, 184, 255, 0.5), 0px 5px 5px -1px rgba(58, 125, 233, 0.25), inset 4px 4px 8px rgba(175, 230, 255, 0.5), inset -4px -4px 8px rgba(19, 95, 216, 0.35);
    }
}

/*header and footer end*/



/*header and footer*/
.fix {
  z-index: 101;
  position: fixed;
}
.men-fix {
  width: 100%;
  background: linear-gradient(90deg, rgba(131, 232, 185, 1) 0%, rgba(134, 110, 175, 1) 100%);
}
.ar-container {
  position: relative;
  box-sizing: content-box;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.header__flex {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.header__flex-text {
  display: flex;
  flex-direction: column;
  align-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
}
.logo img {
  max-width: 250px;
}
.header__flex-social {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.non-mob {
  display: block;
}
.header-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 30px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


.phone {
  position: relative;
  color: #fff;
  font-size: 21px;
  line-height: 32px;
  font-weight: 500;
  text-decoration: none;
  padding-left: 25px;
  margin-right: 25px;
}

.whatsapp {
  margin-right: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  padding-left: 29px;
}
.phone:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(https://factorsmile.ae/assets/new-home/img/icon/phone-call.png);
  background-size: cover;
}
.whatsapp:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(https://factorsmile.ae/assets/new-home/img/icon/whatsapp.png);
  background-size: cover;
}
.time {
  color: #fff;
  font-size: 12px;
  line-height: 14px;
}
.lang {
  margin: 0;
  margin-right: 0px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.lang {
  margin: 0;
  margin-right: 0px;
  padding: 0;
  list-style: none;
  display: flex
;
  gap: 20px;
  align-items: center;
}
.lang-item {
  position: relative;
}
.lang-item:nth-child(1):before {
  position: absolute;
  content: "/";
  text-align: center;
  width: 10px;
  right: 0;
  color: #fff;
}

.lang-item:nth-child(1):before {
  position: absolute;
  content: "/";
  text-align: center;
  width: 10px;
  color: #fff;
  left: 120%;
}
.lang-item span {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 500;
}
.lang-item a {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-decoration: underline;
  text-transform: uppercase;
  font-weight: 500;
}
#ar-modalen {
  --clr-font-main: hsla(0 0% 20% / 100);
  --btn-bg-1: hsl(0deg 66.34% 40.48%);
  --btn-bg-2: hsl(0deg 98.8% 65.87%);
  --btn-bg-color: hsla(360 100% 100% / 1);
  --radii: 0.5em;
  cursor: pointer;
  padding: 5px 10px;
  min-width: 120px;
  min-height: 35px;
  font-size: var(--size, 1rem);
  font-weight: 500;
  transition: 0.8s;
  background-size: 280% auto;
  background-image: linear-gradient(325deg, var(--btn-bg-2) 0%, var(--btn-bg-1) 55%, var(--btn-bg-2) 90%);
  border: none;
  border-radius: var(--radii);
  color: var(--btn-bg-color);
  box-shadow: 0px 0px 20px rgba(71, 184, 255, 0.5), 0px 5px 5px -1px rgba(58, 125, 233, 0.25), inset 4px 4px 8px rgba(175, 230, 255, 0.5), inset -4px -4px 8px rgba(19, 95, 216, 0.35);
}
#ar-modalen:hover {
  background-position: right top;
}
.btn-default {
  background: rgb(216, 68, 82);
  color: #fff;
}
.btn-default {
  background: rgb(216, 68, 82);
  color: #fff;
}
.btn {
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
/*menu com*/
.main-menu {
  display: flex;
      flex-wrap: wrap;
      align-items: center;
      margin-left: 0px;
      padding: 0;
      list-style: none;
      justify-content: space-between;
}
.main-menu > li {
  display: inline-flex; 
}
.main-menu > li + li {
  margin-left: 20px; 
}
.main-menu > li > a {

  position: relative;

  color: #fff;
  transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
  letter-spacing: 0.2px;
  font-size: 18px;
  text-decoration: none;
}
.main-menu > li > a:hover {
  text-decoration: none;    
  color: #96dfcf;
}

.main-menu li {
  margin: 0;
  white-space: nowrap; 
}
.main-menu li.menu-children {
  position: relative; 
  margin-right: 12px; 
}

.main-menu li.menu-children:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px); 
}
.main-menu ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5px 30px;
  background-color: #fff;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  position: absolute;
  z-index: 20;
  min-width: 220px;
  top: 100%;
  left: -30px;
  opacity: 0;
  border-radius: 10px;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 200ms cubic-bezier(0.43, 0.59, 0.16, 1.25); 
}
.main-menu ul:after {
  left: 55px;
  right: unset;
}
.logo img:hover {
  max-width: 250px;
  filter: drop-shadow(2px 4px 6px #866EAF);
  animation: jump 1.5s linear 0s 1 normal none;
}
@keyframes jump {
			
  0% {
    transform:translateY(0);
  }
  20% {
    transform:translateY(0);
  }
  40% {
    transform:translateY(-10px);
  }
  50% {
    transform:translateY(0);
  }
  60% {
    transform:translateY(-5px);
  }
  80% {
    transform:translateY(0);
  }
  100% {
    transform:translateY(0);
  }
}
.main-menu ul:after {
  content: '';
  position: absolute;
  top: 1px;
  right: 25px;
  width: 25px;
  height: 15px;
  background: url(/assets/img/arrow-menu.png) 100% 100% no-repeat;
  transform: translateY(-100%);
}
.main-menu ul:before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(50% - 13px);
  width: 1px;
  height: calc(100% - 20px);
  background: rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%);
}
.main-menu ul li {
  display: block;
  padding: 0 10px;
  line-height: 1.1; 
}
.main-menu ul li:last-child {
  margin-bottom: 0; 
}
.main-menu ul li a {
  display: block;
  color: #8374B1;
  font-size: 14px;
  transition: all .3s;
  text-decoration: none;
  font-weight: 500;   
}
.main-menu ul li a:hover {
    color: #96dfcf;
  text-decoration: none;    
}
.main-menu ul ul {
  top: 0;
  left: 100%; 
}    
/*menu com end*/
/*mobile menu*/
.menu-bar {
  display: none;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.2s;
  position: fixed;
  top: 20px;
  right: 40px;
  width: 30px;
  height: 30px;
  z-index: 9999999;
  box-sizing: content-box;
  }
  .menu-bar span {
      transition: all 0.3s ease-in-out;
      background-color: #fff;
      display: inline-block;
      height: 3px;
      position: absolute;
      top: 50%;
      left: 10px;
      width: 22px;
  }
  .menu-bar span:before, 
  .menu-bar span:after {
      transition: all 0.3s ease-in-out;
      background-color: #fff;
      content: '';
      display: block;
      height: 3px;
      position: absolute;
      width: 30px;
  }
  .menu-bar span:before {
      top: -8px;
  }
  .menu-bar span:after {
      top: 8px;
  }
  .triggered .menu-bar span {
      width: 0;
  }
  .triggered .menu-bar span:before {
      transform: rotate(45deg);
      top: 0;
  }
  .triggered .menu-bar span:after {
      transform: rotate(-45deg);
      top: 0;
  }
  .menu {
      transition: all 0.3s ease-in-out;
      background:  linear-gradient(to left, rgba(134, 110, 175, 1), rgba(131, 232, 185, 1));
      height: 100vh;
      opacity: 0;
      padding: 15px;
      position: fixed;
      top: 0;
      left: 0;
      transform: translateY(-100%);
      width: 100vw;
      z-index: 9999998;
      overflow-y: auto;  
  }
  .menu ul {
      transition: all 0.3s ease-in-out;
      list-style: none;
      margin: 0;
      padding: 0;
  }
  .menu ul li {
      transition: all 0.3s ease-in-out;
  }
  .menu ul li a,.menu ul li ul li.has-children1 a {
      color: #fff;
      display: inline-block;
      font-family: Verdana, sans-serif;   
      font-size: 20px;
      padding: 8px 15px;
      position: relative;
      text-decoration: none;
      outline: none;
  }
  .menu ul li span {
      display: inline-block;
      height: 24px;
      top: 5px;
      position: relative;
      width: 24px;
  }
  .menu ul li span:before, 
  .menu ul li span:after {
      background-color: #BFE2FF;
      content: '';
      display: block;
      height: 3px;
      position: absolute;
      width: 15px;
  }
  .menu ul li span:before {
      top: 50%;
      transform: translateY(-50%);
  }
  .menu ul li span:after {
      transition: all 0.15s ease-in-out;
      top: 50%;
      transform: translateY(-50%) rotate(90deg);
  }
  .menu ul li span.subtriggered:after {
      transform: translateY(-50%) rotate(0);
  }
  .menu ul li ul li a {
      padding: 8px 30px;
      font-size: 18px;
      color: #fff;
  }
  .triggered .menu {
      opacity: 1;
      transform: translateY(0);
  }
  .menu ul ul {
      display: none;
  }
  .menu ul .subtriggered + ul {
      display: block;
  }  
  
  
  /*mobile-menu end*/
  .re {
    background: red;
    line-height: 0;
  }
  .uk-margin input::placeholder {
    color: rgb(169, 169, 169);
  }
  .footer {
    padding-top: 30px;
    padding-bottom: 35px;
    background: url(/assets/img/bg-footer.png), linear-gradient(90deg, rgba(131, 232, 185, 1) 0%, rgba(134, 110, 175, 1) 100%);
    color: #fff;
    background-position: center top;
    background-repeat: no-repeat;
}
.footer-content {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
}
.footer-content__block-adress {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}
.footer-content__block-logo {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 20px;
}
.footer-item-title {
  display: block;
}
.underline-one {
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.adress {
  font-size: 20px;
}
.footer-park {
  margin: 10px 0;
  border-radius: 5px;
  border: 2px solid;
  padding: 2px 10px;
  animation: sharedw 5s linear 0s infinite normal none;
}
@keyframes sharedw {
			
  0% {
      transform:rotate(-3deg);
  }
  2% {
      transform:rotate(3deg);
  }
  4% {
      transform:rotate(-3deg);
  }
  6% {
      transform:rotate(3deg);
  }
  8% {
      transform:rotate(-3deg);
  }
  10% {
      transform:rotate(3deg);
  }
  12% {
      transform:rotate(-3deg);
  }
  14% {
      transform:rotate(3deg);
  }
  16% {
      transform:rotate(-3deg);
  }
  18% {
      transform:rotate(-3deg);
  }
  20% {
      transform:rotate(0deg);
  }
}
.footer__color {
  color: #fff;
  font-size: 18px;
}
.footer-content__block-menu .menu {
  display: flex
;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 10px;
}
.menu-link {
  display: block;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
}

.menu-link {
  cursor: pointer;
}
.social {
  margin: 0;
  margin-bottom: 25px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.social-item {
  margin-right: 20px;
}
.social-link {
  display: block;
  font-size: 0;
  width: 50px;
  height: 50px;
  background-size: cover;
}
.social-link-vat {
  background-image: url(/assets/new-home/img/icon/whatsa.png);
}
.social-link-fb {
  background-image: url(/assets/new-home/img/icon/facebook.png);
}
.social-link-ins {
  background-image: url(/assets/new-home/img/icon/instagram.png);
}
.social-link-yt {
  background-image: url(/assets/new-home/img/icon/yt.png);
}
@media only screen and (min-width: 320px) and (max-width: 900px) {
  .footer {
    padding-top: 30px;
    padding-bottom: 5px;
  }
  .footer-content__block-adress {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
}

  .footer-content {
    gap: 10px;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
}
  .adress {
    text-align: center;
    font-size: 16px;
}
.social-link {
  display: block;
  font-size: 0;
  width: 30px;
  height: 30px;
  background-size: cover;
}
}

  @media only screen and (min-width: 320px) and (max-width: 1015px){	
    .main-menu > li > a {
      font-size: 14px;   
  } 
  }
  @media only screen and (min-width: 320px) and (max-width: 359px){	
  .menu-bar {
      padding: 0px;
    display: block;
    transition: all 0.3s ease-in-out;
    transition-delay: 0.2s;
    position: fixed;
    top: 10px;
    right: 27px;
    width: 30px;
    height: 30px;
    z-index: 9999999;
    box-sizing: content-box;
  }
  }
  @media only screen and (min-width: 360px) and (max-width: 900px){	
  .menu-bar {
      padding: 0px;
    display: block;
    transition: all 0.3s ease-in-out;
    transition-delay: 0.2s;
    position: fixed;
    top: 13px;
    right: 27px;
    width: 30px;
    height: 30px;
    z-index: 9999999;
    box-sizing: content-box;
  }
}
@media only screen and (min-width: 310px) and (max-width: 359px){	
  .menu-bar {
    display: block;
    transition: all 0.3s ease-in-out;
    transition-delay: 0.2s;
    position: fixed;
    top: 13px;
    right: 27px;
    width: 30px;
    height: 30px;
    z-index: 9999999;
    box-sizing: content-box;
  }
}
  @media only screen and (min-width: 320px) and (max-width: 900px){	
    .non-mob {
      display: none;
  }
  .header-phone {
    display: none;
}

.header__flex {
  padding: 10px 20px;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}
.logo img {
  max-width: 150px;
  width: 100%;
}
.header__flex-text {
  margin-right: 50px;
  display: flex;
  flex-direction: column;
  align-content: space-between;
  flex-wrap: wrap;
  gap: 0px;
}
#ar-modalen {
  --clr-font-main: hsla(0 0% 20% / 100);
  --btn-bg-1: hsl(0deg 66.34% 40.48%);
  --btn-bg-2: hsl(0deg 98.8% 65.87%);
  --btn-bg-color: hsla(360 100% 100% / 1);
  --radii: 0.5em;
  cursor: pointer;
  padding: 2px 5px;
  min-width: 90px;
  min-height: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.8s;
  background-size: 280% auto;
  background-image: linear-gradient(325deg, var(--btn-bg-2) 0%, var(--btn-bg-1) 55%, var(--btn-bg-2) 90%);
  border: none;
  border-radius: var(--radii);
  color: var(--btn-bg-color);
  box-shadow: 0px 0px 20px rgba(71, 184, 255, 0.5), 0px 5px 5px -1px rgba(58, 125, 233, 0.25), inset 4px 4px 8px rgba(175, 230, 255, 0.5), inset -4px -4px 8px rgba(19, 95, 216, 0.35);
}
  }
/*header and footer end*/