﻿#lvc-hello {
    font-size: 50px;
    text-shadow: 0 0 4px #00000070;
}

.wave {
    animation: wave 5s ease-out infinite;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    -o-transform-origin: center;
    -webkit-transform-origin: center;
    transform-origin: center;
    -moz-transition: transform 300ms ease-out, opacity 300ms ease-out;
    -o-transition: transform 300ms ease-out, opacity 300ms ease-out;
    -webkit-transition: transform 300ms ease-out, opacity 300ms ease-out;
    transition: transform 300ms ease-out, opacity 300ms ease-out;
    max-width: 180px;
    position: absolute;
}

.wave-outer {
    animation: wave-outer 5s ease-out infinite;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    -o-transform-origin: center;
    -webkit-transform-origin: center;
    transform-origin: center;
    -moz-transition: transform 300ms ease-out, opacity 300ms ease-out;
    -o-transition: transform 300ms ease-out, opacity 300ms ease-out;
    -webkit-transition: transform 300ms ease-out, opacity 300ms ease-out;
    transition: transform 300ms ease-out, opacity 300ms ease-out;
    max-width: 180px;
    position: absolute;
}

.outer {
    animation: outer 5s ease-out infinite;
}

.font-huge {
    font-size: 2.5rem !important;
}

.platforms-badge {
    color: #303030;
    height: 0px;
    overflow: hidden;
    -moz-transition: max-height ease-out 0.3s;
    -o-transition: max-height ease-out 0.3s;
    -webkit-transition: max-height ease-out 0.3s;
    transition: max-height ease-out 0.3s;
}

    .platforms-badge.show {
        height: unset;
        padding-top: 7rem;
        min-height: 100vh
    }

    .platforms-badge .btn {
        color: #303030;
    }

.full-banner-text {
    font-size: 0.95rem;
    color: #606060;
}

.section-margin {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

#presentation-lvc {
    font-size: 2.0rem;
    font-weight: 600;
    margin-top: 1.3rem;
}

#start-here {
    color: #005B9F;
    font-size: 38px;
}

.banner-text {
    display: inline-block;
    padding: 3px 0px;
    font-size: 2.1rem;
    font-weight: 500;
    /*background: rgb(28,49,58);
    background: linear-gradient(23deg, rgba(16, 32, 39,1) 51%, rgba(0, 76, 140,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
}

.offset-image {
    z-index: -1;
    margin-top: -185px;
}

#frameworks {
    margin-top: 3rem;
    background: #30303010;
}

.more-plats>div {
    width: 245px;
}

.home-glass {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: -1
}

.home-svg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: -2
}

.platform-btn {
    width: 100%;
}

@media(min-width: 768px) {
    .platform-btn {
        width: 245px;
    }
}

@media(min-width: 1200px) {
    #lvc-hello {
        font-size: 85px;
    }
}

@keyframes wave {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    7% {
        opacity: 1;
        transform: scale(1);
    }

    14% {
        opacity: 0;
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

@keyframes wave-outer {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    10% {
        opacity: 1;
        transform: scale(1);
    }

    21% {
        opacity: 0;
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

@keyframes outer {
    0% {
        transform: scale(1);
    }

    10% {
        transform: scale(1);
    }

    16% {
        transform: scale(1);
    }

    18% {
        transform: scale(1.04);
    }

    19% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}
