/*------------------------------------------------------------------
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:
-------------------------------------------------------------------*/
/************************ 1.Default css ***************************/
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
}
#particles-js {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    background-position: center;
    background-color: #002642;
}
#particles-js::before {
    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;
    height: 100%;
}
.typing{
    white-space: nowrap;
    overflow: hidden;
    font-size: 54px;
    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 {
    font-size: 18px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    color: #FFF;
    max-width: 600px;
}
.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: 500;
    font-family: "Montserrat", sans-serif;
    color: #FFF;
    text-align: center;
}
.copy-right-4 a {
    color: #FFF;
}
#countdown {
    width: 100%;
}
#countdown ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 0;
}
#countdown ul li {
    height: 210px;
    width: 210px;
    gap: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    color: #FFF;
    line-height: 40px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
}
#countdown ul li::after {
    position: absolute;
    content: "";
    top: -20px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    background-size: contain;
    background-image: url(../images/Circle.png);
    background-repeat: no-repeat;
    background-position: center;
}
#countdown ul li span {
    font-size: 80px;
    font-style: normal;
    font-family: "Cinzel", serif;
    color: #FFF;
}