﻿/******************** General ********************/
/* Font */
@font-face {
    font-family: 'Neucha';
    src: url(/_fonts/Neucha.ttf);
}

* {
    margin: 0px;
    padding: 0px;
    font-family: adobe-hebrew;
    line-height: 1.5;
    font-weight: normal;
}

:root {
    --slide-in-in: 100%;
    --slide-in-out: 0;
    --slide-in-half: 25%;
    --slide-out-in: 0%;
    --slide-out-half: 25%;
    --slide-out-out: 100%;
}

html, body {
    overflow-x: hidden;
}

    /* Background image */
    body:before {
        content: '';
        background-repeat: no-repeat;
        background-size: cover;
        z-index: -100;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        box-shadow: inset 0 0 0 100vw rgb(0 0 0 / 60%);
        padding: 100vw 50%;
    }

strong {
    font-weight: 600;
}

/* Favicon size */
.fa-xl {
    line-height: .75em !important;
}

p {
    margin-bottom: unset;
}


/******************** Header ********************/
header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    justify-content: flex-end;
    height: 100vh;
}

    header img {
        width: 20em;
    }

    header h1 {
        font-size: 3em;
        line-height: 1;
    }

    header h2 {
        font-size: 2em;
    }

/********** Navigation **********/
.burgerNav {
    z-index: 100;
    position: fixed;
    top: 2em;
    right: 0;
}

/* Navigation sun */
.sun-div {
    position: relative;
    display: flex;
    justify-content: flex-end;
    margin: 2% 0;
}

#sun {
    width: 6em;
    z-index: 2;
    position: relative;
    right: 1em;
    animation: resizeSunbeam 3s linear infinite;
}

/* Burger lines */
.checkLabel {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 2.8em;
    top: 2.4em;
    cursor: pointer;
    position: absolute;
    z-index: 2;
    right: 2.2em;
}

    .checkLabel input[type="checkbox"] {
        display: none;
    }

.spanWrap {
    width: 40px;
    height: 25px;
    display: inline-block;
    position: relative;
    margin-left: -11px;
}

    .spanWrap span {
        top: 0;
        border-radius: 10px;
        width: 40px;
        height: 3px;
        position: absolute;
        z-index: 2;
        left: 0;
        transition: all ease .8s;
    }

    .spanWrap .second {
        top: 10px;
    }

    .spanWrap .third {
        top: 20px;
    }

.menuOpen .spanWrap .second {
    width: 0;
    left: 20px;
    top: 8px;
}

.menuOpen .spanWrap .first {
    transform: rotate(45deg);
    top: 8px;
}

.menuOpen .spanWrap .third {
    transform: rotate(-45deg);
    top: 8px;
}

/* Navigation circle background */
.background {
    height: 3.1em;
    width: 3.1em;
    border-radius: 50%;
    position: absolute;
    top: 1.5em;
    right: 2.4em;
    z-index: 0;
    transition: transform 0.8s ease;
    box-shadow: 0 0 5px 0 #000;
}

/* Navigation content */
.navContentDiv {
    position: relative;
    display: flex;
    justify-content: center;
    right: 40vw;
}

.navContent {
    position: absolute;
    width: fit-content;
    transition: all 0.8s;
    display: none;
}

.navContentUl {
    font-size: 1.7em;
    list-style: none;
    text-align: left;
    position: relative;
    width: max-content;
}

    .navContent ul li a {
        text-decoration: none;
    }

/* Title */
.titleDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
}

/* Fullscreen down button*/
.arrowDown {
    position: absolute;
    z-index: 5;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation-name: up-and-down;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-duration: 2.5s;
    cursor: pointer;
    height: 120px;
    width: 120px;
}


/******************** Main ********************/
/********** Home **********/
/* _brandContainer */
.contentSlider {
    height: 100%;
    display: flex;
    flex-direction: column-reverse;
}

/* Slidernavigation */
.contentSliderBtnDiv {
    display: flex;
    align-items: flex-end;
}

.contentSliderBtnDiv,
section {
    margin: 0 1em;
}

.noMarginLeft {
    margin-left: 0;
}

.row-reverse {
    flex-direction: row-reverse;
}

/* _brand */
.contentImgDiv {
    width: 100%;
    height: 12em;
    display: none;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    border-radius: 8px 8px 0 0;
    position: relative;
}

.contentImg {
    max-height: 70%;
    max-width: 80%;
    margin: 1em 0 0 0;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

    .contentImg.white {
        position: absolute;
        opacity: 1;
    }

    .contentImg.black {
        opacity: 0;
    }

.contentImgDiv.active {
    display: flex;
    transition: 0.5s ease-in-out;
    background: linear-gradient(white 0%, white 10%, white 95%, var(--descColor) 100%);
}

    .contentImgDiv.active .black {
        opacity: 1;
    }

    .contentImgDiv.active .white {
        opacity: 0;
    }

.contentArrows {
    width: 100%;
    display: none;
    justify-content: flex-end;
}

.visible {
    display: flex;
}

.contentArrows i {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0 0 0 2px;
    padding: 0.7em 1em;
    transition: background-color .5s, color .5s;
}

/* imageText */
.imageTextContent {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    border-top-left-radius: unset !important;
    padding: 2em 1em;
    align-items: center;
}

    .imageTextContent.reverse {
        flex-direction: column-reverse;
    }

    .imageTextContentTextDiv {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

.imageTextContent img {
    width: 100%;
    margin: 2em 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 10px 15px;
}

/* _brandContainer */
.contentSuport {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2em 0
}

    .contentSuport h3 {
        font-size: 2em;
        font-family: 'Neucha'
    }

.contentSuportImg {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 2%;
}

    .contentSuportImg img {
        width: 5em;
        height: auto;
        margin: 0 1em;
    }

/* _slider */
section {
    display: none;
}

    section:first-of-type {
        display: block;
    }

.contentSliderSectionTop {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    border-top-left-radius: unset !important;
    padding: 2em 1em;
}

    .contentSliderSectionTop > div {
       display: flex;
       flex-direction: column;
    }

    .darkButton {
        padding: 0.5em 1em 0.2em 1em;
        font-size: 1.2em;
        border-radius: 50px;
        cursor: pointer;
        margin: 1em 0;
        text-decoration: none;
        width: fit-content;
    }

.contentSliderSectionTop img {
    width: 100%;
    margin: 2em 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 10px 15px;
}

.contentSliderSectionTop:has(img) > div > div:first-child {
    margin-right: unset;
}

.contenSliderContent:not(:first-of-type) .contentSliderSectionTop {
    border-top-left-radius: 8px;
}

.contentSliderSectionBottom {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    display: flex;
    flex-direction: column;
}

/* _sliderPeople */
.contentSliderSectionBottom > div:last-child {
    margin-bottom: 2em
}

.contentSliderSectionBottom hr {
    margin: 1em 0;
    border-radius: 50px;
    opacity: .40;
}

.contentSliderSectionBottom > div > div {
    display: flex;
    flex-direction: column;
}

    .contentSliderSectionBottom > div > div > div {
        width: 100%;
    }



.contentSliderSectionBottom .addressDiv {
    display: flex;
}

    .contentSliderSectionBottom .addressDiv p {
        margin-right: 0.5em;
    }

.contentSliderBottomImg {
    width: 10em;
    margin: 1em 0;
}

/* _informationBlockContainer */
.proBlock .informationBlock div {
    align-items: center;
}

    .proBlock .informationBlock h1 {
        margin: unset;
        font-size: 2em;
    }

.informationBlock h1 {
    margin: 0 0 4% 0;
}

.proContentDiv {
    display: flex;
    align-items: center;
    flex-direction: column;
}

/* _informationBlock */
.contentBlock p:last-child, .contentSliderSectionTop p:last-child {
    margin-block-end: -0.5em;
}

.proContentBubble {
    height: fit-content;
    border-radius: 1.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1em 0;
    min-height: 20em;
    width: 80%;
}

    .proContentBubble h1 {
        margin: 10% 0;
        font-size: 1.7em;
    }

    .proContentBubble ul {
        word-break: break-word;
        width: 100%;
        font-size: 1.2em;
    }

        .proContentBubble ul li {
            list-style-type: circle;
        }

.fileUpload {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
}

.fileDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2em 0;
    text-decoration: none;
    width: fit-content;
}

    .fileDiv i {
        cursor: pointer;
        font-size: 4em;
    }

    .fileDiv .fileName {
        text-decoration: none;
        font-size: 1em;
    }


/********** Management & Management Member **********/
.managementDiv {
    padding: 4em 0;
}

.flipBoxDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em 0px;
}

.flipBox {
    position: relative;
    height: fit-content;
    min-height: 38em;
    width: 90%;
    will-change: transform;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flipBoxFront, .flipBoxBack {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flipBoxBack {
    transform: rotateY(180deg);
}

.flipBoxBack .flipBoxTextDiv {
    text-align: center;
}


.flipBoxImgDiv, .flipBoxTextDiv {
    height: 50%;
}

.flipBoxImgDiv {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
}

.flipBoxImg {
    width: auto;
    max-height: 100%;
    max-width: 100%;
}

.flipBoxTextDiv {
    display: flex;
    flex-direction: column;
    margin: 1em;
    font-size: 1.5em;
    -webkit-text-decoration: none !important;
    text-decoration: none !important;
}

    .flipBoxTextDiv p, .flipBoxTextDiv a {
        word-break: break-word;
        white-space: break-spaces;
    }

.websiteName{
    white-space: nowrap;
    text-decoration: none;
}

.shockBtnContainer {
    margin: 1em 0;
}

.shockBtn {
    width: 3em;
    height: 3em;
    border-radius: 50%;
    margin: 0 1.6rem;
    border: none;
    padding: 0;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shockBtnShockwave.shockBtnIsActive {
    animation: shockwaveJump 1s ease-out infinite;
}

    .shockBtnShockwave.shockBtnIsActive:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        border-radius: 50%;
        animation: shockwave 1s .65s ease-out infinite;
    }

    .shockBtnShockwave.shockBtnIsActive:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        border-radius: 50%;
        animation: shockwave 1s .5s ease-out infinite;
    }

/********** Form & Formfield **********/
.formBlock > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.formBox {
    width: 100%;
}

.formElement {
    margin: 2em 0;
}

.formBox label {
    font-size: 1.2em;
}

.form-control {
    font-size: 1.2em !important;
}

.formCheckbox {
    width: fit-content !important;
    height: fit-content;
    min-width: 1.2em;
    min-height: 1.2em;
}

.multiselect-container {
    z-index: 1 !important;
}

.sliderValue {
    width: 20% !important;
    margin-right: 1em;
}

.formBtnDiv {
    display: flex;
    justify-content: center;
    margin: 2em 0;
}

.formButton:disabled {
    color: #fff !important;
    background-color: grey !important;
    border-color: grey !important;
}

.buttonContainer {
    min-width: 20%;
}

.dropdown-toggle.btn {
    font-size: 1em;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: gray !important;
}

.rangeDiv {
    flex-direction: column;
}

input[type=range] {
    height: 28px;
    -webkit-appearance: none;
    margin: 10px 0;
    width: 100%;
}

    input[type=range]:focus {
        outline: none;
    }

    input[type=range]::-webkit-slider-runnable-track {
        width: 100%;
        height: 6px;
        cursor: pointer;
        animate: 0.2s;
        background: var(--rangeKnob);
        border-radius: 50px;
    }

    input[type=range]::-webkit-slider-thumb {
        height: 22px;
        width: 22px;
        border-radius: 50px;
        background: var(--rangeLine);
        cursor: pointer;
        -webkit-appearance: none;
        margin-top: -8px;
    }

    input[type=range]:focus::-webkit-slider-runnable-track {
        background: var(--rangeKnob);
    }

    input[type=range]::-moz-range-track {
        width: 100%;
        height: 6px;
        cursor: pointer;
        animate: 0.2s;
        background: var(--rangeKnob);
        border-radius: 50px;
    }

    input[type=range]::-moz-range-thumb {
        height: 22px;
        width: 22px;
        border-radius: 50px;
        background: var(--rangeLine);
        cursor: pointer;
    }

    input[type=range]::-ms-track {
        width: 100%;
        height: 6px;
        cursor: pointer;
        animate: 0.2s;
        background: transparent;
        border-color: transparent;
        color: transparent;
    }

    input[type=range]::-ms-fill-lower {
        background: var(--rangeKnob);
        border-radius: 100px;
    }

    input[type=range]::-ms-fill-upper {
        background: var(--rangeKnob);
        border-radius: 100px;
    }

    input[type=range]::-ms-thumb {
        margin-top: 1px;
        height: 22px;
        width: 22px;
        border-radius: 50px;
        background: var(--rangeLine);
        cursor: pointer;
    }

    input[type=range]:focus::-ms-fill-lower {
        background: var(--rangeKnob);
    }

    input[type=range]:focus::-ms-fill-upper {
        background: var(--rangeKnob);
    }


/******************** Footer ********************/
.footerTop {
    padding: 1em 0;
}

    .footerTop div {
        display: flex;
        flex-direction: column;
    }

    .footerTop a {
        text-decoration: none;
    }

        .footerTop a, .footerTop p {
            width: fit-content;
        }

    .footerBottom div {
        display: flex;
        align-items: center;
    }

    .footerBottom a {
        text-decoration: none;
    }
        .footerBottom a:hover {
            color: unset;
        }

        .vl {
            margin: 0 1em;
        }

/******************** Summarised ********************/
.contentSliderSectionTop h1,
.contentSliderSectionTop h4,
.imageTextContent h1,
.contentSliderSectionBottom > div > div > div > p:first-child,
.footerTop p:nth-child(2) {
    font-weight: 600;
}

.contentSliderSectionTop h1,
.contentSliderSectionBottom h1,
.contentBlock h1,
.imageTextContent h1,
.centerTitle h1,
.footerTop h1 {
    font-size: 2em;
    line-height: 1;
    margin: 0 0 0.5em 0;
}

.contentSliderSectionTop h4,
.contentSliderSectionTop p,
.imageTextContent p,
.contentBlock p,
.footerTop p,
.footerTop a,
.footerBottom a,
.vl {
    font-size: 1.2em;
    line-height: 1.8;
}

.contentSliderSectionBottom > div {
    padding: 2em;
}

.contentSliderSectionBottom h1 {
    text-decoration: underline;
}

.contentSliderSectionBottom p,
.contentSliderSectionBottom a {
    font-size: 1.2em;
}

.informationBlock div,
.contentBlock {
    display: flex;
    flex-direction: column;
    padding: 6vh 0;
}

.centerTitle h1 {
    text-align: center;
}

/********** Music **********/
.music-player {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    align-items: center;
    width: 6px;
    height: 50px;
    overflow: hidden;
    background: #fff;
    border-radius: 0 10px 10px 0;
    transition: width .3s ease;
    cursor: pointer;
}

    .music-player.open {
        width: 280px;
    }

#muteBtn {
    display: none;
}

.player-content {
    width: 272px;
    padding: 0 10px;
    opacity: 0;
    transition: opacity .2s ease .15s;
    height: inherit;
}


.music-player.open .player-content {
    opacity: 1;
}

#audio {
    width: 100%;
    height: inherit;
}


/******************** Media for mobile ********************/
@media only screen and (min-width: 400px) {
    .contentImgDiv {
        height: 15em;
    }
}

@media only screen and (min-width: 600px) {
    /* General */
    :root {
        --slide-in-in: 80%;
        --slide-in-half: -27.5%;
        --slide-in-out: -80%;
        --slide-out-in: -80%;
        --slide-out-half: -27.5%;
        --slide-out-out: 100%;
    }

    body:before {
        padding: 60vw 50%;
    }

    /* Header */
    header {
        justify-content: center;
    }

    .checkLabel {
        right: 5.5em;
    }

    .navContentDiv {
        justify-content: flex-end;
        right: unset;
    }

    #sun {
        right: 3em;
    }

    .checkLabel {
        right: 4.2em;
    }

    .background {
        right: 4.4em;
    }

    .contentSuport h3 {
        font-size: 2.2em;
    }

    .contentSuportImg img {
        width: 6em;
    }

    .contentSliderBtnDiv,
    section {
        margin: unset;
    }

    .contentArrows i {
        padding: 0.4em 0.6em;
    }

    /* Flipbox */
    .xactive .flipBoxFront, .xactive .flipBoxBack {
        transition: 0.8s;
    }

    .xactive .flipBoxFront {
        transform: rotateY(0deg);
    }

    .xactive .flipBoxBack {
        transform: rotateY(180deg);
    }

    .xactive:hover .flipBoxFront {
        transform: rotateY(180deg);
    }

    .xactive:hover .flipBoxBack {
        transform: rotateY(0deg);
    }

    .fileUpload {
        flex-direction: row;
    }

    .proContentDiv {
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    .proContentBubble {
        margin: 2em;
        width: 20em;
        min-height: 15em;
    }

    .contentSliderSectionTop h4 {
        font-size: 1.5em;
    }

    .contentSliderSectionTop:has(img) > div > div:first-child {
        margin-right: 4em;
    }

    .proBlock .informationBlock h1,
    .contentSliderSectionTop h1,
    .imageTextContent h1,
    .contentBlock h1,
    .centerTitle h1,
    .footerTop h1 {
        font-size: 2.5em;
    }

    .proBlock .informationBlock h1 {
        font-size: 2.2em;
    }

    .rangeDiv {
        flex-direction: row;
        align-items: center;
    }

    /* Music */
    .music-player {
        width: 50px;
    }

    .music-player:hover {
        width: 320px;
    }

    #muteBtn {
        width: 50px;
        height: 50px;
        border: none;
        background: transparent;
        color: #000;
        cursor: pointer;
        flex-shrink: 0;
        display: block;
    }

        #muteBtn i {
            font-size: 1.4rem;
        }

            #muteBtn i:before {
                line-height: unset;
            }

    .player-content {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding-right: 15px;
        opacity: 1;
    }

}

@media only screen and (min-width: 850px) {
    header h1 {
        font-size: 5em;
    }

    header h2 {
        font-size: 2.5em;
    }

    header img {
        width: 23em;
    }

    .checkLabel {
        right: 5.5em;
    }

    .background {
        right: 5.5em;
        top: 2.6em;
    }

    .contentSliderSectionTop img, .imageTextContent img {
        width: 30em;
    }

    .contentSliderSectionBottom > div {
        margin-bottom: 2em;
    }

    .checkLabel {
        width: 3.1em;
        top: 3em;
    }

    #sun {
        width: 8.2em
    }

    .spanWrap {
        height: 40px;
    }

    .spanWrap span {
        width: 50px;
        height: 5px;
    }

        .spanWrap .first, .spanWrap .second, .spanWrap .third {
            left: 0;
        }

        .spanWrap .first{
            top: 5px
        }

        .spanWrap .second{
            top: 18px;
        }

        .spanWrap .third {
            top: 30px;
        }

    .menuOpen .spanWrap .second {
        left: 25px;
    }

    .menuOpen .spanWrap .first, .menuOpen .spanWrap .third, .menuOpen .spanWrap .second {
        top: 15px;
    }

    .formBox {
        width: 60%;
    }

    .flipBoxDiv {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }
}

@media only screen and (min-width: 1100px) {
    body:before {
        padding: unset;
    }

    .contentSuport {
        align-items: flex-end;
        margin: 0 1em;
    }

    .contentSlider {
        flex-direction: row;
    }

    .contentSliderSectionTop > div, .imageTextContent {
        flex-direction: row;
    }

    .contentSliderSectionBottom {
        display: grid;
    }

    .contentSliderSectionBottom > div > div {
        flex-direction: row;
    }

        .contentSliderSectionBottom > div > div > div:nth-child(2) {
            display: flex;
            justify-content: center;
            align-items: center;
            width: auto;
        }

    .contentImgDiv {
        display: flex;
        width: 16em;
        height: 12em;
        border-bottom: unset;
    }

        .contentImgDiv .active {
            display: block;
        }

    .contentImg {
        width: 80%;
    }

    .flipBox {
        min-height: 35em;
        width: 60%;
    }

    .imageTextContent.reverse {
        flex-direction: row-reverse;
    }

    .imageTextContent.reverse img {
        margin-right: 2em;
    }
}

/******************** Keyframes ********************/
@keyframes rotateMock {
    0% {
        transform: rotateY(0);
    }

    50% {
        transform: rotateY(15deg);
    }

    100% {
        transform: rotateY(0deg);
    }
}


@keyframes up-and-down {
    0% {
        bottom: 50px;
    }

    50% {
        bottom: 25px;
    }

    100% {
        bottom: 50px;
    }
}

@keyframes resizeSunbeam {
    0% {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(1.1, 1.1);
    }

    50% {
        transform: scale(1.2, 1.2);
    }

    75% {
        transform: scale(1.1, 1.1);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes slide-out-anim {
    0% {
        opacity: 1;
        transform: translateX(var(--slide-out-in));
    }

    50% {
        transform: translateX(var(--slide-out-half));
    }

    100% {
        opacity: 0;
        transform: translateX(var(--slide-out-out));
    }
}

@keyframes slide-in-anim {
    0% {
        opacity: 0;
        transform: translateX(var(--slide-in-in));
    }

    50% {
        transform: translateX(var(--slide-in-half));
    }

    100% {
        opacity: 1;
        transform: translateX(var(--slide-in-out));
    }
}

@keyframes shockwaveJump {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    40% {
        -webkit-transform: scale(1.08);
        transform: scale(1.08);
    }

    50% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
    }

    55% {
        -webkit-transform: scale(1.02);
        transform: scale(1.02);
    }

    60% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes shockwave {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 2px var(--shockWave), inset 0 0 1px var(--shockWave);
    }

    95% {
        box-shadow: 0 0 50px transparent, inset 0 0 30px transparent;
    }

    100% {
        -webkit-transform: scale(2.25);
        transform: scale(2.25);
    }
}

@keyframes sqareOpen {
    0% {
        border-radius: 50%;
    }

    75% {
        border-radius: 30%;
    }

    100% {
        border-radius: 0%;
    }
}

@keyframes sqareClose {
    0% {
        border-radius: 0%;
    }

    25% {
        border-radius: 30%;
    }

    100% {
        border-radius: 50%;
    }
}