/*=================
Basic style
==================*/

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    margin: 0;
    background: #f8fafc;
}

img {
    max-width: 100%;
    width: 100%;
    vertical-align: bottom;
}

h1,
h2,
p {
    margin: 0;
}

/*===================
animation01
====================*/

.animation01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
}

.animation01 div {
    width: 20%;
    height: 100%;
    animation: animation01 0.275s ease-in forwards;
    transform-origin: bottom;
    opacity: 0;
}

.animation01 div:nth-child(1) {
    background-color: #d55959;
    animation-delay: 0.4s;
}

.animation01 div:nth-child(2) {
    background-color: #ffe08b;
    animation-delay: 0.3s;
}

.animation01 div:nth-child(3) {
    background-color: #75cfb9;
    animation-delay: 0.2s;
}

.animation01 div:nth-child(4) {
    background-color: #f1a05b;
    animation-delay: 0.1s;
}

.animation01 div:nth-child(5) {
    background-color: #78bee4;
}

@keyframes animation01 {
    0% {
        transform: scale3d(1, 0, 1);
        opacity: 1;
    }

    100% {
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

/*===================
animation02
====================*/

.animation02 {
    position: absolute;
    width: 100%;
    height: 100%;
}

.animation02 div {
    position: absolute;
    width: 0;
    height: 0;
    animation: animation02 0.6s ease-in 0.6s forwards;
    opacity: 0;
}

.animation02 div:nth-child(1) {
    top: 0;
    left: 0;
    border-top: 100vh solid transparent;
    border-right: 100vw solid #f2f3df;
    transform-origin: bottom right;
}

.animation02 div:nth-child(2) {
    right: 0;
    bottom: 0;
    border-bottom: 100vh solid transparent;
    border-left: 100vw solid #f2f3df;
    transform-origin: top left;
}

@keyframes animation02 {
    0% {
        transform: scale3d(0, 0, 1);
        opacity: 1;
    }

    100% {
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

/*===================
animation03
====================*/

.animation03 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 13vw;
    height: 13vw;
}

.animation03 .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center;
    background-color: transparent;
    z-index: 9998;
}

.animation03 .circle_element01 {
    width: 13vw;
    height: 13vw;
    border: 0.25vw solid #54988b;
    border-radius: 50%;
    animation: animation03_circle 0.3s ease-in-out 0.5s forwards, animation03_circle_element01 0.3s linear 0.9s forwards;
    opacity: 0;
}

.animation03 .circle_element02 {
    width: 9vw;
    height: 9vw;
    border: 0.5vw solid #4b5e58;
    border-radius: 50%;
    animation: animation03_circle 0.4s ease-in-out 0.5s forwards, animation03_circle_element02 0.2s linear 1.0s forwards;
    opacity: 0;
}

.animation03 .circle_element03 {
    width: 4vw;
    height: 4vw;
    border: 1vw solid #404a52;
    border-radius: 50%;
    animation: animation03_circle 0.45s ease-in-out 0.5s forwards, animation03_circle_element03 0.15s linear 1.4s forwards;
    opacity: 0;
}

.animation-card:hover{
    transform:translateY(-10px) scale(1.03);

    box-shadow:
        0 0 15px rgba(117,207,185,.5),
        0 0 30px rgba(69,126,212,.3);

    transition:.3s ease;
}

@keyframes animation03_circle {
    0% {
        transform: scale3d(0, 0, 1);
        opacity: 1;
    }

    100% {
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

@keyframes animation03_circle_element01 {
    0% {
        border: 0.25vw solid #54988b;
    }

    100% {
        border: 0 solid #54988b;
    }
}

@keyframes animation03_circle_element02 {
    0% {
        border: 0.5vw solid #4b5e58;
    }

    100% {
        border: 0 solid #4b5e58;
    }
}

@keyframes animation03_circle_element03 {
    0% {
        border: 1vw solid #404a52;
    }

    100% {
        border: 0 solid #404a52;
    }
}

/*===================
animation04
====================*/

.animation04 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.animation04 .line_wrapper {
    position: absolute;
    opacity: 0;
}

.animation04 .line {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0;
}
.card-preview{
    height:180px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        #fdfbfb,
        #ebedee
    );

    overflow:hidden;
}

.gallery{
    background:
    linear-gradient(
        135deg,
        #f5f7fa,
        #c3cfe2
    );
}
/*===========
line01
===========*/

.animation04 .line_wrapper01 {
    top: -20%;
    left: 50%;
    width: 2.5%;
    height: 30%;
    animation: animation04_line_wrapper01 0.45s ease-in 0.8s forwards;
}

.animation04 .line01 {
    animation: animation04_line01 0.45s ease-in 0.5s forwards;
}

@keyframes animation04_line_wrapper01 {
    0% {
        transform-origin: top;
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }

    100% {
        transform-origin: top;
        transform: scale3d(1, 0, 1);
        opacity: 1;
    }
}

@keyframes animation04_line01 {
    0% {
        transform-origin: bottom;
        transform: scale3d(1, 0, 1);
        opacity: 1;
    }

    100% {
        transform-origin: bottom;
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

/*===========
line02
===========*/

.animation04 .rotate45 {
    display: block;
    position: absolute;
    top: 22.5%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: rotate(45deg);
}

.animation04 .line_wrapper02 {
    width: 2.5%;
    height: 30%;
    animation: animation04_line_wrapper02 0.45s ease-in 0.8s forwards;
}

.animation04 .line02 {
    animation: animation04_line02 0.45s ease-in 0.5s forwards;
}

@keyframes animation04_line_wrapper02 {
    0% {
        transform-origin: top;
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }

    100% {
        transform-origin: top;
        transform: scale3d(1, 0, 1);
        opacity: 1;
    }
}

@keyframes animation04_line02 {
    0% {
        transform-origin: bottom;
        transform: scale3d(1, 0, 1);
        opacity: 1;
    }

    100% {
        transform-origin: bottom;
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

/*===========
line03
===========*/

.animation04 .line_wrapper03 {
    top: 50%;
    left: 90%;
    width: 30%;
    height: 2.5%;
    animation: animation04_line_wrapper03 0.45s ease-in 0.8s forwards;
}

.animation04 .line03 {
    animation: animation04_line03 0.45s ease-in 0.5s forwards;
}

@keyframes animation04_line_wrapper03 {
    0% {
        transform-origin: right;
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }

    100% {
        transform-origin: right;
        transform: scale3d(0, 1, 1);
        opacity: 1;
    }
}

@keyframes animation04_line03 {
    0% {
        transform-origin: left;
        transform: scale3d(0, 1, 1);
        opacity: 1;
    }

    100% {
        transform-origin: left;
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

/*===========
line04
===========*/

.animation04 .rotate135 {
    display: block;
    position: absolute;
    top: 49.5%;
    left: -22%;
    width: 100%;
    height: 100%;
    transform: rotate(135deg);
}

.animation04 .line_wrapper04 {
    width: 2.5%;
    height: 30%;
    animation: animation04_line_wrapper04 0.45s ease-in 0.8s forwards;
}

.animation04 .line04 {
    animation: animation04_line04 0.45s ease-in 0.5s forwards;
}

@keyframes animation04_line_wrapper04 {
    0% {
        transform-origin: top;
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }

    100% {
        transform-origin: top;
        transform: scale3d(1, 0, 1);
        opacity: 1;
    }
}

@keyframes animation04_line04 {
    0% {
        transform-origin: bottom;
        transform: scale3d(1, 0, 1);
        opacity: 1;
    }

    100% {
        transform-origin: bottom;
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

/*===========
line05
===========*/

.animation04 .line_wrapper05 {
    top: 90%;
    left: 50%;
    width: 2.5%;
    height: 30%;
    animation: animation04_line_wrapper05 0.45s ease-in 0.8s forwards;
}

.animation04 .line05 {
    animation: animation04_line05 0.45s ease-in 0.5s forwards;
}

@keyframes animation04_line_wrapper05 {
    0% {
        transform-origin: bottom;
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }

    100% {
        transform-origin: bottom;
        transform: scale3d(1, 0, 1);
        opacity: 1;
    }
}

@keyframes animation04_line05 {
    0% {
        transform-origin: top;
        transform: scale3d(1, 0, 1);
        opacity: 1;
    }

    100% {
        transform-origin: top;
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

/*===========
line06
===========*/

.animation04 .rotate-135 {
    display: block;
    position: absolute;
    top: -19.5%;
    left: -48%;
    width: 100%;
    height: 100%;
    transform: rotate(-135deg);
}

.animation04 .line_wrapper06 {
    width: 2.5%;
    height: 30%;
    animation: animation04_line_wrapper06 0.45s ease-in 0.8s forwards;
}

.animation04 .line06 {
    animation: animation04_line06 0.45s ease-in 0.5s forwards;
}

@keyframes animation04_line_wrapper06 {
    0% {
        transform-origin: top;
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }

    100% {
        transform-origin: top;
        transform: scale3d(1, 0, 1);
        opacity: 1;
    }
}

@keyframes animation04_line06 {
    0% {
        transform-origin: bottom;
        transform: scale3d(1, 0, 1);
        opacity: 1;
    }

    100% {
        transform-origin: bottom;
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

/*===========
line07
===========*/

.animation04 .line_wrapper07 {
    top: 50%;
    left: -20%;
    width: 30%;
    height: 2.5%;
    animation: animation04_line_wrapper07 0.45s ease-in 0.8s forwards;
}

.animation04 .line07 {
    animation: animation04_line07 0.45s ease-in 0.5s forwards;
}

@keyframes animation04_line_wrapper07 {
    0% {
        transform-origin: left;
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }

    100% {
        transform-origin: left;
        transform: scale3d(0, 1, 1);
        opacity: 1;
    }
}

@keyframes animation04_line07 {
    0% {
        transform-origin: right;
        transform: scale3d(0, 1, 1);
        opacity: 1;
    }

    100% {
        transform-origin: right;
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

/*===========
line08
===========*/

.animation04 .rotate-45 {
    display: block;
    position: absolute;
    top: -49.0%;
    left: 20%;
    width: 100%;
    height: 100%;
    transform: rotate(-45deg);
}

.animation04 .line_wrapper08 {
    width: 2.5%;
    height: 30%;
    animation: animation04_line_wrapper08 0.45s ease-in 0.8s forwards;
}

.animation04 .line08 {
    animation: animation04_line08 0.45s ease-in 0.5s forwards;
}

@keyframes animation04_line_wrapper08 {
    0% {
        transform-origin: top;
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }

    100% {
        transform-origin: top;
        transform: scale3d(1, 0, 1);
        opacity: 1;
    }
}

@keyframes animation04_line08 {
    0% {
        transform-origin: bottom;
        transform: scale3d(1, 0, 1);
        opacity: 1;
    }

    100% {
        transform-origin: bottom;
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

/*===================
animation05
====================*/

.animation05 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.double_wrapper02 {
    position: relative;
    width: 100%;
    height: 100%;
    animation: animation05_double forwards;
    opacity: 0;
}

.double_wrapper01 {
    display: block;
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
}

.double_wrapper01::before {
    content: "";
    display: block;
    position: absolute;
    background: #f2f3df;
    z-index: 2;
}

.double_wrapper01::after {
    content: "";
    display: block;
    position: absolute;
    background: #f2f3df;
    z-index: 3;
}

.double_block {
    position: absolute;
    background: #f2f3df;
    border-radius: 50%;
}

/*==============
green circle
==============*/

.green02 {
    top: 0;
    animation-delay: 1.3s;
}

.green01 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 34vw;
    height: 34vw;
    background: #75cfb9;
    z-index: 1;
}

.green01::before {
    top: 0;
    left: 17vw;
    width: 34vw;
    height: 34vw;
    transform-origin: left 17vw;
    animation: rotate-circle-right 0.5s linear 1.55s forwards;
}

.green01::after {
    top: 0;
    left: -17vw;
    width: 34vw;
    height: 34vw;
    transform-origin: right 17vw;
    animation: rotate-circle-left 0.5s linear 1.3s forwards;
}

.green00 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9vw;
    height: 9vw;
    z-index: 4;
}

/*==============
navy circle
==============*/

.navy02 {
    top: -100%;
    animation-delay: 1.4s;
}

.navy01 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
    width: 25vw;
    height: 25vw;
    background: #485973;
    z-index: 1;
}

.navy01::before {
    top: 0;
    left: 12.5vw;
    width: 25vw;
    height: 25vw;
    transform-origin: left 12.5vw;
    animation: rotate-circle-right 0.5s linear 1.65s forwards;
}

.navy01::after {
    top: 0;
    left: -12.5vw;
    width: 25vw;
    height: 25vw;
    transform-origin: right 12.5vw;
    animation: rotate-circle-left 0.5s linear 1.4s forwards;
}

.navy00 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9vw;
    height: 9vw;
    z-index: 4;
}

/*==============
yellow circle
==============*/

.yellow02 {
    top: -200%;
    animation-delay: 1.45s;
}

.yellow01 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(20deg);
    width: 23vw;
    height: 23vw;
    background: #ffe08b;
    z-index: 1;
}

.yellow01::before {
    top: 0;
    left: 11.5vw;
    width: 23vw;
    height: 23vw;
    transform-origin: left 11.5vw;
    animation: rotate-circle-right 0.5s linear 1.7s forwards;
}

.yellow01::after {
    top: 0;
    left: -11.5vw;
    width: 23vw;
    height: 23vw;
    transform-origin: right 11.5vw;
    animation: rotate-circle-left 0.5s linear 1.45s forwards;
}

.yellow00 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9vw;
    height: 9vw;
    z-index: 4;
}

/*==============
blue circle
==============*/

.blue02 {
    top: -300%;
    animation-delay: 1.2s;
}

.blue01 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(20deg);
    width: 16vw;
    height: 16vw;
    background: #457ed4;
    z-index: 1;
}

.blue01::before {
    top: 0;
    left: 8vw;
    width: 16vw;
    height: 16vw;
    transform-origin: left 8vw;
    animation: rotate-circle-right 0.5s linear 1.45s forwards;
}

.blue01::after {
    top: 0;
    left: -8vw;
    width: 16vw;
    height: 16vw;
    transform-origin: right 8vw;
    animation: rotate-circle-left 0.5s linear 1.2s forwards;
}

.blue00 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 7vw;
    height: 7vw;
    z-index: 4;
}

/*==============
red circle
==============*/

.red02 {
    top: -400%;
    animation-delay: 1.3s;
}

.red01 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 12vw;
    height: 12vw;
    background: #e8595f;
    z-index: 1;
}

.red01::before {
    top: 0;
    left: 6vw;
    width: 12vw;
    height: 12vw;
    transform-origin: left 6vw;
    animation: rotate-circle-right 0.5s linear 1.55s forwards;
}

.red01::after {
    top: 0;
    left: -6vw;
    width: 12vw;
    height: 12vw;
    transform-origin: right 6vw;
    animation: rotate-circle-left 0.5s linear 1.3s forwards;
}

.red00 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9vw;
    height: 9vw;
    z-index: 4;
}

@keyframes animation05_double {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes rotate-circle-left {
    0% {
        background: #f2f3df;
        transform: rotate(0deg);
    }

    50% {
        background: #f2f3df;
        transform: rotate(-180deg);
    }

    50.01% {
        background: #f2f3df;
        transform: rotate(-180deg);
    }

    100% {
        background: #f2f3df;
        transform: rotate(-360deg);
    }
}

@keyframes rotate-circle-right {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-180deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

/*===================
animation06
====================*/

.animation06 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.rhombus05 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rhombus 0.7s ease-in 2.0s forwards;
    opacity: 0;
}

.rhombus04 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 50vw;
    height: 50vw;
    background-color: #ef5958;
}

.rhombus03 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 37.5vw;
    height: 37.5vw;
    background-color: #77ceb9;
}

.rhombus02 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25vw;
    height: 25vw;
    background-color: #ffe08b;
}

.rhombus01 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12.25vw;
    height: 12.25vw;
    background-color: #f2f3df;
}

@keyframes rhombus {
    0% {
        transform: scale3d(0, 0, 1);
        opacity: 1;
    }

    100% {
        transform: scale3d(10, 10, 1);
        opacity: 1;
    }
}

/*===================
animation07
====================*/

.animation07 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.5vw;
    height: 2.5vw;
}

.animation07 .circle {
    position: absolute;
    top: -.2vw;
    left: -.2vw;
    transform-origin: center;
    width: 2.5vw;
    height: 2.5vw;
    animation: animation07_circle 0.2s ease-in 2.19s forwards;
}

.animation07 .circle_element01 {
    position: absolute;
    top: 0;
    left: 0;
    width: 2.5vw;
    height: 2.5vw;
    border: 0.2vw solid #a18a66;
    background-color: #fff;
    border-radius: 50%;
    animation: animation07_circle_element01 0.2s ease-in 2.0s forwards;
    transform-origin: center;
    opacity: 0;
}

@keyframes animation07_circle {
    0% {
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }

    100% {
        transform: scale3d(1.4, 1.4, 1);
        opacity: 0;
    }
}

@keyframes animation07_circle_element01 {
    0% {
        transform: scale3d(0, 0, 1);
        opacity: 1;
    }

    100% {
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

.animation07 .line_wrapper {
    position: absolute;
    opacity: 0;
}

.animation07 .line {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #a18a66;
}

/*===========
line01
===========*/

.animation07 .line_wrapper01 {
    top: -95%;
    left: 45%;
    width: 10%;
    height: 60%;
    animation: animation07_line_wrapper01 0.5s ease-in 2.0s forwards;
}

.animation07 .line01 {
    animation: animation07_line01 0.5s ease-in 1.6s forwards;
}

/*===========
line02
===========*/

.animation07 .rotate60 {
    display: block;
    position: absolute;
    top: 22.5%;
    left: 33%;
    width: 100%;
    height: 100%;
    transform: rotate(60deg);
}

.animation07 .line_wrapper02 {
    top: -78%;
    left: 10%;
    width: 10%;
    height: 60%;
    animation: animation07_line_wrapper01 0.5s ease-in 2.0s forwards;
}

.animation07 .line02 {
    animation: animation07_line01 0.5s ease-in 1.6s forwards;
}

/*===========
line03
===========*/

.animation07 .rotate120 {
    display: block;
    position: absolute;
    top: 36.5%;
    left: 0%;
    width: 100%;
    height: 100%;
    transform: rotate(120deg);
}

.animation07 .line_wrapper03 {
    top: -78%;
    left: 10%;
    width: 10%;
    height: 60%;
    animation: animation07_line_wrapper01 0.5s ease-in 2.0s forwards;
}

.animation07 .line03 {
    animation: animation07_line01 0.5s ease-in 1.6s forwards;
}

/*===========
line04
===========*/

.animation07 .line_wrapper04 {
    top: 140%;
    left: 45%;
    width: 10%;
    height: 60%;
    animation: animation07_line_wrapper02 0.5s ease-in 2.0s forwards;
}

.animation07 .line04 {
    animation: animation07_line02 0.5s ease-in 1.6s forwards;
}

/*===========
line05
===========*/

.animation07 .rotate-120 {
    display: block;
    position: absolute;
    top: -15.5%;
    left: -34%;
    width: 100%;
    height: 100%;
    transform: rotate(-120deg);
}

.animation07 .line_wrapper05 {
    top: -78%;
    left: 10%;
    width: 10%;
    height: 60%;
    animation: animation07_line_wrapper01 0.5s ease-in 2.0s forwards;
}

.animation07 .line05 {
    animation: animation07_line01 0.5s ease-in 1.6s forwards;
}

/*===========
line06
===========*/

.animation07 .rotate-60 {
    display: block;
    position: absolute;
    top: -34.5%;
    left: -3%;
    width: 100%;
    height: 100%;
    transform: rotate(-60deg);
}

.animation07 .line_wrapper06 {
    top: -78%;
    left: 10%;
    width: 10%;
    height: 60%;
    animation: animation07_line_wrapper01 0.5s ease-in 2.0s forwards;
}

.animation07 .line06 {
    animation: animation07_line01 0.5s ease-in 1.6s forwards;
}

@keyframes animation07_line_wrapper01 {
    0% {
        transform-origin: top;
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }

    100% {
        transform-origin: top;
        transform: scale3d(1, 0, 1);
        opacity: 1;
    }
}

@keyframes animation07_line01 {
    0% {
        transform-origin: bottom;
        transform: scale3d(1, 0, 1);
        opacity: 1;
    }

    100% {
        transform-origin: bottom;
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

@keyframes animation07_line_wrapper02 {
    0% {
        transform-origin: bottom;
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }

    100% {
        transform-origin: bottom;
        transform: scale3d(1, 0, 1);
        opacity: 1;
    }
}

@keyframes animation07_line02 {
    0% {
        transform-origin: top;
        transform: scale3d(1, 0, 1);
        opacity: 1;
    }

    100% {
        transform-origin: top;
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

/*===================
animation08
====================*/

.animation08 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: animation08 1.5s ease-out 2.8s forwards;
    opacity: 0;
}

.animation08 div:nth-of-type(1) {
    width: 100%;
    height: 100%;
    background: #242324;
}

.animation08 div:nth-of-type(2) {
    width: 100%;
    height: 25%;
    background: #75cfb9;
}

.animation08 div:nth-of-type(3) {
    width: 100%;
    height: 25%;
    background: #457ed4;
}

.animation08 div:nth-of-type(4) {
    width: 100%;
    height: 25%;
    background: #e8595f;
}

.animation08 div:nth-of-type(5) {
    width: 100%;
    height: 25%;
    background: #ffe08b;
}

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

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

@media screen and (max-width: 750px) {

    /*===================
animation02
====================*/
    @keyframes animation02 {
        0% {
            transform: scale3d(0, 0, 1);
            opacity: 1;
        }

        100% {
            transform: scale3d(1.2, 1.2, 1);
            opacity: 1;
        }
    }

    /*==============
green circle
==============*/
    .green01 {
        width: 70vw;
        height: 70vw;
    }

    .green01::before {
        left: 35vw;
        width: 70vw;
        height: 70vw;
        transform-origin: left 35vw;
    }

    .green01::after {
        left: -35vw;
        width: 70vw;
        height: 70vw;
        transform-origin: right 35vw;
    }

    /*==============
navy circle
==============*/
    .navy01 {
        width: 50vw;
        height: 50vw;
    }

    .navy01::before {
        left: 25vw;
        width: 50vw;
        height: 50vw;
        transform-origin: left 25vw;
    }

    .navy01::after {
        left: -25vw;
        width: 50vw;
        height: 50vw;
        transform-origin: right 25vw;
    }

    /*==============
yellow circle
==============*/
    .yellow01 {
        width: 35vw;
        height: 35vw;
    }

    .yellow01::before {
        left: 17.5vw;
        width: 35vw;
        height: 35vw;
        transform-origin: left 17.5vw;
    }

    .yellow01::after {
        left: -17.5vw;
        width: 35vw;
        height: 35vw;
        transform-origin: right 17.5vw;
    }

    /*==============
blue circle
==============*/
    .blue01 {
        width: 20vw;
        height: 20vw;
    }

    .blue01::before {
        left: 10vw;
        width: 20vw;
        height: 20vw;
        transform-origin: left 10vw;
    }

    .blue01::after {
        left: -10vw;
        width: 20vw;
        height: 20vw;
        transform-origin: right 10vw;
    }

    .blue00 {
        width: 7vw;
        height: 7vw;
    }

    /*==============
red circle
==============*/
    .red00 {
        width: 6vw;
        height: 6vw;
    }

    /*===================
animation06
====================*/
    @keyframes rhombus {
        0% {
            transform: scale3d(0, 0, 1);
            opacity: 1;
        }

        100% {
            transform: scale3d(20, 20, 1);
            opacity: 1;
        }
    }
}


/* ==================================
   INTRO SCREEN
================================== */

/* Intro Screen */
.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #f2f3df;
    z-index: 99999;

    animation: hideIntro 1s ease 4s forwards;
}

@keyframes hideIntro {
    0% {
        opacity: 1;
        visibility: visible;
    }

    99% {
        opacity: 0;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.intro-title {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10000;
}

.intro-title h1 {
    font-size: 3rem;
    color: #242324;
}

.intro-title p {
    color: #666;
    margin-top: 10px;
}

/* ==================================
   GALLERY
================================== */

.gallery {
    min-height: 100vh;
    padding: 40px;
    background-color: #f8fafc;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h1 {
    font-size: 3rem;
    color: #222;
}

.gallery-header p {
    color: #666;
    margin-top: 10px;
}

/* ==================================
   GRID
================================== */

.animation-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* ==================================
   CARDS
================================== */

.animation-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);

    transition: .3s ease;
}

.animation-card:hover {
    transform: translateY(-10px);
}

.animation-card h3 {
    text-align: center;
    margin: 20px 0;
}

/* ==================================
   CODE BUTTON
================================== */

.code-btn {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 40px;
    height: 40px;

    border: none;
    border-radius: 50%;

    background: #457ed4;
    color: #fff;
    cursor: pointer;

    font-size: 16px;

    transition: .3s;
}

.code-btn:hover {
    transform: scale(1.1);
}

/* ==================================
   PREVIEW AREA
================================== */

.card-preview {
    height: 180px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #f7f7f7;
    border-radius: 15px;
}

/* ==================================
   PREVIEW BUTTON
================================== */

.preview-btn {
    width: 100%;
    padding: 12px;

    border: none;
    border-radius: 10px;

    background: #75cfb9;
    color: white;

    cursor: pointer;
    transition: .3s;
}

.preview-btn:hover {
    background: #57b39b;
}

/* ==================================
   FLOATING TEXT
================================== */

.floating-preview {
    font-size: 24px;
    font-weight: bold;

    animation: floatingText 2s ease infinite;
}

@keyframes floatingText {

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

    50% {
        transform: translateY(-12px);
    }
}

/* ==================================
   LOADER
================================== */

.loader-preview {
    width: 50px;
    height: 50px;

    border: 5px solid #ddd;
    border-top-color: #457ed4;

    border-radius: 50%;

    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==================================
   TYPEWRITER
================================== */

.typewriter-preview {
    overflow: hidden;
    white-space: nowrap;

    width: 0;

    animation:
        typing 3s steps(12, end) infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* ==================================
   DOLL
================================== */

.doll-preview {
    font-size: 60px;

    animation: dollRotate 3s linear infinite;
}

@keyframes dollRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ==================================
   GLITCH
================================== */

.glitch-preview {
    font-size: 26px;
    font-weight: bold;

    animation: glitch .5s infinite;
}

@keyframes glitch {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-2px);
    }

    40% {
        transform: translateX(2px);
    }

    60% {
        transform: translateX(-2px);
    }

    80% {
        transform: translateX(2px);
    }

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

/* ==================================
   NEON BUTTON
================================== */

.neon-preview {
    padding: 12px 24px;

    border: none;

    background: #111;
    color: #fff;

    border-radius: 8px;

    box-shadow:
        0 0 10px #75cfb9,
        0 0 20px #75cfb9;

    animation: neonPulse 2s infinite;
}

@keyframes neonPulse {
    50% {
        box-shadow:
            0 0 20px #75cfb9,
            0 0 40px #75cfb9;
    }
}

/* ==================================
   MODALS
================================== */

.preview-modal,
.code-modal {
    position: fixed;
    inset: 0;

    display: none;

    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, .7);

    z-index: 10000;
}

.modal-content {
    position: relative;

    width: min(90%, 700px);

    background: #fff;

    border-radius: 20px;

    padding: 30px;
}

/* ==================================
   CLOSE BUTTON
================================== */

.close-btn {
    position: absolute;
    right: 15px;
    top: 15px;

    border: none;
    background: none;

    font-size: 24px;
    cursor: pointer;
}

/* ==================================
   CODE AREA
================================== */

pre {
    background: #111;
    color: #fff;

    padding: 20px;

    border-radius: 10px;

    overflow: auto;
}

/* ==================================
   COPY BUTTON
================================== */

.copy-btn {
    margin-top: 20px;

    padding: 10px 20px;

    border: none;
    border-radius: 8px;

    background: #457ed4;
    color: #fff;

    cursor: pointer;
}

/* ==================================
   RESPONSIVE
================================== */

@media(max-width:768px) {

    .gallery {
        padding: 20px;
    }

    .gallery-header h1 {
        font-size: 2rem;
    }

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

    .card-preview {
        height: 150px;
    }
}
.hide-intro{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:all 1s ease;
}

/* ==========================
   DANCING ROBOT
========================== */

.robot{
    font-size:70px;
    animation:danceRobot 1s ease-in-out infinite alternate;
}

@keyframes danceRobot{
    from{
        transform:rotate(-15deg);
    }
    to{
        transform:rotate(15deg);
    }
}

/* ==========================
   JUMPING EMOJI
========================== */

.emoji{
    font-size:70px;
    animation:jumpEmoji 1s infinite;
}

@keyframes jumpEmoji{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-30px);
    }
}

/* ==========================
   FLOATING BALLOON
========================== */

.balloon{
    font-size:70px;
    animation:floatBalloon 3s ease-in-out infinite;
}

@keyframes floatBalloon{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-25px);
    }
}

/* ==========================
   WALKING CHARACTER
========================== */

.walker{
    font-size:70px;
    position:relative;
    animation:walkCharacter 4s linear infinite;
}

@keyframes walkCharacter{
    0%{
        transform:translateX(-60px);
    }
    100%{
        transform:translateX(60px);
    }
}

/* ==========================
   ROCKET LAUNCH
========================== */

.rocket{
    font-size:70px;
    animation:rocketLaunch 2s ease-in-out infinite;
}

@keyframes rocketLaunch{
    0%{
        transform:
        translateY(60px)
        scale(.7);
        opacity:.4;
    }

    100%{
        transform:
        translateY(-60px)
        scale(1.2);
        opacity:1;
    }
}

/* ==========================
   SPINNING PLANET
========================== */

.planet{
    font-size:70px;
    animation:planetSpin 5s linear infinite;
}

@keyframes planetSpin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* ==========================
   BOUNCING BALL
========================== */

.ball{
    width:60px;
    height:60px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #ff5722,
        #ff9800
    );

    animation:bounceBall 1s ease-in-out infinite;
}

@keyframes bounceBall{
    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-50px);
    }
}

/* ==========================
   SKELETON LOADING
========================== */

.skeleton{
    width:220px;
    height:18px;

    border-radius:12px;

    background:
    linear-gradient(
        90deg,
        #e0e0e0,
        #f5f5f5,
        #e0e0e0
    );

    background-size:300% 100%;

    animation:skeletonLoading 1.5s linear infinite;
}

@keyframes skeletonLoading{
    from{
        background-position:300% 0;
    }

    to{
        background-position:-300% 0;
    }
}

/* ==========================
   TOAST NOTIFICATION
========================== */

.toast{
    padding:12px 24px;
    border-radius:10px;
    background:linear-gradient(
        135deg,
        #22c55e,
        #16a34a
    );
    color:white;
    font-weight:600;

    animation:toastSlide 3s infinite;
}

@keyframes toastSlide{

    0%{
        transform:translateX(-150px);
        opacity:0;
    }

    20%{
        transform:translateX(0);
        opacity:1;
    }

    80%{
        transform:translateX(0);
        opacity:1;
    }

    100%{
        transform:translateX(150px);
        opacity:0;
    }
}

/* ==========================
   PROGRESS BAR
========================== */

.progress{
    width:220px;
    height:20px;

    background:#e5e7eb;

    border-radius:20px;

    overflow:hidden;
}

.fill{
    height:100%;

    border-radius:20px;

    background:linear-gradient(
        90deg,
        #06b6d4,
        #3b82f6,
        #8b5cf6
    );

    animation:progressFill 3s infinite;
}

@keyframes progressFill{

    0%{
        width:0;
    }

    100%{
        width:100%;
    }
}

/* ==========================
   ANIMATED TABS
========================== */

.tabs{
    position:relative;
}

.tabs span{
    font-size:20px;
    font-weight:600;
    position:relative;
}

.tabs span::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;
    height:4px;

    border-radius:20px;

    background:#3b82f6;

    animation:tabUnderline 2s infinite;
}

@keyframes tabUnderline{

    0%{
        width:0;
    }

    50%{
        width:100%;
    }

    100%{
        width:0;
    }
}

/* ==========================
   ACCORDION
========================== */

.accordion{

    width:220px;

    background:
    linear-gradient(
        135deg,
        #75cfb9,
        #4fbba3
    );

    border-radius:12px;

    animation:accordionOpen 2s ease-in-out infinite alternate;
}

@keyframes accordionOpen{

    from{
        height:30px;
    }

    to{
        height:120px;
    }
}

/* ==========================
   SEARCH BAR EXPAND
========================== */

.search-expand{

    width:90px;

    padding:12px 15px;

    border:none;

    border-radius:30px;

    outline:none;

    background:white;

    box-shadow:
    0 5px 15px rgba(0,0,0,.1);

    animation:searchExpand 3s infinite;
}

@keyframes searchExpand{

    0%{
        width:90px;
    }

    50%{
        width:220px;
    }

    100%{
        width:90px;
    }
}

/* ==========================
   HAMBURGER MENU
========================== */

.hamburger{
    width:60px;
}

.hamburger span{

    display:block;

    height:6px;

    margin:8px 0;

    border-radius:20px;

    background:linear-gradient(
        90deg,
        #3b82f6,
        #8b5cf6
    );

    animation:hamburgerMove 2s infinite;
}

.hamburger span:nth-child(2){
    animation-delay:.2s;
}

.hamburger span:nth-child(3){
    animation-delay:.4s;
}

@keyframes hamburgerMove{

    0%{
        transform:translateX(0);
    }

    50%{
        transform:translateX(12px);
    }

    100%{
        transform:translateX(0);
    }
}
.controls {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  margin-left: 100px;
  flex-wrap: wrap;
}

.search-box {
  position: relative;
  width: 300px;
  margin-right: 50px;
}

.search-box i {
  position: absolute;
  cursor: pointer;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

#clearSearch {
    margin-right: 40px;  
    align-self: right;
}

.search-box input {
  width: 100%;
  padding: 10px 10px 10px 40px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}

.search-box input:focus {
  border-color: #007bff;
}

#filterSelect {
  padding: 10px;
  border-radius: 8px;
  font-size: 16px;
}

/* Dark theme toggle */
:root {
  --bg-color: #f4f5f7;
  --text-color: #222;
  --card-bg: #ffffff;
  --card-border: #ddd;
  --input-bg: #ffffff;
  --input-text: #222;
}

body.dark-theme {
  --bg-color: #050814;
  --text-color: #f1f5f9;
  --card-bg: rgba(15, 23, 42, 0.7);
  --card-border: rgba(255, 255, 255, 0.08);
  --input-bg: rgba(15, 23, 42, 0.8);
  --input-text: #f1f5f9;
}

body.dark-theme {
  background:
    radial-gradient(circle at top, #0f172a 0%, #050814 55%);
  min-height: 100vh;
}

body.dark-theme h1 {
  color: #f8fafc;
}

body.dark-theme .subtitle {
  color: #94a3b8;
}

body.dark-theme .search-box input,
body.dark-theme #filterSelect {
  background: var(--input-bg);
  color: var(--input-text);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}

body.dark-theme .search-box i,
body.dark-theme #clearSearch {
  color: #f8fafc;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  transition: background 0.3s ease, color 0.3s ease;
}

body.dark-theme .animation-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);

  backdrop-filter: blur(18px);

  box-shadow:
    0 8px 30px rgba(0,0,0,0.5),
    0 0 30px rgba(37, 99, 235, 0.08);

  transition: all 0.3s ease;
}

body.dark-theme .animation-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 12px 40px rgba(0,0,0,0.6),
    0 0 35px rgba(59,130,246,0.25);
}

body.dark-theme .card-preview {
  background: rgba(15, 23, 42, 0.65);

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(10px);
}
body.dark-theme .animation-card h3 {
  color: #f8fafc;
}
body.dark-theme .preview-btn {
  background: linear-gradient(
    135deg,
    #34d399,
    #059669
  );

  color: white;
  border: none;
}

body.dark-theme .preview-btn:hover {
  transform: translateY(-2px);
}
.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;

  width: 50px;
  height: 50px;

  border-radius: 50%;
  border: none;

  cursor: pointer;
  font-size: 1.3rem;
  z-index: 1000;
}

body.dark-theme .theme-toggle {
  background: #1e293b;
  color: #f8fafc;

  box-shadow:
    0 0 20px rgba(59,130,246,0.35);
}
body.dark-theme {
  background: #050814 !important;
  color: #ffffff;
}
body.dark-theme .container,
body.dark-theme main {
  background: #050814 !important;
}
body.dark-theme .animation-grid {
  background: transparent !important;
}
/* ==========================
   NAVBAR
========================== */

.gallery-header {
  width: 100%;
  height: 80px; /* reserve space for fixed navbar */
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 50px;
  box-sizing: border-box;

  z-index: 1000;

  background: rgba(6, 12, 35, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color:  #fff;
}

.nav-links {
 margin-left: 100px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color:  #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #14c9c9;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.subscribe-btn {
  margin-right: 100px; 
  padding: 10px 20px;
  border: none;
  border-radius: 8px;

  background: linear-gradient(
    135deg,
    #14c9c9,
    #0ea5a5
  );

  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(20, 201, 201, 0.3);
}
/* ==========================
   HERO SECTION
========================== */

.hero-section {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.hero-content {
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--text-color, #fff);
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--text-secondary, #bdbdbd);
}

.hero-btn {
  padding: 15px 40px;
  border: none;
  border-radius: 10px;
  background: #14c9c9;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

/* ==========================
   COLLECTION HEADER
========================== */

.collection-header {
  text-align: center;
  padding: 50px 20px 30px;
}

.collection-header h2 {
  font-size: 2.8rem;
  margin-bottom: 12px;
  color: var(--text-color, #fff);
}

.collection-header p {
  color: var(--text-secondary, #bdbdbd);
  font-size: 1.05rem;
}

/* ==========================
   FOOTER
========================== */

.footer {
  margin-top: 80px;
 background: rgba(6, 12, 35, 0.95);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}


footer.modal-content{
    background: rgba(6, 12, 35, 0.95);
    border-top: 1px solid rgba(255,255,255,0.08);
    color:white;
}
.footer-container {
  max-width: 1200px;
  margin: auto;
   padding: 60px 30px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-section h3,
.footer-section h4 {
  color: var(--text-color, #fff);
  margin-bottom: 18px;
}

.footer-section p {
  color: var(--text-secondary, #bdbdbd);
  line-height: 1.7;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  text-decoration: none;
  color: var(--text-secondary, #bdbdbd);
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #14c9c9;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255,255,255,0.08);

  color: white;
  text-decoration: none;

  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #14c9c9;
  transform: translateY(-4px);
}

.footer-bottom {
  text-align: center;

  padding: 20px;

  border-top: 1px solid rgba(255,255,255,0.08);

  color: var(--text-secondary, #bdbdbd);
}