* {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-decoration: none;
    font-size: 15px;
    box-sizing: border-box;
}

object{
    height: 4vw;
}

main {
    padding-top: 0;
}

/*nav css start*/

.nav {
    background-color: #fff;
    width: 100%;
    height: 3.5vw;
    box-shadow: 0px 0px 10px gray;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.footer {
    background-color: #fff;
    width: 100%;
    height: 4vw;
    bottom: 0.5vw;
    left: 0;
    z-index: 1000;
    display: none;
    position: relative;
}

.navcont {
    width: 100%;
}

.footercont {
    width: 100%;
}

.footercont p{
    margin-left: 2vw;
    margin-right: 2vw;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flexvercenter {
    display: flex;
    align-items: center;
}

.inline-block {
    display: inline-block;
}

.navlogo {
    margin-left: 2vw;
    margin-right: 2vw;
    height: 5vw;
    object-fit: contain;
}

.footerlogo {
    margin-left: 2vw;
    margin-right: 2vw;
    width: 20vw;
    height: 5vw;
    object-fit: cover;
}

.navcont ul {
    margin-right: 2vw;
}
.navcont li {
    display: inline-block;
    margin-left: 1vw;
    margin-right: 1vw;
}

.cr-b {
    color: #00b3ff;
}

.cr-p {
    color: #a200ff;
}

.cr-d {
    color: black;
}
.navcont a {
    cursor: pointer;
}

.navcont a:hover {
    color: #a200ff
}

/*nav css end*/

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.slides-cover {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    scroll-snap-align: start;
    position: relative;
}

.slides {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    scroll-snap-align: start;
}

.slides-95 {
    width: 100%;
    flex: 95;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.slides-5 {
    width: 100%;
    flex: 5;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.slides:last-child {
    margin-bottom: 0;
}

.bg-gradient {
    color: #fff;
    background: linear-gradient(to right, #00b3ff, #a200ff);
}

.bg-w {
    color: #000;
    background: #fff;
}

.clLogo{
    max-width: 100%;
    width: 400px;
    height: 250px;
    object-fit: cover;
}

.sbLogo{
    width: 500px;
    height: 250px;
    object-fit: cover;
}

.slides-cover h2{
    text-align: center;
    max-width: 100%;
    font-size: 20px;
    font-weight: 600;
    max-width: 650px;
    margin-top: 2vw;
}

.slides-95 h2{
    max-width: 100%;
    font-size: 25px;
    font-weight: 600;
    max-width: 650px;
    margin: 2vw 0;
}

.cldiagram {
    max-width: 100%;
    max-height: auto;
    margin: 1vw;
    height: 75vh;
    object-fit: contain;
}

/*scroll animation*/

.animatedArrow {
    position: absolute;
    display: inline-block;
    color: #fff;
    font-size: 120px;
    animation: bounce 1.5s infinite;
    bottom: 15vh;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}