﻿
/** {
    padding: 0px;
    margin: 0px;
}*/

body {
    background-color: #212121;
    font-family: Verdana, Geneva, sans-serif;
}

.container {
    /*height: 100vh;*/
    width: 100%;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    color: #ECEFF1;
    font-size: 120px;
    font-weight: 600;
}

.title-large {
    height: 130px;
    margin-left: -5px;
    opacity: 0.1;
}

.img-container {
    display: inline-block;
    overflow: hidden;
    margin-left: -2.8px;
    margin-right: -2.8px;
    width: 20%;
    vertical-align: top;
    border-radius: 0px 0px 80px 80px;
    animation-name: flow;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-delay: -2s;
    transition-timing-function: cubic-bezier(0,.57,1,.46);
    box-shadow: 2px 2px 16px 2px rgba(0,0,0,0.5);
}

.second-animation {
    animation-delay: -1.5s;
}

.third-animation {
    animation-delay: -1s;
}

.fourth-animation {
    animation-delay: -0.5s;
}

.fifth-animation {
    animation-delay: 0s;
}

.sixth-animation {
    animation-delay: 0.5s;
}

.seventh-animation {
    animation-delay: 1s;
}

.img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
    margin-top: -60px;
}

.nba {
    margin-top: -20px;
}

@keyframes flow {
    0% {
        height: 20%;
        border-radius: 0px 0px 30px 30px;
    }

    50% {
        height: 90%;
        border-radius: 0px 0px 100px 100px;
    }

    100% {
        height: 20%;
        border-radius: 0px 0px 30px 30px;
    }
}

@media only screen and (max-width: 1200px) {
    #img-7 {
        display: none;
    }
}

@media only screen and (max-width: 1028px) {
    #img-1 {
        display: none;
    }
}

@media only screen and (max-width: 860px) {
    #img-6 {
        display: none;
    }
}

@media only screen and (max-width: 576px) {
    .no-padding {
        padding: 0px !important;
        margin: 0px !important;
    }
}

*,
*:after,
*:before {
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #FFF;
}

.text-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner h1 {
    /*font-size: 8vw;*/
    font-weight: 900;
    background-color: #000;
    color: #fff;
    display: block;
    padding: .5em;
}

.banner h1:nth-child(2) {
    position: absolute;
    background-color: #fff;
    color: #000;
    clip-path: inset(-1% -1% 50% -1%);
    /*// Added the negative values to prevent icky "bleed" in Chrome*/
}

p {
    font-size: 2vw;
    font-weight: 900;
    margin-top: 1em;
    text-align: center;
/*    span

{
    display: block;
    transform: rotate(90deg);
    margin-top: .25em;
}
*/
}

/*// Codepen spesific styling - only to center the elements in the pen preview and viewport
.container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}*/