:root {
    --page-color: #fff;
}

/*
            <div class="error_page_nav">
                <a href="/" class="error_page_nav__logo">
                    <img src="/assets/logo/svg/logoBackTransparentTextColorred.svg" alt="LEDX">
                </a>
            </div>
            */

.page__content {
    width: 100% !important;
}

.error_page_nav {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 50px;
    width: 100%;
    padding: 0 150px;
    margin-top: 50px;
}

@media screen and (max-width: 768px) {
    .error_page_nav {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .error_page_nav {
        justify-content: center;
    }
}

@media screen and (max-width: 1440px) {
    .error_page_nav {
        padding: 0 100px;
    }
}

@media screen and (max-width: 1024px) {
    .error_page_nav {
        padding: 0 75px;
    }
}

@media screen and (max-width: 768px) {
    .error_page_nav {
        padding: 0 50px;
    }
}

@media screen and (max-width: 480px) {
    .error_page_nav {
        padding: 0 20px;
    }
}

.error_page_nav__logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.error_page_nav__logo img {
    position: relative;
    display: flex;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

/*
            <div class="error_page">

                <div class="error_page__content_left">
                    <div class="error_page__content_left__title">
                        <h2 class="error_page__content_left__title__text">
                            Aradığınız sayfayı bulamadık, ancak size en özel fırsatları sunabiliriz.
                        </h2>
                        <p class="error_page__content_left__title__desc">
                            Sayfa kaldırılmış, taşınmış veya hiç var olmamış olabilir.
                        </p>
                    </div>

                </div>

                <div class="error_page__content_right">
           

                </div>

            </div>
            */

.error_page {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    padding: 0 150px;
    margin-top: 100px;
}

@media screen and (max-width: 1440px) {
    .error_page {
        padding: 0 100px;
    }
}

@media screen and (max-width: 1024px) {
    .error_page {
        padding: 0 75px;
    }
}

@media screen and (max-width: 768px) {
    .error_page {
        padding: 0 50px;
    }
}

@media screen and (max-width: 480px) {
    .error_page {
        padding: 0 20px;
    }
}

.error_page__content_left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    width: 50%;
}

@media screen and (max-width: 768px) {
    .error_page__content_left {
        width: 100%;
        justify-content: center;
        align-items: center;
        margin-top: 50px !important;
    }
}

.error_page__content_left__title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .error_page__content_left__title {
        align-items: center;
    }
}

.error_page__content_left__title__text {
    position: relative;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .error_page__content_left__title__text {
        text-align: center;
        font-size: 36px;
    }
}

@media screen and (max-width: 480px) {
    .error_page__content_left__title__text {
        font-size: 24px;
    }
}

.error_page__content_left__title__desc {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    color: var(--subtext-color);
}

@media screen and (max-width: 768px) {
    .error_page__content_left__title__desc {
        text-align: center;
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .error_page__content_left__title__desc {
        font-size: 16px;
    }
}

.error_page__content_left__buttons {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
    margin-top: 25px;
}

.error_page__content_left__buttons__button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    border-radius: 6px;
    padding: 14px 24px;
    flex-shrink: 0;
    background: rgba(var(--primary-color-rgb), 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.error_page__content_left__buttons__button:hover {
    background: rgba(var(--primary-color-rgb), 0.9);
}

.error_page__content_left__buttons__button.disabled {
    background: rgba(var(--primary-color-rgb), 0.5);
    cursor: not-allowed;
    user-select: none;
}

.error_page__content_left__buttons__button__text {
    color: var(--neutral-n00);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.error_page__content_right {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    width: 50%;
    margin-top: 50px;
}

.error_page__content_right__text {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.error_page__content_right__text__title {
    position: relative;
    font-size: 144px;
    font-weight: 700;
    color: var(--primary-color);
    animation: logoBrightnessAnimation 1s infinite, logoHurricaneAnimation 1s infinite;
}

@media screen and (max-width: 768px) {
    .error_page__content_right__text__title {
        font-size: 96px;
    }
}

@media screen and (max-width: 480px) {
    .error_page__content_right__text__title {
        font-size: 72px;
    }
}

@keyframes logoBrightnessAnimation {
    0% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.1);
    }
    100% {
        filter: brightness(1);
    }
}

@keyframes logoHurricaneAnimation {
    0% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(5deg);
    }
}

@media screen and (max-width: 768px) {
    .error_page {
        flex-direction: column;
        padding: 0 20px; 
        margin-top: 50px;
    }

    .error_page__content_left,
    .error_page__content_right {
        width: 100%;
        height: auto; 
        margin-top: 0; 
    }

    .error_page__content_right {
        order: -1; 
    }
}
