/* ===================================
   Uniq Türkiye - Base CSS (Ortak Stiller)
   =================================== */

/* Reset & Base Styles */

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #9e9e9e;
}
/* 
Typography 
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}
*/

/* Container */
.auto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
    opacity: 0;
    transform: translateY(-20px);
    animation: headerFadeIn 0.8s ease forwards;
}

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

/* Header with background when scrolled */
.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Header text styles for transparent state */
.main-header .main-menu ul li a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Header text styles for scrolled state */
.main-header.scrolled .main-menu ul li a {
    color: #333;
    text-shadow: none;
}

.main-header.scrolled .main-menu ul li a:hover {
    color: #4A7BC0;
}

.main-header.scrolled .main-menu .submenu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 80px;
}

/* Header Actions (Language Switcher + CTA Button) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Link */
.lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    background: transparent;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.lang-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    color: #ffffff;
}

/* Language Toggle Button */
.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    background: transparent;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    outline: none;
    padding: 0;
    margin: 0;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    color: #ffffff;
}

.lang-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Scrolled header styles for language link */
.main-header.scrolled .lang-link {
    color: #333;
    border-color: rgba(0, 0, 0, 0.25);
    text-shadow: none;
}

.main-header.scrolled .lang-link:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.35);
    color: #333;
}

/* Scrolled header styles for language button */
.main-header.scrolled .lang-btn {
    color: #333;
    border-color: rgba(0, 0, 0, 0.25);
    text-shadow: none;
}

.main-header.scrolled .lang-btn:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.35);
    color: #333;
}

.logo img {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

/* Logo shadow for transparent header */
.main-header .logo img {
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

/* Logo change when scrolled */
.main-header.scrolled .logo img {
    filter: none;
}

.main-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu ul li {
    margin: 0 1.5rem;
}


.main-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4A7BC0;
    transition: width 0.3s ease;
}

.main-menu ul li a:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.main-menu .has-dropdown {
    position: relative;
}

.main-menu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(39, 59, 69, 0.6);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
	border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin-top: 10px;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
}

.main-menu .has-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu .submenu li {
    margin: 0;
    padding: 0;
}

.main-menu .submenu li a {
    font-family: 'Montserrat', sans-serif;
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.main-header .submenu li a {
    color: #333;
    text-shadow: none;
}

.main-menu .submenu li:last-child a {
    border-bottom: none;
}

.main-menu .submenu li a:hover {
    color: #4A7BC0;
    padding-left: 2rem;
}

.main-menu .submenu li a::after {
    display: none;
}

/*
.header-btn .theme-btn {
    background: #4A7BC0;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-btn .theme-btn:hover {
    background: #6B8FCC;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}*/

/* Header button for scrolled state */
.main-header.scrolled .header-btn .theme-btn {
    color: #333;
    border-color: rgba(0, 0, 0, 0.25);
    text-shadow: none;
}

.main-header.scrolled .header-btn .theme-btn:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.35);
    color: #333;
}

/* Mobile Menu */
.mobile-nav-toggler {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mobile-nav-toggler .bar {
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 0 4px rgba(15, 23, 42, 0.35);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.mobile-nav-toggler .bar:not(:last-child) {
    margin-bottom: 5px;
}

.mobile-nav-toggler:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
}

.mobile-nav-toggler:focus-visible,
.close-btn:focus-visible {
    outline: 3px solid rgba(74, 123, 192, 0.35);
    outline-offset: 3px;
}

.mobile-nav-toggler.is-active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggler.is-active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggler.is-active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.main-header.scrolled .mobile-nav-toggler {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.main-header.scrolled .mobile-nav-toggler .bar {
    background: #0f172a;
}

body.mobile-menu-open {
    overflow: hidden;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    z-index: 9999;
    display: none;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.mobile-menu.active {
    display: block;
    animation: fadeInMenu 0.3s ease;
}

@keyframes fadeInMenu {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.mobile-menu .menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.mobile-menu.active .menu-backdrop {
    opacity: 1;
}

.menu-box {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 100%;
    margin-left: auto;
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(20px);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu.active .menu-box {
    transform: translateX(0);
}

.upper-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.upper-box .nav-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.upper-box .nav-logo img {
    max-height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.upper-box .lang-btn {
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.upper-box .lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}


.close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.close-btn:hover {
    transform: rotate(90deg);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
}

.close-btn:active {
    transform: rotate(90deg) scale(0.95);
}

.close-icon,
.close-icon::before,
.close-icon::after {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 10px;
    background: #ffffff;
    content: '';
}

.close-icon::before,
.close-icon::after {
    position: absolute;
    top: 0;
    left: 0;
}

.close-icon {
    background: transparent;
}

.close-icon::before {
    transform: rotate(45deg);
}

.close-icon::after {
    transform: rotate(-45deg);
}

.mobile-menu .navigation {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    overflow-y: auto;
}

.mobile-menu .navigation > li {
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
}

.mobile-menu .navigation > li > a,
.mobile-menu .navigation > li > .mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-menu .navigation > li > a {
    gap: 0.75rem;
}

.mobile-menu .navigation > li > a::after {
    content: '→';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.mobile-menu .navigation > li > a:hover,
.mobile-menu .navigation > li > a:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.mobile-menu .navigation > li > a:hover::after,
.mobile-menu .navigation > li > a:focus::after {
    color: #ffffff;
    transform: translateX(4px);
}

.mobile-nav-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    padding: 1rem 1.25rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateX(4px);
}

.mobile-nav-link span:first-child {
    flex: 1 1 auto;
}

.mobile-nav-caret {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-nav-caret::before {
    content: '▼';
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.mobile-menu .navigation > li.has-submenu.is-open > .mobile-nav-link {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.mobile-menu .navigation > li.has-submenu.is-open > .mobile-nav-link .mobile-nav-caret {
    background: rgba(74, 123, 192, 0.3);
    border-color: rgba(74, 123, 192, 0.5);
}

.mobile-menu .navigation > li.has-submenu.is-open > .mobile-nav-link .mobile-nav-caret::before {
    transform: rotate(180deg);
    color: #4A7BC0;
}

.mobile-menu .navigation .mobile-submenu {
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding: 0;
    display: none;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.mobile-menu .navigation .mobile-submenu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu .navigation .mobile-submenu li:last-child {
    border-bottom: none;
}

.mobile-menu .navigation .mobile-submenu li a {
    display: block;
    padding: 0.75rem 1.25rem 0.75rem 2rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu .navigation .mobile-submenu li a::before {
    content: '•';
    position: absolute;
    left: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mobile-menu .navigation .mobile-submenu li a:hover,
.mobile-menu .navigation .mobile-submenu li a:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding-left: 2.5rem;
}

.mobile-menu .navigation .mobile-submenu li a:hover::before,
.mobile-menu .navigation .mobile-submenu li a:focus::before {
    color: #4A7BC0;
    transform: scale(1.2);
}

.mobile-menu .navigation .mobile-submenu li a::after {
    content: none;
}

.mobile-meta {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    padding-top: 2rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.mobile-meta p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.mobile-meta__link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-meta__link:hover {
    color: #4A7BC0;
}

.mobile-lang-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.mobile-lang-switcher .lang-link {
    color: rgba(248, 250, 252, 0.94);
    border-color: rgba(255, 255, 255, 0.4);
}

.mobile-lang-switcher .lang-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.mobile-lang-switcher .lang-btn {
    color: rgba(248, 250, 252, 0.94);
    border-color: rgba(255, 255, 255, 0.4);
    background: transparent;
    margin-bottom: 5rem;
}

.mobile-lang-switcher .lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.mobile-btn {
    margin-top: 0;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    color: #ffffff;
    box-shadow: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

/* Common Button Styles */
.theme-btn {
    display: inline-block;
    align-items: center;
    justify-content: center;
    height: 36px;
    color: white;
    padding: 4px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    cursor: pointer;
    text-align: center;
}

.theme-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    color: #ffffff;
}

.btn-style-one {
    background: #2563eb;
}

.btn-style-two {
    background: #10b981;
}

.btn-style-two:hover {
    background: #059669;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.sec-title {
    text-align: center;
    margin-bottom: 3rem;
}

.sec-title .sub-title {
    color: #2563eb;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.sec-title h2 {
    color: #333;
    margin-bottom: 1rem;
}

.sec-title .text {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}

.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* Animation Classes */
.wow {
    visibility: hidden;
}

.fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.fadeInLeft {
    animation: fadeInLeft 0.8s ease forwards;
}

.fadeInRight {
    animation: fadeInRight 0.8s ease forwards;
}

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

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

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

/* Page Title Background Image Animation */
.page-title {
    position: relative;
    overflow: hidden;
    animation: backgroundFadeInZoom 1.5s ease-out forwards;
}

.page-title > * {
    position: relative;
    z-index: 1;
}

@keyframes backgroundFadeInZoom {
    from {
        transform: scale(1.15);
    }
    to {
        transform: scale(1);
    }
}