/* --------------------- index ---------------------*/

.kv {
    height: 95vh;
    overflow: hidden;
}

.index_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 95vh;
    text-align: center;
}

.kv h2 {
    letter-spacing: 10px;
    line-height: 15px;
}

.slogan {
    font-size: 18px;
    letter-spacing: 1px;
    color: rgb(105, 105, 105);
}

.ball {
    position: fixed;
    /* border-radius: 100%; */
    opacity: 0.6;
    z-index: -1;
}

.fade-in-out {
    opacity: 0;
    animation: fade-in 1.2s ease-in forwards;
}


@keyframes fade-in {
    100% {
        opacity: 1;
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* --------------------- contact ---------------------*/
.contact {
    background-repeat: no-repeat;
    background-position: left;
    background-position: cover;
}

/* --------------------- screen< 1920 ---------------------*/
@media (max-width: 1920px) {
    .kv h2 {
        letter-spacing: 5px;
        font-size: 40px;
        line-height: 15px;
    }
}

/* --------------------- screen<950 ---------------------*/
@media (max-width: 950px) {

    .kv h2 {
        letter-spacing: 5px;
        font-size: 30px;
        line-height: 15px;
    }

    .slogan {
        font-size: 14px;
        letter-spacing: 1px;
        width: 90%;
    }


    .content_row {
        display: block;
    }

    .contact {
        background-position: bottom;
        padding-bottom: 300px;
    }


}


/* --------------------- color ---------------------*/
.primary-color {
    background-color: #8CC4E4;
}

.nav a:before {
    background-color: #8CC4E4;
}

.submenu {
    background-color: #CAE4F3;
}

.sub_nav a:hover {
    background-color: #B5D9EE;
}

.notfound_title {
    color: #8CC4E4;
}

.notfound_subtitle {
    color: #8CC4E4;
}

button {
    background-color: #8CC4E4;
}

.notfound_subtitle {
    color: #8CC4E4;
}

input:focus {
    outline: 1px solid #8CC4E4;
}