:root {
    --primary-color: #68726C;
    --secondary-color: #6c757d;

    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f6f6f6;
    --error-orange: orange;

    --vr-color: #d2d2d2;

    --white-color:#ffffff;
    --black-color: #000000;
    --dark-grey: #333333;

    --quote-color: #68726c;
    --shadow-color: 2px 2px 4px rgba(0, 0, 0, 0.6);

    --white-background-color: #ffffff;
    --black-background-color: #000000;
}

/* General */
body {
    font-family: "Cormorant Infant", serif;
    font-size: 1.5rem;
    background-color: var(--black-background-color);
}

main {
    background-color: var(--black-background-color);
}

body, html {
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal overflow */
    overflow-y: auto;
}


h1, h2 {
    font-family: "Cormorant Infant", serif;
    font-weight: 100 !important;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 10px 0;
    padding: 0;
}

a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: none;
    color: var(--primary-color)
}

.wrapper-link {
    text-decoration: none;
    color: var(--dark-grey)
}


button {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: var(--primary-color);
}

p {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
}

.monrope {
    font-family: "Manrope", sans-serif;
    font-weight: 100 !important;
}

.ul-default ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ul-default ul li {
    text-align: start;
    padding: 3;
}

/* Spinner */
.spinner-border {
    width: 1.2rem;
    height: 1.2rem;
    border-width: 0.2rem;
}

/* Header Section */
.header-container {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 990px;
    overflow: hidden;
    background-color: var(--white-background-color);
}

.header-container.auth {
    height: 0vh;
    min-height: 180px;
    background-color: var(--primary-color);
}

.header-container.dark {
    height: 0vh;
    min-height: 180px;
    background-color: var(--black-background-color);
}

/* Video controls */
.play-pause-btn {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.play-pause-btn i {
    position: absolute;
    font-size: 2.2rem;
    color: var(--white-color);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.play-icon {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.pause-icon {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.play-icon.active {
    opacity: 1;
    transform: scale(1);
}

.pause-icon.active {
    opacity: 0;
    transform: scale(0.5);
}

.play-pause-btn:hover i {
    transform: scale(1.3);
}

/* SVG Circular Progress */
.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 3;
}

.progress-ring-fill {
    fill: none;
    stroke: white;
    stroke-width: 3;
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    transition: stroke-dashoffset 0.1s linear;
}

/* Header Overlay */
.header-overlay,
.footer-overlay {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 15px;
    color: var(--white-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-overlay {
    top: 0;
}

.footer-overlay {
    bottom: 0;
}

.site-logo {
    max-height: 120px;
}

.header-log-out-btn {
    color: var(--white-color) !important;
    background-color: var(--danger-color);
    border: 1px solid var(--white-color) !important;
    font-size: .9rem;
    padding: 5px;
    transition: color 0.6s ease, background-color 0.6s ease, border-color 0.6s ease, transform 0.6s ease;
}

.header-log-out-btn:hover {
    color: var(--danger-color) !important;
    background: none;
    border: 1px solid var(--danger-color) !important;
    transition: color 0.6s ease, background-color 0.6s ease, border-color 0.6s ease, transform 0.6s ease;
}

/* Breadcrumbs */
.breadcrumb-wrapper {
    margin-bottom: 80px;
    background: none;
}

.custom .breadcrumb-wrapper {
    padding:0px 120px;
    margin-bottom: 0px;
    background-color: var(--primary-color);
}

.dark .breadcrumb-wrapper {
    padding:0px 120px;
    margin-bottom: 0px;
    background-color: var(--black-background-color);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero .vr {
    /* height: 60vh; */
    background-color: var(--secondary-color) !important;
    width: 1px;
}

.hero-image {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 60%;
    max-width: 60%;
    object-fit: cover;
}

.hero-two-image {
    position: absolute;
    top: 60%;
    left: 60%;
    transform: translate(-50%, -50%);
    max-height: 60%;
    max-width: 60%;
    object-fit: cover;
}

.top-row, .bottom-row {
    position: relative;
    z-index: 2;
}

.top-row img, .bottom-row img {
    position: absolute;
}

.top-row img {
    right: -80px;
    top:-150px;
    border-radius: 10px;
    max-width: 250px;
}

.bottom-row img {
    left: -80px;
    top:-140px;
    border-top-left-radius: 10;
    border-top-right-radius: 10;
    max-width: 250px;
}

.about-middle-image {
    max-width: 160px;
    border-radius: 10px !important;
}

.force-right {
    left: 80% !important;
    top:-200px !important;
}

.middle-row {
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: start;
    overflow: hidden;
    padding: 5px;
    border-left: 1px solid var(--vr-color);
    border-right: 1px solid var(--vr-color);
}

.small-text-container {
    max-width: 450px;
}

.small-text-container-left {
    text-align: left;
    margin-left: auto;
    max-width: 450px;
}

/* Parallax */
.parallax {
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

@media only screen and (max-device-width: 1366px) {
    .parallax {
        background-attachment: scroll;
    }
}

/* Language Switcher */
.header-language-switcher {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 15px;
}

.header-language-switcher a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
}

.header-language-switcher i {
    margin-right: 10px;
}

/* Header Button */
.header-button {
    font-size: .9rem;
    border: 1px solid var(--white-color);
    padding: 5px;
    transition: color 0.6s ease, background-color 0.6s ease, border-color 0.6s ease, transform 0.6s ease;
}

/* Breadcrumb Styling */
.breadcrumb {
    color: var(--white-color);
    margin-bottom: 0;
    font-size: 1rem;
}

.breadcrumb-item a {
    color: var(--white-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #898f65;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '>';
    padding: 0px 10px 0px 4px;
    color: var(--light-color);
    opacity: 0.6;
}

/* Header Content */
.header-content {
    position: absolute;
    top: 160px;
    left: 5%;
    padding: 10px 15px;
    width: 90%;
}

.content-box {
    padding-top: 80px;
    min-width: 100%;
    box-sizing: border-box;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
    min-height: 400px;
    overflow: hidden;
}

.header-text {
    font-size: 1rem;
    color: var(--white-color);
    font-family: "Manrope", sans-serif;
}

.header-text.center {
    padding-top: 5%;
    margin: 0 30%;
}

.header-text.left {
    margin: 0px 60% 0px 0px;
}

.header-text.right {
    margin: 0px 0px 0px 60%;
}

.header-text h1 {
    font-size: 3rem;
}

.media-container {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.openMenuBtn {
    cursor: pointer;
}

.hamburger-menu {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Button styling */
.hamburger-menu button {
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Rotate the icon when hovering over the button OR the text */
.hamburger-menu:hover button {
    transform: rotate(90deg);
}

.hamburger-nav-language-switcher i {
    display: inline;
    font-size: 1.2rem;
}

/* Fullscreen Menu */
.fullscreen-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.5s ease;
}

.fullscreen-menu-overlay.show {
    visibility: visible;
    opacity: 1;
}

/* Menu Container */
.menu-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 90%;
    padding: 10px;
    background: var(--black-background-color);
    overflow: hidden;
}

/* Menu Items */
.menu-items ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.menu-items ul li {
    margin: 15px 0;
}

.menu-items a {
    font-size: 2rem;
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.menu-items a:hover {
    color: var(--primary-color);
}

/* Menu Image */
.menu-image img {
    width: 100%;
    height: 90%;
    object-fit: cover;
}

.hamburger-nav-language-switcher {
    display: none;
}

/* Close Menu Button */
.close-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    background: var(--black-background-color);
    border: none;
    color: var(--white-background-color);
    cursor: pointer;
    transition: transform 0.3s ease;
    display: inline-block;
}

.close-menu:hover {
    transform: rotate(90deg);
    background: var(--black-background-color);
    border: 1px solid var(--white-color);
}
/* End Hamburger Menu */

/* Active breadcrumb */
.breadcrumb-item.active {
    font-weight: bold;
    color: var(--light-color);
}

/* Main */
.black-section {
    background-color: var(--black-background-color);
    color: var(--white-color);
    padding: 60px 0;
}

/* Overlay */
.image-overlay-container {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden; /* Optional, to keep things clean */
}

.image-overlay-container img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-overlay-container:hover .overlay {
    opacity: 1; /* Show overlay on hover */
}

.overlay-text {
    max-width: 80%;
}

/* Quote Section */
.quote-section-button,
.quote-section .rounded {
    background-color: var(--quote-color);
    color: var(--light-color);
    border-radius: 15px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.quote-section-button,
.quote-section .rounded:hover {
    transform: translateY(-5px);
}

.quote-section .rounded::before {
    content: '“';
    font-size: 999px;
    color: #5b645f;
    position: absolute;
    left: -120px;
    top: 100%;
    transform: translateY(-50%);
    z-index: 0;
    opacity: 0.3;
}

.quote-section .rounded h1 {
    position: relative;
    z-index: 1;
}

.quote-section .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quote-section .vertical-line {
    border-right: 1px solid var(--light-color);
    height: 100%;
}

/* Curved quote section */
.curved-quote-section {
    display: flex;
    min-height: 300px;
}


.curved-quote-section .content-container {
    display: flex;
    width: 100%;
    margin: 0 auto;
}

.curved-quote-section .left-content {
    width: 60%;
    background: url('../../images/mask.png') no-repeat center center;
    background-size: cover;
    color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.curved-quote-section .right-content{
    width: 40%;
    background-color: var(--quote-color);
    color: var(--light-color);
    display: flex;
    align-items: center;
    /* justify-content: center; */
    padding: 40px;
    border-top-left-radius: 15px;
}

.curved-quote-section .right-content .right-content-box {
    max-width: 260px;
    width: 100%;
}

.curved-quote-section .vr {
    border-left: 1px solid var(--dark-grey);
    height: 80%;
    margin: 0 15px;
}

.black-text {
    color: var(--black-color);
}

/* Link */
.button {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--light-color);
    background-color: var(--dark-color);
    color: var(--light-color);
    border-radius: 10px;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

/* News */
.card {
    color: var(--text-color);
    border: none;
    overflow: hidden;
}

.image-zoom {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-zoom:hover {
    transform: scale(1.01); /* Slight zoom */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Optional shadow for effect */
}

.card img {
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
}

.circle-link{
    color: var(--secondary-color);
}

.download-link {
    color: var(--secondary-color);
    text-decoration: none;
}

.download-link i {
    font-size: 1.2rem;
}

.circle-icon {
    margin: auto;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--black-color);
    border-radius: 50%;
    font-size: 1rem; /* Default icon size */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover effect */
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.circle-icon:hover {
    border: 1px solid var(--primary-color);
}

.circle-icon i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.circle-icon:hover i {
    transform: rotate(90deg);
    color: var(--primary-color);
}

.circle-icon.down-circle-icon {
    border: 1px solid var(--white-color);
    color: var(--white-color);
    position: relative; /* This is necessary for positioning the icon on hover */
}

/* Move and fade out the down arrow on hover */
.circle-icon.down-circle-icon:hover i {
    transform: translateY(0px) scale(1.4); /* Zoom in by 20% */
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Show the zoomed-in version of the existing down arrow on hover */
.circle-icon.down-circle-icon:hover i {
    opacity: 1;
    color: var(--white-color);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.badge.bg-primary {
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
}

.article-short-description {
    font-family: "Manrope", sans-serif;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.article-date {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    color: var(--secondary-color);
}

/* Messages */
.toast-body {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    color: var(--light-color);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 85px;
    right: 10px;
    background-color: var(--primary-color);
    color: var(--white-color);;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    display: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
}

.back-to-top:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: translateY(0);
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    margin-top: 80px;
    text-align: center;
    font-size: 0.9rem;
    padding: 40px 0;
}

/* Footer Logo */
.footer-logo {
    max-width: 150px;
}

/* Footer Menu */
.footer-menu {
    font-size: 1.2rem;
}

/* Forms */
.custom-input {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    padding: 10px 0;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    color: var(--white-color);
}

/* On focus */
.custom-input:focus {
    outline: none;
    box-shadow: none;
    border-bottom: 1px solid var(--white-color);
    background-color: transparent;
    color: var(--white-color);
}

textarea.custom-input {
    height: 80px; /* Initial height */
    min-height: 60px;
    max-height: 300px;
    overflow: auto;
    resize: vertical;
}

.custom-input::placeholder {
    color: var(--secondary-color);
    opacity: 1;
}

.white-placeholder::placeholder {
    color: var(--light-color);
    opacity: 1;
}

/* Autofill override for Chrome, Safari, Edge */
.custom-input:-webkit-autofill {
    box-shadow: 0 0 0px 1000px var(--quote-color) inset !important;
    -webkit-text-fill-color: var(--white-color) !important;
    caret-color: var(--white-color);
}

/* Firefox Autofill */
.custom-input:-moz-ui-autofill {
    background-color: var(--quote-color) !important;
    color: var(--white-color) !important;
    caret-color: var(--white-color);
}

.is-invalid {
    border: none;
    border-bottom: 1px solid red;
}

.is-invalid:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none;
    border-bottom: 1px solid red;
}

/* Style for the valid state */
.is-valid {
    outline: none !important;
    box-shadow: none !important;
    border: none;
    border-bottom: 1px solid green;
}

/* Add a custom style for the input on focus (no red border) */
.custom-input:focus {
    outline: none;
    box-shadow: none;
    border-bottom: 1px solid var(--white-color);
}

/* Remove red glow on Firefox invalid fields */
input:-moz-ui-invalid {
    box-shadow: none;
}

/* Remove the default background when checked */
.form-check-input:checked {
    background-color: transparent; /* Removes the blue background */
    border-color: var(--primary-color);
    outline: none;
    box-shadow: none;
}

/* Overwrites */
.vr {
    background-color: var(--white-color) !important;
    opacity: .70;
}

.btn-primary {
    background-color: var(--black-background-color);
    border-color: var(--black-color);
    border: 1px solid var(--secondary-color);
    transition: color 0.6s ease, background-color 0.6s ease, border-color 0.6s ease, transform 0.6s ease;
}

.btn-outline-secondary {
    color: var(--white-color);
    border-color: var(--white-color);
}

.btn-primary:hover,
.btn-outline-secondary:hover{
    color: var(--black-color);
    background-color: var(--light-color);
    border-color: var(--white-color);
    transition: color 0.6s ease, background-color 0.6s ease, border-color 0.6s ease, transform 0.6s ease;
}

.btn-primary:active,
.btn-outline-secondary:active {
    background-color: var(--primary-color) !important;
    border-color: var(--white-color) !important;
    color: var(--white-color);
}

.text-bg-dark {
    background-color: var(--black-background-color) !important;
}

.web-design-logo {
    max-width: 70px;
    margin-bottom: 5px;
}

.page-item.active a {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-link {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-link:hover{
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* News inner page - Image container */
.image-container {
    position: relative;
    overflow: hidden;
    max-height: 600px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    max-width: 90%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.icon-xs {
    font-size: 16px !important;
}

/* Loading video overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease-in-out;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.background-black {
    background-color: var(--black-background-color);
    color: var(--white-color);
}

.z--1 {
    z-index: -1;
}

/* Load more */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

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


/* Media @768 */
@media (max-width: 768px) {
    .site-logo {
        margin-left: 30px;
        max-width: calc(100% - 80px);
    }

    .header-container {
        position: relative;
        width: 100%;
        height: 80vh; /* 80% of the screen height */
        max-height: 400px; /* Limit max height for larger screens */
        overflow: hidden;
        background-color: var(--white-background-color);
    }

    .header-language-switcher .header-button,
    .header-content {
        display: none;
    }

    .quote-section .vertical-line {
        border-right: none;
    }

    .breadcrumb-wrapper {
        position: absolute;
        top: 140px;
        left: 15px;
        width: auto;
        max-width: calc(100% - 30px);
        padding: 10px 15px;
    }

    .menu-container {
        display: flex;
        flex-direction: column;
        width: 90%;
        max-width: 400px;
        height: 80vh;
        padding: 20px;
        overflow-y: auto;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    }

    .menu-image {
        display: none;
    }

    .menu-items a {
        font-size: 1.5rem;
    }

    .hamburger-menu .menu-title {
        display: none;
    }

    .breadcrumb-wrapper {
        top: 120px;
        left: 10px;
        max-width: calc(100% - 20px);
        padding: 5px 10px;
    }

    .custom .breadcrumb-wrapper {
        padding:0px 10px;
        margin-bottom: 0px;
        background-color: inherit;
    }

    .dark .breadcrumb-wrapper {
        padding:0px 10px;
        margin-bottom: 0px;
        background-color: var(--black-background-color);
    }

    .breadcrumb {
        font-size: 0.9rem;
    }

    .header-language-switcher span {
        display: none;
    }

    .hamburger-nav-language-switcher {
        padding-left: 15px;
        display: block;
    }

    .curved-quote-section {
        flex-direction: column;
        min-height: auto;
    }

    .curved-quote-section .left-content,
    .curved-quote-section .right-content {
        width: 100%;
        padding: 15px;
    }

    .curved-quote-section .left-content {
        margin-bottom: 20px;
    }

    .footer {
        text-align: center;
        padding: 30px 15px;
    }

    .footer-logo {
        max-width: 120px;
    }

    .back-to-top {
        bottom: 85px;
        right: 10px;
    }

    .g-recaptcha {
        transform: scale(0.8);
        transform-origin: 0 0;
    }
}
