/*
    Mountain - Creative Coming Soon HTML5 Template
    Version: 1.0.6
    Author: Mountain-Themes
    Author URL: https://themeforest.net/user/mountain-themes
    Mountain © 2025. Design & Coded by Mountain-Themes.

    TABLE OF CONTENTS
    ---------------------------
     1. General
     2. .head
     3. Countdown
     4. Services
     5. Subscribe
     6. Contact
     7. Google map
     8. Footer
     9. Responsive CSS
*/

/* ================================= */
/* :::::::::: 1. General ::::::::::: */
/* ================================= */

/* ================================= */
/* :::::::::: 2. .head :::::::::::: */
/* ================================= */

.head {
    min-height: 100vh;
    position: relative;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    overflow: hidden;
    flex-direction: column;
}
.head .logo img {
    position: relative;
    z-index: 2;
}
.head h1 {
    position: relative;
    z-index: 2;
}
.head p {

    position: relative;
    z-index: 2;
}
.head .mouse {
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
    -webkit-animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
    -moz-animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
    -o-animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
    z-index: 2;
}
.head .mouse a {
    color: #F9F9F9;
    position: relative;
    bottom: 20px;
    line-height: 45px;
    font-size: 9px;
    text-align: center;
    width: 22px;
    height: 36px;
    border-radius: 10px;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.head #effect-box, .head .video-box, .head .image-box {
    position: absolute!important;
    overflow: hidden;
    height: 100vh;
    width: 100%;
    top: 0;
}

@keyframes wobbleArrow {
    from {
        bottom: 40px;
    }
    to {
        bottom: 50px;
    }
}
@-webkit-keyframes wobbleArrow {
    from {
        bottom: 40px;
    }
    to {
        bottom: 50px;
    }
}
