/* RESET */

html {
    scroll-behavior: smooth;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	  line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

div, section, main, h1, h2, h3, h4, h5 {
    box-sizing: border-box;
}

/* BREAKS */

:root {
    --container-width: 1600px;
    --container-pads: 2rem;
}

@media (min-width: 768px) {
    .\:md-hidden {
        display: none !important;
    }
}

/* PALETTE */

/*

#5dcaed
#399ee4
#3165c7
#841854
#ca6391
#e0c1cc
#7377c8
#4b237f
#623e8a
#a2569a

*/

:root {
    --brand-color: #F24AE1;
    --brand-gradient: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
    --brand-gradient-transparent: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,0.8) 17.8%, rgba(2,245,255,0.8) 100.2% );
    --lite-gradient: radial-gradient(circle at 40%, #ff003355, #ffffff55 25%), radial-gradient(circle at 60%, #3300ff55, #ffffff55 25%);
    --accent: #C4FD9C;
    --text-color: #303030ee;
}

/* TYPOGRAPHY */

body {
    font-family: Roboto, sans-serif;
    color: var(--text-color);
    font-size: 16px;
}

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

p {
    line-height: 1.4em;
    margin: 1em 0;
}

.--justify-end {
    justify-self: end;
}

.action-button {
    width: fit-content;
    padding: 1em 2em;
    border-radius: 2em;
    color: var(--text-color);
    font-weight: 400;
    border: solid 2px var(--text-color);
}

.tag {
    position: absolute;
    top: 0.6rem;
    right: 0.7rem;
    background: #fffb;
    color: #300e;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.5em 1em;
    border-radius: 2em;
}

.icon {
    display: inline-block;
    vertical-align: middle;
    height: 1.5em;
    width: 1.5em;
    line-height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: -0.5em;
}

.section-title {
    font-size: 2.2rem;
    line-height: 1.4em;
    margin: .5em 0;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "El Messiri", sans-serif;
}

.section-subtitle {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    font-size: 1.2rem;
    font-weight: 600;
    background: white;
    padding: 0 1em 0.5em 1em;
    text-transform: uppercase;
    width: fit-content;
    border-radius: 0 0 4px 4px;
}

.section-message {
    width: 100%;
    max-width: 45em;
    margin: 2em 0;
}

/* UTILS */

@media (min-width: 992px) {
    .\:lg-two-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.--bg-right {
    background-position-x: right !important;
}

.--bg-half {
    background-position-x: 35% !important;
}

.--bg-top {
    background-position-y: top !important;
}

.--col-2 {
    grid-column: 2 span;
}

.--bg-top {
    background-position-y: 0%;
}

/* HEADER SECTION */

.HeaderSection {
    display: flex;
    gap: 2rem;
    justify-content: space-between;

    max-width: var(--container-width);
    margin: 0 auto;
    height: 4rem;
    padding: 0 2rem;
    box-sizing: border-box;
}

.HeaderLogo {
    text-align: center;
    height: 5.3rem;
    background: #fff;
    padding: 0.3rem;
    border-radius: 4px;

    .image {
        font-size: 4rem;
        font-weight: 600;
        background-image: url(header-logo.webp);
        background-size: contain;
        background-repeat: no-repeat;
        background-position-x: center;
        height: 3rem;
    }
    .name {
        position: relative;
        font-family: "El Messiri", sans-serif;
        font-size: 1.218rem;
        font-weight: 700;
        color: #433e;
        padding: 0.4em;
        text-transform: uppercase;
        z-index: 2;
    }
}

.HeaderContacts {
    display: flex;
    gap: 2rem;
    line-height: 4rem;
    justify-content: flex-end;
    flex-grow: 1;
    .item {
        color: #300e;
    }

    @media (max-width: 867px) {
        display: none;
    }
}

/* HERO SECTION */

.HeroSection {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 1rem;

    padding: 2rem 1rem 5rem;

    max-width: var(--container-width);
    margin: 0 auto;
    height: calc(100vh - 5rem);
    min-height: 768px;

    background:
        linear-gradient(#baa5, #aab6),
        url("../assets/sbg.webp");
    background-blend-mode: normal;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    @media (max-width: 512px) {
        min-height: unset;
        height: calc(100vh - 6rem);
    }

    @media (min-width: 892px) {
        padding: 4rem 2rem;

        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 1fr auto;
    }

    @media (min-width: 1000px) {
        grid-template-columns: 2fr 3fr;
    }

    @media (min-width: 1600px) {
        border-radius: 4px;
    }

    .HeroMessage {
        grid-row: 2/3;

        container-type: inline-size;
        color: #fefe;

        .title {
            margin: 0 auto;
            font-size: 2.6rem;
            font-weight: 600;
            line-height: 1.1em;
            max-width: 320px;
            color: #fff0f;
            text-shadow: 0 0 3rem #0006;
            text-align: center;
            font-family: "El Messiri", sans-serif;
            font-weight: 900;
            padding: min(1em, 3vh) 0 min(1em, 1vh);
        }

        .subtitle {
            display: none;
            font-size: 13cqw;
            font-weight: 600;
            line-height: 1.1em;

            color: #300e;
        }

        @media (min-width: 512px) {
            .title {
                font-size: 4rem;
                max-width: 510px;
            }
        }

        @media (min-width: 892px) {
            grid-column: 1/2;
            grid-row: 1/2;

            .title {
                font-size: 18cqw;
                max-width: unset;
                margin: 0;
                text-align: left;
            }

            .subtitle {
                display: block;
            }
        }
    }

    .HeroOptions {
        align-self: center;
        display: none;
        gap: 1rem;
        justify-content: space-evenly;
        max-width: 600px;

        color: #300e;

        .item {
            padding: 0.5rem 1.5rem;
            max-width: 8rem;
            border-radius: 4px;
            box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
            background: #fbe80111;

            &.--urgent {
                background-image: url(hero-clock.svg);
                background-size: 70%;
                background-repeat: no-repeat;
                background-position: center center;
            }

            &.--clients {
                background-image: url(hero-clients.svg);
                background-size: 80%;
                background-repeat: no-repeat;
                background-position: center center;
            }

            &.--stars {
                background-image: url(hero-stars.svg);
                background-size: 80%;
                background-repeat: no-repeat;
                background-position: center center;
            }
        }

        .title {
            font-size: 2.8rem;
            font-weight: 600;
            text-align: center;
            margin: 0.3rem 0;
        }

        .text {
            margin: 0;
            text-align: center;
            margin: 0.3rem 0;
        }

        @media (min-width: 892px) {
            display: flex;
            grid-column: 1/2;
            grid-row: 2/3;
        }
    }

    .HeroSocials {
        filter: grayscale(30%);
        display: flex;
        gap: 1rem;
        justify-content: center;
        opacity: 0.9;

        .item.--phone {
            background: #11da79bb;
            padding: 0.2em 0.2em 0;
            border-radius: 9px;

            img {
                height: 2.8rem;
                display: inline-block;
            }
        }

        img {
            height: 3em;
        }

        @media (min-width: 892px) {
            grid-column: 1/2;
            grid-row: 3/4;
        }
    }

    .HeroAlbum {
        position: relative;
        container-type: size;

        .photo {
            border-radius: 4px;
            background-size: cover;
            background-position: center center;
            box-shadow: 0 1rem 1rem #0004;

            backdrop-filter: grayscale(30%);
            overflow: hidden;
        }

        .pins {
            display: none;
        }

        @media (max-width: 1099px) {
            grid-row: 1/2;

            display: flex;
            width: 100%;
            height: auto;
            position: relative;
            justify-content: center;

            .photo {
                height: 100cqh;
                max-height: 700px;
                width: 0;

                -webkit-transition: all .4s;
                transition: all .4s;

                &.--active {
                    width: 100cqw;
                    max-width: 500px;
                    opacity: 1;
                }
            }

            .pins {
                display: flex;
                position: absolute;
                gap: .9rem;
                bottom: 10%;

                .pin {
                    width: 0.8rem;
                    aspect-ratio: 1/1;
                    border-radius: 1rem;
                    background: #f0f0f0ee;
                    box-shadow: 0 0 1rem #0003;
                    cursor: pointer;
                    &.--active {
                        background: #66fe;
                    }
                }
            }
        }

        @media (min-width: 892px) {
            grid-column: 2/3;
            grid-row: 1/4;
        }

        @media (min-width: 1100px) {
            grid-template-columns: repeat(10, 1fr);
            grid-template-rows: repeat(10, 1fr);
            width: 100%;
            display: grid;

            & .photo {
                position: relative;
                &.--default,
                &:hover {
                    z-index: 20;
                }
            }
        }
    }
}

/* CLIENTS SECTION */

.ClientsSection {
    max-width: var(--container-width);
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 4px;

    background: #fafafa;

    h2 {
        font-size: 1.4rem;
        text-align: center;
        margin: 1rem 1rem 3rem;
    }

    .ClientsList {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: space-around;
        align-items: center;

        .item {
            flex-basis: calc(50% - 1rem);
            flex-shrink: 0;
            flex-grow: 0;
            text-align: center;
        }

        img {
            max-height: max(min(130px, 12vw), 80px);
            max-width: max(min(130px, 12vw), 80px);
        }

        @media (min-width: 480px) {
            .item {
                flex-basis: calc(25% - 2rem);
            }
        }
    }
}

.AboutSection {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;

    max-width: var(--container-width);
    margin: 2rem auto;

    background: radial-gradient(circle at 30%, #ff003355, #ffffff55 25%), radial-gradient(circle at 79%, #3300ff55, #ffffff55 25%);

    .AboutMessage {
        background-image:
            linear-gradient(#faf0fa88, #faf0fa88);

        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);

        padding: 2rem;

        .selected {
            font-size: 1.4rem;
        }
    }

    .AboutAlbum {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
        padding: 0 1rem;

        gap: 1rem;

        .photo {
            position: relative;
            background-size: cover;
            background-position: center center;
            filter: sepia(20%) grayscale(20%);
            border-radius: 4px;
        }

        @media (min-width: 576px) {
            & {
                grid-template-columns: 3fr 2fr;
                grid-auto-rows: 300px;
            }

            .photo:nth-child(1) {
                grid-row: 1/2;
                grid-column: 1/2;
            }
            .photo:nth-child(2) {
                grid-row: 1/3; grid-column: 2/3;
            }
            .photo:nth-child(3) {
                grid-row: 2/3; grid-column: 1/2;
            }
        }
    }



    @media (min-width: 992px) {
        & {
            grid-template-columns: 1fr 2fr;
        }
    }
}

.MediaSection {
    max-width: var(--container-width);
    margin: 0 auto;
    color: #fff;
    background: #302929;

    background: linear-gradient(#eee, #066, #184),
        url("../assets/sbg.webp") fixed;
    background-blend-mode: color-burn;
    background-repeat: no-repeat;
    background-size: cover;

    padding: 1rem;

    @media (min-width: 992px) {
        padding: 4rem;
    }

    @media (min-width: 1600px) {
        border-radius: 4px 4px 0 0;
    }

    .section-subtitle {
        background: #100c;
        padding-top: 0.5em;
        background: #222;
        background-blend-mode: color-burn;
        isolation: isolate;
    }

    .MediaAlbum {
        display: grid;
        gap: 1rem;
        grid-template-columns: repeat(1, 1fr);

        @media (min-width: 460px) {
            grid-template-columns: repeat(2, 1fr);
        }

        @media (min-width: 768px) {
            grid-template-columns: repeat(3, 1fr);
        }

        @media (min-width: 992px) {
            grid-template-columns: repeat(4, 1fr);
        }

        .item {
            background: linear-gradient(#7888, #8876),
                url("../assets/sbg.webp") fixed;
            background-size: cover;
            background-repeat: no-repeat;
            border-radius: 4px;
            overflow: hidden;
        }

        .photo {
            position: relative;
            background-size: 80%;
            background-repeat: no-repeat;
            background-position: center center;
            aspect-ratio: 1/1;
            opacity: 0.9;
        }
    }
}

.PortfolioSection {
    max-width: var(--container-width);
    margin: 0 auto;

    background: linear-gradient(#184, #222 20%, #311 30%),
        url("../assets/sbg.webp") fixed;
    background-blend-mode: color-burn;
    background-repeat: no-repeat;
    background-size: cover;

    color: #fff;
    padding: 1rem;
    overflow: hidden;

    @media (min-width: 992px) {
        padding: 4rem;
    }

    .message {
        max-width: 40rem;

        &.--featured {
            font-size: 1.4rem;
        }
    }

    .PortfolioAlbum {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;

        li {
            display: block;
            aspect-ratio: 0.35;
            padding: 0.5rem;
            box-sizing: border-box;
            &.--s2 {
                grid-column: span 2;
                aspect-ratio: 0.7;
            }
            &.--s3 {
                grid-column: span 3;
                aspect-ratio: 1.049;
            }
            &.--shalf {
                grid-column: span 2;
                aspect-ratio: unset;
            }
        }

        .photo {
            border-radius: 4px;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;

            &.--top {
                background-position-y: top;
            }
        }

        @media (min-width: 768px) {
            grid-template-columns: repeat(4, 1fr);
            li.--shalf {
                grid-column: span 4;
            }
        }

        @media (min-width: 992px) {
            grid-template-columns: repeat(6, 1fr);
            li.--shalf {
                grid-column: span 2;
            }
        }

        @media (min-width: 1400px) {
            grid-template-columns: repeat(8, 1fr);
            li.--shalf {
                grid-column: span 8;
            }
        }
    }
}

.OtherSection {
    max-width: var(--container-width);
    margin: 0 auto;
    min-height: 768px;
    padding: 1rem 1rem 2rem;
    margin-bottom: -1rem;

    color: #fff;
    background: linear-gradient(#311, #222, #589),
        url("../assets/sbg.webp") fixed;
    background-blend-mode: color-burn;
    background-repeat: no-repeat;
    background-size: cover;

    @media (min-width: 992px) {
        padding: 3rem 4rem 5rem;
    }

    @media (min-width: 1600px) {
        border-radius: 0 0 4px 4px;
    }

    .section-subtitle {
        background-color: #000;
    }

    .message {
        max-width: 45em;
    }

    .OtherList {
        display: grid;

        grid-auto-rows: 300px;
        gap: 1rem;

        .item {
            position: relative;
            border-radius: 4px;
            overflow: hidden;
        }

        .photo {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position-y: center;
        }

        @media (min-width: 800px) {
            grid-template-columns: repeat(2, 1fr);
        }
    }
}

/* PRICES SECTION */

.PricesSection {
    max-width: var(--container-width);
    margin: 0 auto;

    padding: 3rem 1rem 3rem;

    @media (min-width: 992px) {
        padding: 5rem 4rem 4rem;
    }
}

.PricesList {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: flex-start;
    width: fit-content;
    overflow: hidden;
    background-size: cover;

    .item {
        flex: 1 1 140px;
        overflow: hidden;
        font-size: 1.2rem;
        border-radius: 4px;
        background: url(sbg.webp);
    }

    .count {
        padding: 1rem;
        color: #fff;
        text-align: center;
        font-weight: 600;
        background: linear-gradient(#222a, #333a);

    }

    .price {
        padding: 1rem;
        text-align: center;
        background: #fafafacc;
    }
}

.PriceQuantities {
    width: fit-content;
    background: url(sbg.webp);

    .item {
        width: 10em;
        background: #fafafa;
        padding: .5rem 1rem;
        text-align: center;
        font-size: 1.2rem;
        background: #fafafacc;
        border: solid 2px #fafafa;
    }
    strong {
        font-weight: 600;
    }
}

/*  CALC SECTION */

.CalcSection {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0rem 1rem 1rem;

    @media (min-width: 992px) {
        padding: 2rem 4rem 1rem;
    }
}

/* STEPS SECTION */

.StepsSection {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 2rem 1rem 1rem;

    background: radial-gradient(circle at 40% 40%, #ff003355, #ffffff55 25%), radial-gradient(circle at 60% 60%, #3300ff55, #ffffff55 25%);

    @media (min-width: 992px) {
        padding: 4rem 4rem 1rem;
    }
}

.StepsList {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    margin: 5rem auto;
    padding: 0 3vw;
    box-sizing: border-box;

    .item {
        max-width: 450px;
        position: relative;

        background-image: linear-gradient(#faf9fadd, #faf0fadd);
        backdrop-filter: blur(5px);

        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

        padding: 3.5rem 1.5rem 1rem;
        border-radius: 4px;
        grid-row: span 2;

        &:nth-child(even) {
            justify-self: end;
        }
    }

    .count {
        position: absolute;
        top: 0;
        font-size: 2rem;
        font-weight: 600;
        background: #333;
        color: #fff;
        padding: 0 0.6rem 0.4rem;
        border-radius: 0 0 4px 4px;
        background-image: var(--brand-gradient);
    }

    .title {
        font-size: 1.2rem;
        text-transform: uppercase;
        font-weight: 600;
    }

    @media (min-width: 768px) {
        grid-template-columns: 1fr 1fr;
        width: 100%;
        max-width: 100%;

        .item {
            &:nth-child(1) {
                grid-row: 1/3;
            }

            &:nth-child(2) {
                grid-row: 2/4;
            }
        }
    }

    @media (min-width: 1200px) {
        width: 1100px;
    }
}

/* CONTACTS SECTION */

.ContactsSection {
    max-width: var(--container-width);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    border-radius: 4px 4px 0 0;

    padding: 1rem;
    color: #fff;

    background: linear-gradient(#222a, #333a), url("../assets/sbg.webp");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    a {
        color: #fff !important;
    }

    @media (min-width: 768px) {
        padding: 3rem 4rem;
        grid-template-columns: 2fr 3fr;
    }

    @media (min-width: 1100px) {
        grid-template-columns: 3fr 2fr;
    }
}

.ContactsMessage {
    display: flex;
    flex-direction: column;
}

.ContactsList {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    line-height: 1.2em;

    .item {
        padding: 1rem;
        border-radius: 4px;
        background: #1118;
        backdrop-filter: blur(10px);
    }

    @media (min-width: 567px) {
        flex-direction: row;
    }

    @media (min-width: 768px) {
        flex-direction: column;
    }

    @media (min-width: 1100px) {
        flex-direction: row;
    }
}

.ContactsForm {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    width: 100%;
    background: #1118;
    backdrop-filter: blur(10px);
    border-radius: 4px;

    box-sizing: border-box;

    @media (min-width: 768px) {

    }

    .title {
        font-size: 1.4rem;
        text-align: center;
        text-transform: uppercase;
        font-weight: 600;
    }

    .message {
        max-width: 350px;
        text-align: center;
        margin: 0 auto;
    }

    & > input,
    & > textarea {
        display: block;
        border: none;
        background: #1118;
        backdrop-filter: blur(10px);
        color: #fff;
        padding: 1rem;
        font-size: 1.2rem;
        border-radius: 4px;
        width: 100%;
        box-sizing: border-box;
    }

    button {
        width: fit-content;
        padding: 0.5rem 1rem;
        align-self: flex-end;
        background: #1118;
        backdrop-filter: blur(10px);
        color: #fff;
        border: none;
    }

    .overlay {
        display: none;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 100;
        left: 0;
        top: 0;
        background-color: #0007;
        background-image: url(loader.svg);
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center center;
        padding: 2rem;
        transition: all 0.5s;

        &.--message {
            background-image: none;
            background-color: #000e;
        }

        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            text-align: center;
        }

        p {
            text-align: center;
        }

        a {
            display: block;
            font-size: 1.8rem;
            text-align: center;
            color: #a0f !important;
            text-decoration: underline;
        }
    }
}

@media (min-width: 768px) {
    .ContactsSection {
        .section-title {
            grid-column: 1/3;
        }

        .ContactsMap {
            grid-column: 1/3;
        }
    }
}

@media (min-width: 1100px) {
    .ContactsSection {
        .ContactsForm {
            grid-row: 2/4;
            grid-column: 2/3;
        }

        .ContactsMap {
            grid-column: 1/2;
            grid-row: 4/3;
        }
    }
}

/* FOOTER SECTION */

.FooterSection {
    max-width: var(--container-width);
    margin: 0 auto;
}

/* FloatPanel */

.FloatPanel {
    position: fixed;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5em;
    align-items: center;
    justify-content: center;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 200;
    padding: .8em 1.2em 0.6em;
    background: #fff;

    font-size: 0.8rem;

    & > a {
        display: block;
        padding: 0 0.5em;
        color: #666;
        text-align: center;
    }

    .image {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 0.5em;
        width: fit-content;

        img {
            width: 2em;
            aspect-ratio: 1/1;
        }
    }

    @media (min-width: 512px) {
        border-radius: 4px 4px 0 0;
        width: fit-content;
        padding-left: 1.8em;
        padding-right: 1.8em;
        box-shadow: 0 0 1rem #0002;
        opacity: 0.95;
    }
}

/* ANIMATIONS */

@keyframes wave {
    0% {
        top: 28%;
    }
    5% {
        top: 40%;
    }
    10% {
        top: 18%;
    }
    15% {
        top: 40%;
    }
    20% {
        top: 28%;
    }
    100% {
        top: 28%;
    }
}
