/*  MAIN  */

* {
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
    background-color: #0050a1;
}

body {
    display: flex;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    flex-direction: column;
    justify-content: space-between;
    background-color: #F1F8FF;
    overflow: hidden;
    font-family: 'cabin', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#loadViewBlock {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0050a1;
    transition: opacity 0.1s;
    z-index: 1000;
}

.pageNotFound {
    position: fixed;
    display: flex;
    width: 80vw;
    height: 100vh;
    top: 0;
    left: 50%;
    font-size: 30px;
    margin-left: -40vw;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1001;
}

.pageNotFound a {
    color: rgb(225, 224, 252);
}

#bannerPageGap {
    display: flex;
    height: 100%;
    padding: 0;
    margin: 0;
    flex-direction: column;
    background-color: #0050a1;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    flex-grow: 1;
}

.elevatePage {
    animation: elevate 1s 0s;
}

.lowerPage {
    animation: lower 1s 0s;
}

#egg_window {
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    border: none;
    z-index: 200;
}

/*  TOP  */

header {
    position: relative;
    width: 100%;
    margin: 0;
    background-color: #0050a1;
    flex-shrink: 0;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -o-user-select: none;
    overflow-y: visible;
}

.bannerPageBig .banner {
    height: 650px;
}

.bannerPageSmall .banner {
    height: 60px;
}

.bannerPageBig .banner .intro {
    display: block;
    opacity: 1;
}

.bannerPageSmall .banner .intro {
    opacity: 0;
}

.elevatePage .banner {
    height: 650px;
}

.lowerPage .banner .intro {
    animation: appear 1s 0s;
}

.elevatePage .banner .intro {
    display: block;
    animation: disappear 1s 0s;
}


nav {
    position: absolute;
    display: flex;
    width: 100%;
    top: 0;
    right: 0;
    justify-content: flex-end;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -o-user-select: none;
    z-index: 15;
}

nav a {
    display: inline-block;
    height: 60px;
    min-width: 60px;
    font-size: 28.8px;
    line-height: 28.8px;
    padding: 16.1px;
    color: white;
    cursor: pointer;
    text-decoration: none;
    text-shadow: 1px 1px 1px rgb(14, 0, 119);
}

nav #logo {
    vertical-align: middle;
    font-size: 41px;
    line-height: 41px;
    padding: 9.75px;
    margin-right: auto;
}

nav img {
    float: left;
    height: 41px;
    width: 41px;
    margin-right: 6px;
}

nav a:hover,
nav .menu:hover {
    color: rgb(154, 221, 255);
}

nav #logo:hover {
    color: white !important;
    text-shadow: 0 0 1px rgb(154, 221, 255) !important;
}

.largeNav #rightLinks {
    display: block;
}


.menu {
    position: absolute;
    display: none;
    height: 50px;
    font-size: 30px;
    line-height: 30px;
    top: 0;
    right: 0;
    padding: 10px;
    color: white;
    cursor: pointer;
    text-shadow: 1px 1px 1px rgb(14, 0, 119);
    z-index: 7;
}

.intro {
    display: none;
    position: absolute;
    width: 22vw;
    top: 50%;
    left: 50%;
    margin: -3vw -11vw;
    text-shadow: 1px 1px 1px rgb(14, 0, 119);
    z-index: 5;
    cursor: default;
}

.intro h1 {
    font-size: 2vw;
    font-weight: bold;
    margin: 0 0 0.1vw 0;
    text-align: center;
    color: white;
}

.intro .subtitle {
    display: block;
    font-size: 1.3vw;
    text-align: center;
    color: white;
}

.intro .subtitle span {
    display: inline;
    font-family: 'Courier New', Courier, monospace;
    white-space: pre-line;
}

.intro #blinkingCursor {
    display: inline-block;
    width: 0.12vw;
    height: 1.59vw;
    margin-left: -0.34vw;
    margin-top: -0.2vw;
    padding: 0;
    vertical-align: middle;
    background-color: white;
    box-shadow: 1px 1px 1px 0px rgb(14, 0, 119);
}

.intro .blinkingCursorA {
    animation: 1.5s blink step-end infinite;
}

.bgContainer {
    position: absolute;
    height: calc(100% + 1.5vw);
    width: 100%;
    top: 0;
    box-shadow: 0 0 100px #babeff inset;
    overflow: hidden;
}

.bgContainer .texture {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: hue-rotate(-5deg) blur(7px);
    object-fit: cover;
    z-index: 1;
}

.bgContainer .landscape {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bannerPageSmall .bgContainer {
    opacity: 0;
}

.elevatePage .bgContainer {
    animation: disappear 1s 0s;
}

.lowerPage .bgContainer {
    animation: appear 1s 0s;
}

#clickOff {
    position: fixed;
    display: none;
    height: 100vh;
    width: 100vw;
    top: 0px;
    left: 0px;
    z-index: 14;
}

/*  CONTENT  */

main {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 20px 0;
    min-height: fit-content;
    border-top-left-radius: 1.5vw;
    border-top-right-radius: 1.5vw;
    background-color: #f1f8ff;
    flex-grow: 1;
    z-index: 10;
}

#pageFrame {
    width: 100%;
    border: none;
}

.content {
    display: none;
    width: 1000px;
    margin: 0 auto;
    padding: 0;
}


.box {
    position: relative;
    width: 100%;
    font-size: 20px;
    line-height: 30px;
    padding: 5px 10px 23px 5px;
}


.box h2 {
    font-size: 25px;
    margin: 0 auto 10px auto;
    color: #2C2E93;
}

.box h3 {
    font-size: 22px;
    margin: 0 auto 7px auto;
    color: #3335a0;
}


.box .imgR,
.box .imgL {
    max-height: 200px;
    border-radius: 4px;
    object-fit: cover;
}

.box .imgR {
    float: right;
    padding: 5px 0 0 10px;
}

.box .imgL {
    float: left;
    padding: 5px 10px 0 0;
}

.flipper {
    position: relative;
    perspective: 1500px;
    height: 100px;
    --flipper-num: 5;
    transition: height 0.9s;
}

.flipper .openIMG {
    position: relative;
    display: flex;
    width: 100%;
    height: 100px;
    justify-content: center;
    align-items: center;
    background-color: #02488f;
    transform-origin: bottom;
    backface-visibility: hidden;
    animation: showOpen 0.4s;
    transition: transform 1s, background-color 0.1s;
    user-select: none;
    overflow: hidden;
    cursor: pointer;
    z-index: 5;
}

.flipper .openIMG:hover {
    background-color: #ffffff;
}

.flipper .openIMG img {
    position: absolute;
    object-fit: cover;
    filter: blur(4.5px);
    width: 100%;
    height: 100px;
}

.flipper:nth-of-type(1) img {
    object-position: 0 0;
}

.flipper:nth-of-type(2) img {
    object-position: 0 calc(100% / var(--flipper-num) * 1);
}

.flipper:nth-of-type(3) img {
    object-position: 0 calc(100% / var(--flipper-num) * 2);
}

.flipper:nth-of-type(4) img {
    object-position: 0 calc(100% / var(--flipper-num) * 3);
}

.flipper:nth-of-type(5) img {
    object-position: 0 calc(100% / var(--flipper-num) * 4);
}

.flipper:nth-of-type(6) img {
    object-position: 0 100%;
}

.flipper .openIMG span {
    position: relative;
    font-weight: bold;
    text-align: center;
    color: white;
    z-index: 5;
}

.flipper .back {
    position: absolute;
    width: 100%;
    min-height: 200px;
    top: 0;
    background-color: #02488f;
    color: white;
    padding: 20px;
    transform-origin: 0 100px;
    transform: rotateX(180deg);
    backface-visibility: hidden;
    opacity: 0;
    transition: transform 1s, opacity 0.6s 0.1s;
    overflow: hidden;
}

.flipper .back *:not(.textBG) {
    position: relative;
    z-index: 1;
}

.flipper .back h2 {
    margin-bottom: 5px;
    color: white;
    text-align: center;
}

.flipper .back ul {
    margin: 5px 0;
}

.flipper .back div:last-of-type {
    text-align: right;
}

.flipper .back div:last-of-type span {
    text-decoration: underline;
    cursor: pointer;
}

.flipped .openIMG {
    transform: rotateX(-180deg) !important;
}

.flipped .back {
    transform: rotateX(0deg);
    opacity: 1;
}

#showcase {
    position: relative;
    display: flex;
    width: 100%;
    height: 396px;
    margin-top: -83.5px;
    flex-wrap: nowrap;
    align-items: center;
    user-select: none;
    overflow: hidden;
    z-index: 100;
}

.showcaseNav {
    position: absolute;
    display: flex;
    height: 260px;
    width: 40px;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgb(0, 0, 0);
    animation: appear 1s;
    cursor: pointer;
    z-index: 10;
}

.showcaseNav span {
    font-weight: bold;
    transform: scaleY(800%);
    user-select: none;
}

.showcaseNav span:active {
    color: white;
}

#showLeft {
    left: 0;
    box-shadow: 30px 0 10px -20px #F1F8FF inset;
}

#showRight {
    right: 0;
    box-shadow: -30px 0 10px -20px #F1F8FF inset;
}

#showcase .scroller {
    position: relative;
    display: flex;
    left: -32.5%;
    flex-wrap: nowrap;
    align-items: center;
}

#showcase .showcaseIMG {
    flex-shrink: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    width: 33%;
    margin: 0;
    transition: transform 1s;
    transform: scale(0.8);
    background-color: black;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.467);
    border-radius: 2px;
    overflow: hidden;
}

.rightScroller {
    transform: translateX(-33%) !important;
    transition: transform 1s !important
}

.leftScroller {
    transform: translateX(33%) !important;
    transition: transform 1s !important
}

#showcase .inFocus {
    transform: scale(1.2);
    z-index: 8;
}

#showcase .showcaseIMG img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#showcase .showcaseIMG span {
    position: absolute;
    top: 0;
    display: inline-block;
    font-size: 20px;
    color: white;
    width: 100%;
    height: min-content;
    text-align: center;
    padding: 7px;
    background-color: #000A3280;
    font-weight: bold;
    z-index: 4;
}

.position {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    font-weight: bold;
    font-size: 23px;
    background-color: #F7FBFF;
    cursor: pointer;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.37);
}

.position:hover {
    background-color: #FBFDFF;
    color: rgb(0, 2, 35);
}


.flatFlowDir {
    width: 100%;
}

#contact td:first-child {
    width: 70px;
    vertical-align: top;
}

#contact a:link {
    color: #0d10a3;
    font-size: 17px;
}

#about-us .flatFlowDir div {
    width: 25%;
    text-align: center;
}

#about-us .flatFlowDir img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    opacity: 0.95;
    margin-bottom: -10px;
}

.flatFlowDir {
    display: inline-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.paperBox {
    position: relative;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.156);
    padding: 10px;
}


.contactSales .salesText {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 12px;
}

.contactSales .salesText h2 {
    width: 100%;
}

.contactSales .salesText div {
    width: calc(100% - 125px);
    max-width: 570px;
}

.contactSales .salesText img {
    position: absolute;
    max-height: 106%;
    max-width: 50%;
    bottom: 0;
    right: 0;
    object-fit: cover;
    object-position: top;
}

.contactSales h2 {
    margin-left: 0 !important;
}

.contactSales div {
    position: relative;
}

.visitCard {
    background-color: #f5fafe;
    box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.189);
    padding: 20px;
    z-index: 1;
}

.visitCard div {
    font-size: 23px;
    line-height: 10px;
}

.visitCard span {
    display: inline-block;
    font-size: 15px;
    padding-left: 2px;
    opacity: 0.8;
}

.flatFlowDir .paperBox {
    margin-bottom: 10px;
    width: calc(50% - 5px);
}

.paperBox .contactSocial {
    display: flex;
    margin-top: 20px;
    flex-wrap: nowrap;
    justify-content: space-evenly;
}

.paperBox .contactSocial a {
    width: 50px;
    padding: 0 4px;
    flex-shrink: 1;
}

.paperBox .contactSocial img {
    width: 100%;
    filter: invert(21%) sepia(43%) saturate(3190%) hue-rotate(193deg) brightness(105%) contrast(106%);
}

.contactMap {
    min-height: 300px;
}

.contactMap a:first-of-type {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 15px;
    padding: 0 5px;
    color: white !important;
    background-color: rgba(0, 0, 0, 0.715);
    text-decoration: none;
    border-bottom-left-radius: 2px;
    z-index: 5;
}

.msgForm {
    position: relative;
    width: 100%;
    padding: 10px 20px 15px 20px;
    overflow: hidden;
}

.msgForm *:not(.textBG) {
    position: relative;
    z-index: 1;
}

.msgForm textarea,
.msgForm select,
.msgForm input[type=text] {
    width: 100%;
    font-size: 20px;
    margin-bottom: 5px;
    padding: 10px;
    background-color: #f5faff;
    border-radius: 4px;
    outline: 1px solid #d5d5dc;
    border: 1px solid #d5d5dc;
    box-shadow: 0px 0px 3px 0px #0f1172;
}

.msgForm textarea:focus,
.msgForm select:focus,
.msgForm input[type=text]:focus {
    outline: 2px solid #ffffff;
}

.msgForm textarea {
    min-height: 200px;
    resize: none;
}

.msgForm input[type=submit] {
    width: 100%;
    font-size: 20px;
    margin-top: 5px;
    padding: 7px;
    border-radius: 4px;
    border: none;
    background-color: #f5faff;
    outline: 2px solid #d5d5dc;
    box-shadow: 0px 0px 3px 0px #0f1172;
}

.msgForm input[type=submit]:hover {
    background-color: #ffffff;
}

.msgForm .contactError {
    float: right;
}

.textBG {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
    opacity: 0.7;
    z-index: 0;
}

.sendEmail {
    height: 0;
    border: none;
}

.resultMsg {
    text-align: center;
}

.animationAppear {
    animation: appear 0.5s 0s forwards;
    display: block !important;
}

.bannerPageSmall main {
    animation: sharpen 1.5s forwards;
}

.bannerPageBig main {
    animation: dull 1.5s forwards;
}

/*  FOOTER  */

footer {
    position: relative;
    color: white;
    background-color: rgb(32, 32, 32);
    transition: transform 1s;
    z-index: 13;
}

#copyright {
    height: 40px;
    width: 100%;
    font-size: 12px;
    line-height: 12px;
    padding: 14px;
    text-align: center;
    background-color: rgb(0, 0, 0);
}

.bottomInfo {
    width: 900px;
    margin: 5px auto;
    text-align: center;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

.bottomInfo a {
    margin: 2px 20px;
    text-decoration: none;
    -webkit-user-drag: none;
}

.bottomInfo img {
    height: 20px;
    vertical-align: middle;
    filter: invert(100%) sepia(63%) saturate(1944%) hue-rotate(178deg) brightness(106%) contrast(104%);
}

.bottomInfo img:hover {
    filter: invert(97%) sepia(16%) saturate(5061%) hue-rotate(172deg) brightness(102%) contrast(101%);
}

a#footer_dp_link, a#footer_dp_link:visited {
    color: white;
}


/*  MEDIA  */

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

    .bannerPageBig .banner {
        height: 550px;
    }

    .bannerPageSmall .banner {
        height: 50px;
    }

    .elevatePage .banner {
        height: 550px;
    }

    .elevatePage .banner {
        height: 550px;
    }

    nav a:not(.logo) {
        height: 50px;
        min-width: 40px;
        font-size: 24px;
        line-height: 24px;
        padding: 13px;
    }

    nav img {
        height: 30px;
        width: 30px;
        margin-right: 3px;
    }

    nav #logo {
        height: 50px;
        font-size: 30px;
        line-height: 30px;
        padding: 10px;
    }

    .elevatePage {
        animation: elevate1 1s 0s;
    }

    .lowerPage {
        animation: lower1 1s 0s;
    }
}

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

    .intro {
        width: 400px;
        margin: -60px -200px;
    }

    .intro h1 {
        font-size: 35px;
        margin-bottom: 4px;
    }

    .intro .subtitle {
        font-size: 24px;
    }

    .intro #blinkingCursor {
        height: 28.5px;
        margin-top: -4px;
        width: 2px;
    }

}

@media only screen and (max-width: 1150px) {
    header {
        min-height: unset !important;
        max-height: unset !important;
    }

    .bannerPageBig .banner {
        height: 550px;
    }
}

@media only screen and (max-width: 1050px) {
    .content {
        width: 100%;
    }

    .bottomInfo {
        width: 100%;
    }

    #showcase {
        margin-top: -70px;
    }
}

@media only screen and (max-width: 835px) {
    nav .menu {
        display: inline-block;
    }

    .largeNav #rightLinks {
        display: none;
    }

    .smallNav {
        flex-direction: column;
        background-color: rgba(3, 0, 84, 0.75);
    }

    .smallNav a {
        width: 100%;
    }

    .smallNav a:hover,
    .smallNav .menu:hover {
        background-color: #00458a43;
    }

    .smallNav #rightLinks {
        display: flex;
        flex-direction: column;
    }

    .smallNav #rightLinks a {
        display: inline-block;
        height: 50px;
        padding: 13px 45px;
        color: rgb(205, 238, 255)
    }

    .smallNav #logo,
    .smallNav .menu {
        color: rgb(205, 238, 255)
    }

    #rightLinks a:first-of-type {
        display: none;
    }

    .flatFlowDir .paperBox {
        width: 100%;
    }

    #clickOff {
        display: block;
    }

    .position td {
        padding: 5px;
    }

    .position td:first-child {
        font-size: 18px;
    }

    #showcase {
        height: 50vw;
        margin-top: -10vw;
    }

    #showcase .showcaseIMG {
        width: 60%;
        height: 40vw;
        box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.467);
    }

    #showcase .showcaseIMG span {
        font-size: 3vw;
    }

    #showcase .scroller {
        position: relative;
        display: flex;
        left: -100%;
        flex-wrap: nowrap;
        align-items: center;
    }

    .showcaseNav {
        box-shadow: unset !important;
    }

    .rightScroller {
        transform: translateX(-60%) !important;
    }

    .leftScroller {
        transform: translateX(60%) !important;
    }

    .bannerPageBig .banner {
        height: 450px;
    }

    .elevatePage {
        animation: elevate2 1s 0s;
    }

    .lowerPage {
        animation: lower2 1s 0s;
    }

    .elevatePage .banner {
        height: 450px;
    }
}

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

    .box {
        font-size: 18px;
        line-height: 27px;
    }

    .box h2 {
        font-size: 22px;
    }

    .box h3 {
        font-size: 19.8px;
    }

    .position td {
        font-size: 14px;
    }

    .position td:first-child {
        font-size: 15px;
    }

    .visitCard {
        padding: 10px;
    }

    .visitCard div {
        font-size: 20px;
    }

    .visitCard span {
        font-size: 14px;
    }

    #contact td:first-child {
        width: 50px;
    }

    #contact a:link {
        font-size: 16px;
    }

    #contact td:nth-child(2) {
        word-break: break-all;
    }

    .msgForm {
        padding: 5px 10px 7.5px 10px;
    }

    .msgForm textarea {
        min-height: 100px;
        font-size: 18px;
        padding: 5px;
    }

    .msgForm select {
        font-size: 18px;
        padding: 5px;
    }

    .msgForm input[type=text] {
        font-size: 18px;
        padding: 5px;
    }

    .msgForm input[type=submit] {
        font-size: 18px;
        padding: 3px 5px;
    }

    .msgForm .contactError {
        font-size: 3vw;
    }

    .contactMap a {
        font-size: 10px;
    }
}

@media only screen and (max-width: 475px) {
    nav a:not(.logo) {
        height: 40px;
        min-width: 32px;
        padding: 10.4px;
        font-size: 19.2px;
        line-height: 19.2px;
    }

    nav img {
        height: 24px;
        width: 24px;
        margin-right: 2.4px;
    }

    nav #logo {
        height: 40px;
        font-size: 24px;
        line-height: 24px;
        padding: 8px;
    }

    .smallNav #rightLinks a {
        padding: 10.4px 36px;
    }

    .menu {
        height: 40px;
        font-size: 24px;
        line-height: 24px;
        padding: 8px;
    }

    .intro {
        width: 320px;
        margin: -24px -160px;
    }

    .intro h1 {
        font-size: 28px;
        margin-bottom: 3.2px;
    }

    .intro .subtitle {
        font-size: 19.2px;
    }

    .intro #blinkingCursor {
        height: 23px;
        margin-top: -3.2px;
        margin-left: -4px;
    }

    .box {
        font-size: 15px;
        line-height: 20px;
    }

    .visitCard {
        padding: 5px;
    }

    .visitCard div {
        font-size: 18px;
    }

    .visitCard span {
        font-size: 12px;
    }

    #contact a:link {
        font-size: 13px;
    }

    .box .imgR,
    .box .imgL {
        display: block;
        height: 70vw;
        margin: 10px auto;
        padding: 0 !important;
        float: none !important;
        border-radius: 4px !important;
    }

    #about-us .flatFlowDir span {
        font-size: 12px;
        line-height: 15px;
    }

    .bannerPageBig .banner {
        height: 350px;
    }

    .bannerPageSmall .banner {
        height: 40px;
    }

    .elevatePage {
        animation: elevate3 1s 0s;
    }

    .lowerPage {
        animation: lower3 1s 0s;
    }

    .elevatePage .banner {
        height: 350px;
    }
}

@media only screen and (max-width: 350px) {
    .intro {
        width: 256px;
        margin: -19.2px -128px;
    }

    .intro h1 {
        font-size: 22.4px;
        margin-bottom: 2.56px;
    }

    .intro .subtitle {
        font-size: 15.36px;
    }

    .intro #blinkingCursor {
        height: 18.5px;
        margin-top: -2.76px;
        margin-left: -3.2px;
    }

    #copyright {
        height: 11vw;
        font-size: 3.4vw;
        line-height: 3.4vw;
        padding: 4vw;
        text-align: center;
        background-color: rgb(0, 0, 0);
    }

    .contactSales .salesText div {
        width: calc(100% - 108px);
    }

    .bannerPageBig .banner {
        height: 280px;
    }

    .elevatePage {
        animation: elevate4 1s 0s;
    }

    .lowerPage {
        animation: lower4 1s 0s;
    }

    .elevatePage .banner {
        height: 280px;
    }
}

/*  ANIMATIONS  */

@keyframes blink {

    from,
    to {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@keyframes disappear {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

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

    100% {
        opacity: 1;
    }
}

@keyframes showOpen {
    0% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes sharpen {
    from {
        border-top-left-radius: 1.5vw;
        border-top-right-radius: 1.5vw;
    }

    to {
        border-top-left-radius: 0.5vw;
        border-top-right-radius: 0.5vw;
    }
}

@keyframes dull {
    from {
        border-top-left-radius: 0.5vw;
        border-top-right-radius: 0.5vw;
    }

    to {
        border-top-left-radius: 1.5vw;
        border-top-right-radius: 1.5vw;
    }
}

@keyframes elevate {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-590px);
    }
}

@keyframes lower {
    0% {
        transform: translateY(-590px);
    }

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


@keyframes elevate1 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-500px);
    }
}

@keyframes lower1 {
    0% {
        transform: translateY(-500px);
    }

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


@keyframes elevate2 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-400px);
    }
}

@keyframes lower2 {
    0% {
        transform: translateY(-400px);
    }

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


@keyframes elevate3 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-310px);
    }
}

@keyframes lower3 {
    0% {
        transform: translateY(-310px);
    }

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


@keyframes elevate4 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-240px);
    }
}

@keyframes lower4 {
    0% {
        transform: translateY(-240px);
    }

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