/* Font Face Declarations */
@font-face {
    font-family: 'Geogrotesque';
    src: url('fonty/GeogrotesqueCyr-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Geogrotesque';
    src: url('fonty/GeogrotesqueCyr-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Geogrotesque';
    src: url('fonty/GeogrotesqueCyr-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Geogrotesque';
    src: url('fonty/GeogrotesqueCyr-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow: hidden;
    height: 100vh;
}

body {
    font-family: 'Geogrotesque', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    position: relative;
    background: #000000;
}

#particles{
    position: absolute;
    top:0;
    left:0;
    display: block;
    height:100%;
    width: 100%
}

/* Tło na pełny ekran */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('images/backgrounds/corelik.com_pasek.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transition: width 0.8s cubic-bezier(0.65, 0, 0.35, 1),
                transform 0.8s cubic-bezier(0.65, 0, 0.35, 1),
                opacity 0.6s ease;
    transform: scale(1);
}

.background-image.zoom-in {
    animation: slideAndZoomIn 1.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.background-image.zoom-out {
    animation: slideAndZoomOut 1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes slideAndZoomIn {
    0% {
        width: 100%;
        transform: scale(1);
        opacity: 1;
    }
    100% {
        width: 50%;
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes slideAndZoomOut {
    0% {
        width: 50%;
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        width: 100%;
        transform: scale(1);
        opacity: 1;
    }
}

.background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: opacity 0.6s ease;
}

/* Zoom obrazka z akordeonu */
.main-container.zoomed .background-image {
    width: 50%;
    transform-origin: left center;
    pointer-events: auto;
    cursor: pointer;
}

.main-container.zoomed .background-image:hover {
    transform: scale(1.2) !important;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.main-container.zoomed .background-image::before {
    opacity: 0;
}

/* Logo Corelik */
.logo {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 3000;
    width: 120px;
    height: auto;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.logo:hover {
    transform: scale(1.05);
}

/* Przycisk kontakt */
.contact-button {
    position: fixed;
    top: 30px;
    right: 40px;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;    
    z-index: 3000;
    overflow:hidden;        
    padding: 0;
    box-shadow: 0 0 20px rgba(239, 127, 26, 0.6),
                0 0 40px rgba(239, 127, 26, 0.4),
                0 4px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.contact-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  border-radius: 0;
  transition: border-radius 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
  
}

.contact-button.active {
  border-radius: 999px;
}


.contact-button.active::before {
  border-radius: 999px;
}

.contact-button.contact-mode{
    width: 50px;
    height: 50px;
    background: transparent;     
    border-radius: 0;
  
}

.contact-button:hover {
    box-shadow: 0 0 25px rgba(239, 127, 26, 0.8),
                0 0 50px rgba(239, 127, 26, 0.5),
                0 6px 20px rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
    
}

.contact-icon-img {
    width: 50px;   
    opacity: 1;
    transition: all 0.3s ease, transform 0.3s ease;
    position: absolute;
    
}

.close-icon {
  
    width: 28px;
    height: 28px;
    opacity: 0;
    transition: all 0.3s ease, transform 0.3s ease;
    background-image: url('images/close-x-svgrepo-com.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
   
}

.contact-button.active .contact-icon-img {
    opacity: 0;
}

.contact-button.active {
    width: 40px;
    height: 40px;  
    background-color: #000000;    

 
}


.contact-button.active .close-icon {
    opacity: 1;
    transform: rotate(180deg); 
    
}


/* Menu nawigacyjne */
.nav-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    transition: top 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 2000;
    opacity: 0;
}

.nav-menu.active {
    top: 0;
    opacity: 1;
}

.nav-close {
    display: none;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 600px;
}

.nav-item {
    width: 100%;
    opacity: 0;
    transform: translateY(0);
}

.nav-menu.active .nav-item:nth-child(1) {
    animation: slideFromCenter 0.5s cubic-bezier(0.65, 0, 0.35, 1) 0.7s forwards;
}

.nav-menu.active .nav-item:nth-child(2) {
    animation: slideFromCenter 0.5s cubic-bezier(0.65, 0, 0.35, 1) 0.8s forwards;
}

.nav-menu.active .nav-item:nth-child(3) {
    animation: slideFromCenter 0.5s cubic-bezier(0.65, 0, 0.35, 1) 0.9s forwards;
}

.nav-menu.active .nav-item:nth-child(4) {
    animation: slideFromCenter 0.5s cubic-bezier(0.65, 0, 0.35, 1) 1.0s forwards;
}

@keyframes slideFromCenter {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideToCenter {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(0) scale(0.8);
    }
}

.nav-link {
    display: block;
    width: 100%;
    padding: 20px 40px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 400;
    font-stretch: condensed;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 1px;
    background: #FF5722;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-link:hover {
    color: #FF5722;
    letter-spacing: 4px;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:active {
    transform: scale(0.98);
}

/* Główny kontener */
.main-container {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* Pionowy akordeon */
.vertical-accordion {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
    position: relative;
    transition: all 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.vertical-accordion.expanded {
    width: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
}

.accordion-tab {
    position: relative;
    flex: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    border-right: 2px solid #EF7F1A;
}

.accordion-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.accordion-tab:hover::after {
    opacity: 1;
}

.accordion-tab:last-child {
    border-right: none;
}

.accordion-tab:hover {
    flex: 1.2;
    filter: brightness(1.15);
}

.accordion-tab.active {
    flex: 1.5;
}

.tab-label {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 8px;
    color: #ffffff;
    text-transform: uppercase;
    user-select: none;
    padding: 40px 0;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 3;
}

/* Tła graficzne dla każdej zakładki */
.accordion-tab[data-service="pieczatki"] {
    background: url('images/backgrounds/corelik_com_pieczatki_foto.png') center/cover;
}

.accordion-tab[data-service="reklama"] {
    background: url('images/backgrounds/corelik_com_reklama_foto.png') center/cover;
}

.accordion-tab[data-service="druk"] {
    background: url('images/backgrounds/corelik_com_druk_foto.png') center/cover;
}

.accordion-tab[data-service="trofea"] {
    background: url('images/backgrounds/corelik_com_trofea_foto.png') center/cover;
}

.accordion-tab[data-service="oprawa"] {
    background: url('images/backgrounds/corelik_com_oprawa_foto.png') center/cover;
}

.accordion-tab[data-service="projekty"] {
    background: url('images/backgrounds/corelik_com_projekty_foto.png') center/cover;
}

/* Animacja zoom dla zakładek */
.accordion-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-tab:hover::before {
    transform: scale(1.1);
}

/* Panel z treścią */
.content-panel {
    position: fixed;
    right: 0;
    top: 0;
    width: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: linear-gradient(to bottom left, rgba(255, 166, 77, 0.3), transparent 50%), #EF7F1A;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    pointer-events: none;
    overflow: hidden;
     box-shadow: inset 40px 0 60px -20px rgba(0,0,0,0.25);
}

.content-panel.active {
    width: 50%;
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    padding: 80px;
}

/* Przycisk zamknięcia */
.close-panel {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 2.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 10;
    line-height: 1;
    padding: 0;
    opacity: 0;
    transform: scale(0.8) rotate(0deg);
}

.content-panel.active .close-panel {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    transition-delay: 0.5s;
}

.close-panel:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1) rotate(90deg);
    border-color: rgba(255, 255, 255, 0.4);
}

.close-panel:active {
    transform: scale(1) rotate(90deg);
}

.content-image {
    width: 100%;
    flex: 0 0 auto;
    display: none;
}

.content-image img {
    display: none;
}

.content-text {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    padding: 0;
    /* overflow: hidden; */
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0.2s,
                transform 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0.2s;
    height: 100%;
}

.subtitle-divider {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  height: 100%;
  width: 100%;
  padding: 1.5rem;
}

/* brak scrolla → centrowanie */
.subtitle-divider.is-centered {
  justify-content: center;
}

/* jest scroll → od góry */
.subtitle-divider.has-scroll {
  justify-content: flex-start;
}


.content-panel.active .content-text {
    opacity: 1;
    transform: translateX(0);
}

.content-text p{
    font-size: clamp(0.9rem, 1.2vw, 1.3rem);
    line-height: 1.6;
    color: #000000;
    font-weight: 400;
    /* max-width: 450px; */
    text-align: left;
    order: 1;
    white-space: pre-line;
}

.content-text h2 {
    font-size: clamp(5rem, 12vh, 12rem);
    font-weight: 700;
    letter-spacing: -5px;
    color: #000000;
    text-transform: uppercase;
    margin: 0;
    line-height: 0.85;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: inline-block;
    transform: scale(1, 1.1);
    align-self: center;
    order: 2;
    max-height: 100%;
    padding:  20px 0;
}

.content-text h3 {
    font-size: clamp(2rem, 1.3vw, 1.4rem);
    line-height: 1.6;
    color: #000000;
    font-weight: 400;
    /* max-width: 450px; */
    text-align: left;
    order: 1;
    white-space: pre-line;
     margin-bottom: 2rem;
}

.content-text h2 span {
    display: inline-block;
    opacity: 0;
    animation: slideDown 0.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-100vh);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Info Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 450px;
    order: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 30px;
    flex-shrink: 0;
    opacity: 0.9;
}


.contact-item span {
    font-size: clamp(0.9rem, 1.2vw, 1.3rem);
    line-height: 1.6;
    color: #000000;
    font-weight: 400;
    text-align: left;
}

/* Panel Footer */
.panel-footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color:#000000 ;
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Accordion Footer */
.accordion-footer {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 0.5px;
    z-index: 10;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}


/* Responsywność menu */
@media (max-width: 768px) {
    .nav-link {
        font-size: 1.5rem;
        padding: 20px 30px;
        letter-spacing: 2px;
    }

    .nav-link:hover {
        letter-spacing: 4px;
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .content-panel.active {
        width: 55%;
        padding: 70px 70px 70px 90px;
    }

    .content-text h2 {
        font-size: 4.5rem;
        letter-spacing: 6px;
    }

     .content-text h3 {
       font-weight: 500;
      
        font-size: 1.5rem;
        letter-spacing: 5px;
    }

    .content-text p {
        font-size: 1.7rem;
    }
}

@media (max-width: 1200px) {
    .content-panel.active {
        width: 60%;
        padding: 60px;
    }

    .content-text h2 {
        font-size: 3.8rem;
        letter-spacing: 5px;
    }

    .content-text p {
        font-size: 1.5rem;
    }

    .vertical-text {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow: auto;
    }

    .logo {
        display: none;
    }

    .vertical-accordion {
        flex-direction: column;
        width: 100%;
        height: auto;
        min-height: 100vh;
    }

    .vertical-accordion.expanded {
        height: 0;
        opacity: 0;
        overflow: hidden;
    }

    .accordion-tab {
        width: 100%;
        height: calc(100vh / 3);
        flex: 0 0 calc(100vh / 3);
        min-height: 200px;
        border: none;
        transition: none;
        border-bottom: 2px solid #EF7F1A;
    }
    .accordion-tab:last-child {
        border-bottom: none;
    }


    .accordion-tab:hover {
        flex: 0 0 calc(100vh / 3);
        filter: none;
    }

    .accordion-tab:hover::before {
        transform: none;
    }

    .accordion-tab::before {
        transition: none;
    }

    .tab-label {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .vertical-text {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 1.8rem;
        letter-spacing: 4px;
    }

    .content-panel.active {
        width: 100%;
        background: linear-gradient(to bottom left, rgba(255, 166, 77, 0.3), transparent 50%), #EF7F1A;
        padding: 50px 40px;
    }

    .content-text h2 {
        font-size: clamp(2.5rem, 10vh, 6rem);
    }

    .content-text p {
        font-size: 1.4rem;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-icon {
        width: 25px;
        /* height: 25px; */
    }

    .contact-item span {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .accordion-tab {
        height: calc(100vh / 3);
        flex: 0 0 calc(100vh / 3);
        min-height: 180px;
    }

    .accordion-tab:hover {
        flex: 0 0 calc(100vh / 3);
    }

    .vertical-text {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .content-panel.active {
        padding: 40px 30px;
    }

    .content-text h2 {
        font-size: clamp(2rem, 8vh, 5rem);
        letter-spacing: 3px;
    }

    .content-text p {
        font-size: 1.2rem;
    }

    .contact-item {
        gap: 10px;
    }

    .contact-icon {
        width: 22px;
        height: 22px;
    }

    .contact-item span {
        font-size: 1.2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Colors */
::selection {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* ==================== LOADING SCREEN ==================== */

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    background: #000000;
    background: linear-gradient(51deg, rgba(0, 0, 0, 1) 0%, rgba(46, 45, 45, 1) 75%);
}

#loading-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    /* filter: blur(15px); */
    
    opacity: 1;
    z-index: -1;
}

#loading-screen.hide {
    opacity: 0;
    visibility: hidden;
}

/* Loader Dot Animation */
.loader-dot-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.6s ease;
}

.loader-dot-container.hide {
    opacity: 0;
    pointer-events: none;
}

.loader-dot {
    width: 40px;
    height: 22px;
    background: #EF7F1A;
    border-radius: 40%;
    animation: dotPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 151, 54, 0.5);
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

/* Logo Animation Container */
#enter {
    position: absolute;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

#enter.show {
    opacity: 1;
    pointer-events: all;
}

.logo-animation-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-right: 200px; */
}

.baloon-wrapper {
    position: relative;
    height: 250px;
    top:-4px;
    left:3px;
}

.baloon-left-1,
.baloon-left-2,
.baloon,
.baloon-right-1,
.baloon-right-2 {
    height: 100%;
    position: absolute;
    opacity: 0;
}

.baloon {
    left: 0;
    bottom: 0;
}

.baloon-left-1 {
    left: -69px;
    height: 95%;
    bottom: 2px;
}

.baloon-left-2 {
    left: -46px;
}

.baloon-right-1 {
    left: 44px;
}

.baloon-right-2 {
    height: 95%;
    left: 53px;
    bottom: 2px;
}

.baloon-dot {
    height: 100%;
    opacity: 0;
}

.dot-wrapper {
left: 11px;
position: relative;
height: 32px;
bottom: -143px;
}

.corelik-wrapper {
    position: relative;
    height: 70px;
    bottom: -48px;
    left: -105px;
}

.corelik {
    opacity: 0;
    height: 100%;
    position: absolute;
}

.com-wrapper {
    bottom: -77px;
    position: relative;
    height: 15px;
    right: -121px;
}

.com {
    height: 100%;
    opacity: 0;
    position: absolute;
}
.since-wrapper {
    bottom: -100px;
    position: relative;
    height: -106;
    left: -102px;
    opacity: 0;
}

.since-wrapper>img{
    height: 10px;
}

.tinydot-wrapper {
    bottom: -19px;
    position: relative;
    height: 9px;
    right: -149px;
    opacity: 0;
}

.tinydot {
    height: 100%;
    position: absolute;
}

.arrow-wrapper {
    bottom: -98px;
    position: relative;
    height: 60px;
    left: 120px;
}

.arrow {
    height: 100%;
    position: absolute;
}

.click-hint {
    display: none;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/* Hide main content during loading */
body.loading .background-image,
body.loading .logo,
body.loading .contact-button,
body.loading .nav-menu,
body.loading .main-container {
    opacity: 0;
    pointer-events: none;
}

/* Mobile styles for loading screen */
@media (max-width: 768px) {
    .logo-animation-container {
        /* padding: 60px;
        padding-right: 60px; */
        transform: scale(0.8);
    }

    /* .baloon-wrapper {
        height: 180px;
    }

    .corelik-wrapper {
        height: 50px;
        bottom: -35px;
        left: -75px;
    }

    .com-wrapper {
        bottom: -55px;
        height: 11px;
        right: -88px;
    }

    .tinydot-wrapper {
        bottom: -14px;
        height: 7px;
        right: -106px;
    }

    .arrow-wrapper {
        bottom: -68px;
        height: 43px;
        left: 163px;
    }

    .dot-wrapper {
        left: 7px;
        height: 20px;
        bottom: -105px;
    }

    .since-wrapper {
        bottom: -72px;
        left: -73px;
    }

    .since-wrapper > img {
        height: 7px;
    } */

    .content-text{
        display: block
    }

    .content-text h2{
     writing-mode: unset;
    }
}

@media (max-width: 480px) {
    .logo-animation-container {
        /* padding: 80px 40px; */
        transform: scale(0.6);
    }

    /* .baloon-wrapper {
        height: 150px;
    }

    .corelik-wrapper {
        height: 42px;
        bottom: -29px;
        left: -62px;
    }

    .com-wrapper {
        bottom: -46px;
        height: 9px;
        right: -74px;
    }

    .tinydot-wrapper {
        bottom: -12px;
        height: 6px;
        right: -88px;
    }

    .arrow-wrapper {
        bottom: -57px;
        height: 36px;
        left: 136px;
    }

    .dot-wrapper {
        left: 6px;
        height: 17px;
        bottom: -88px;
    }

    .since-wrapper {
        bottom: -60px;
        left: -61px;
    }

    .since-wrapper > img {
        height: 6px;
    } */
}


/* ===== FIREFOX ===== */
* {
    scrollbar-width: thin; /* thin | auto | none */
    scrollbar-color: rgba(0, 0, 0, 0.45) transparent;
}

/* ===== CHROME / EDGE / SAFARI ===== */
*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.45);
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

