/*------------------------------------------------------------------
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-color: #787878;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    background-position: top center;
}
#particles-js::before {
    background: linear-gradient(to bottom, rgb(0 0 0 / 40%) 0%, rgb(0 0 0 / 61%) 90%);
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}
.top-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 0;
    height: 100%;
}
.layout-4 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}
.logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo img {
    width: 280px;
    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 5px 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;
    }
}
.Desc-4 {
    max-width: 600px;
    font-size: 18px;
    font-weight: normal;
    font-family: "Montserrat", sans-serif;
    color: #FFF;
    margin-top: 20px;
}
.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;
}
#clockdiv {
    font-family: 'DS-Digital';
    color: #fff;
    display: inline-block;
    font-weight: 100;
    text-align: center;
    font-size: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 30px 0;
}
#clockdiv>div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 25%;
}
#clockdiv div>span {
    font-size: 80px;
    height: 95px;
    font-style: normal;
    display: inline-block;
}
.smalltext {
    font-size: 18px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    padding-top: 5px;
}
.seconds {
    position: relative;
    width: 100px;
    height: 95px;
    overflow: hidden;
    padding: 30px !important;
}
.seconds span {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(150%);
    animation: fly 1.65s ease forwards;
    text-align: center;
    width: 100%;
    height: 100px;
}
@keyframes fly {
    20% {
        transform: translateY(0);
        opacity: 1;
    }
    65% {
        transform: translateY(0);
        opacity: 1;
    }
    80% {
        transform: translateY(-150%);
        opacity: 0;
    }
    100% {
        transform: translateY(-150%);
        opacity: 0;
    }
}