/*------------------------------------------------------------------
Project:Pro Counter
Author: The_Krishna        
-------------------------------------------------------------------*/
/*----------------Table of contents Start---------------------------
1.Default css
2.layout-1 section
---------Table of contents End-----------------------------------*/
/*------------------------ [Color codes] ------------------------                     
Background:
Content:
-------------------------------------------------------------------*/
/*----------------------- [ Default css ] -----------------------*/
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
}
*, ::after, ::before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
a:focus, a {
    outline: none;
    text-decoration: none;
    cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}
svg {
    vertical-align: middle;
}
input {
    outline-width: 0;
    outline-offset: 0;
    outline: 0;
    border: none;
    outline: none;
    width: 100%;
}
textarea {
    outline-width: 0;
    outline-offset: 0;
    outline: 0;
}
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
body {
    font-family: "Syne", sans-serif;
    font-family: "Montserrat", sans-serif;
    height: 100%;
}
.row {
    --bs-gutter-x: 30px;
}
.container {
    width: 1290px;
    margin: auto;
    padding: 0 15px;
    height: 100%;
}
/*----------------------- [ Layout section Start ] -----------------------*/
#particles-js {
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    background-position: top center;
}
video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.top-section {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
.layout-4 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    height: 100%;
}
.logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo img {
    width: 600px;
    height: auto;
}
h1 {
    white-space: nowrap;
    overflow: hidden;
    font-size: 80px;
    font-weight: 600;
    font-family: "Syne", sans-serif;
    font-style: normal;
    text-align: center;
    color: #FFF;
    animation: typing 10s steps(50) infinite, animated-cursor 600ms linear infinite;
    transition: all ease-in-out .35s;
    width: 0;
    position: relative;
    z-index: 1;
    border-right: solid 6px rgba(255, 255, 255, .75);
}
@keyframes typing {
    0% {
        width: 0;
    }
    25% {
        width: 70%;
    }
    48% {
        width: 100%;
    }
    50% {
        width: 100%;
    }
    55% {
        width: 100%;
    }
    75% {
        width: 70%;
    }
    85% {
        width: 30%;
    }
    100% {
        width: 0;
    }
}
@keyframes animated-cursor {
    0% {
        border-right-color: rgba(255, 255, 255, .75);
    }
    100% {
        border-right-color: transparent;
    }
}
#geeks-countdown {
    width: 100%;
    padding: 50px 0;
}
#clock span {
    float: left;
    text-align: center;
    font-size: 80px;
    font-weight: 500;
    color: #fff;
    width: 25%;
    font-family: 'DS-Digital';
}
#clock:after {
    content: "";
    display: block;
    clear: both;
}
#units span {
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    margin-top: -10px;
    color: #FFF;
    width: 25%;
    float: left;
    letter-spacing: 2px;
}
span.turn {
    animation: turn 1s ease forwards;
}
@keyframes turn {
    0% {
        transform: rotateY(360deg)
    }
    100% {
        transform: rotateY(0deg)
    }
}
.Desc-4 {
    max-width: 600px;
    font-size: 18px;
    font-weight: normal;
    color: #FFF;
    font-family: "Montserrat", sans-serif;
}
.copy-social-4 {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    gap: 30px;
    height: 100%;
    position: relative;
}
.social-icon-4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.social-icon-4 a {
    font-size: 22px;
    color: #FFF;
}
.copy-right-4 {
    font-size: 18px;
    font-weight: normal;
    font-family: "Montserrat", sans-serif;
    color: #FFF;
    text-align: center;
}
.copy-right-4 a {
    color: #FFF;
}